/* =======================
   Honeymoon Page
   ======================= */

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
}

.honeymoon-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #f0f5f0;
}

/* Background photo layer */
.honeymoon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  z-index: 1;
}

.honeymoon-background div {
  background-size: cover;
  background-position: center;
  border-radius: 1px;
  opacity: 0.5; /* make it subtle */
  transform: scale(1.1); /* slight zoom for style */
}
/* Space between text and QR */

.honeymoon-overlay h2 {
  font-size: 2.5rem;       /* bigger title */
  margin-bottom: 2rem;     /* space below */
  font-weight: 700;
  color: #333;
}

.info-sub {
  font-size: 2rem;      /* bigger than before */
  margin-bottom: 2rem;     /* space before QR */
  color: #555;
  line-height: 1.5;
}

/* Assign images */
.bg-photo-a { background-image: url('images/honeymoon1.jpg'); }
.bg-photo-b { background-image: url('images/honeymoon2.jpg'); }
.bg-photo-c { background-image: url('images/honeymoon3.jpg'); }

/* Overlay for darkening background behind QR */
.honeymoon-overlay {
  position: relative;
  z-index: 2; /* on top of background */
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  max-width: 700px;
}

/* VENMO QR */
.venmo-qr {
  width: 400px;
  max-width: 90vw;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.venmo-name {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #7ca975;
}

/* Text below QR */
.info-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: #333;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .honeymoon-background {
    grid-template-columns: 1fr;  /* only one column */
    grid-template-rows: 1fr;     /* only one row */
  }
  .honeymoon-background div {
    border-radius: 10px;
    opacity: 0.4;
    display: none;               /* hide all first */
  }
  .honeymoon-background div:first-child {
    display: block;              /* show only first photo */
  }

  .venmo-qr {
    width: 180px;
  }
  .honeymoon-overlay {
    padding: 1.5rem;
  }
}