/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}
.hero-text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.hero-text h1 {
  font-family: 'EB Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.hero-text .line {
  width: 55px;
  height: 1.5px;
  background: #fff;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   SECTIONS — base layout
═══════════════════════════════════════ */
.sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 80px;
}

/* Background colours */
.sec-white { background: #ffffff; }
.sec-terra { background: #C48037; }

/* Bottom accent border */
.border-bottom-amber { border-bottom: 4px solid #c47c1e; }

/* Reverse column order for alternating layouts */
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* ═══════════════════════════════════════
   IMAGE COLUMN
═══════════════════════════════════════ */
.sec-image {
  width: 100%;
}
.sec-image img,
.sec img {
  width: 100%;
  height: 500px;
  object-fit: contain; /* changed from cover */
  display: block;
  border-radius: 2px;
}
/* ═══════════════════════════════════════
   BIRTHDAY / FLYER CARD
═══════════════════════════════════════ */
.birthday-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}
.birthday-card img {
  width: 100%;
  height: 500px;
  object-fit: contain; /* changed from cover */
  display: block;
  border-radius: 0;
}
.birthday-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px 20px 24px;
  text-align: center;
}
.birthday-card-body h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.birthday-card-body .options-label {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.birthday-card-body p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 5px;
  font-family: 'EB Garamond', serif;
}
.birthday-card-body .note {
  margin-top: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   TEXT COLUMN
═══════════════════════════════════════ */
.sec-text h2 {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.2;
}
.sec-text .divider {
  width: 70px;
  height: 1.5px;
  background: #1a1a1a;
  margin-bottom: 22px;
}
.sec-text .divider-dark {
  background: #1a1a1a;
}
.sec-text p {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.sec-text p:last-child { margin-bottom: 0; }
.sec-text strong { font-weight: 700; }

/* Colour themes */
.text-dark h2  { color: #1a1a1a; }
.text-dark p   { color: #1a1a1a; }
.text-dark .divider { background: #1a1a1a; }

.text-light h2 { color: #1a1a1a; }
.text-light p  { color: #1a1a1a; }
.text-light .divider { background: #1a1a1a; }

/* ═══════════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 999;
  text-decoration: none;
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .sec {
    gap: 40px;
    padding: 50px 40px;
  }
 .sec-image img, .sec img, .birthday-card img {
    height: 360px;
    object-fit: contain;
  }
  .sec-text h2 { font-size: 1.7rem; }
  .sec-text p  { font-size: 1rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: 280px;
    padding: 0 24px;
  }
  .hero-text h1 { font-size: 2rem; }

  .sec {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
  }

  /* Always show image first on mobile */
  .reverse         { direction: ltr; }
  .reverse > *     { direction: ltr; }
  .reverse .sec-image { order: -1; }

  .sec-image img,
  .sec img,
  .birthday-card img {
    height: 280px;
  }

  .sec-text h2 { font-size: 1.5rem; }
  .sec-text p  { font-size: 0.97rem; line-height: 1.75; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero { height: 220px; }
  .hero-text h1 { font-size: 1.6rem; }

  .sec { padding: 30px 16px; }

  .sec-image img,
  .sec img,
  .birthday-card img {
    height: 373px;
  }
}