/* ===== HEADER (desktop default) ===== */

.site-header{
  position:fixed; top:0; left:0; width:100%;
  z-index:1000;
  background:#14110F;            /* full bar is dark */
  box-shadow:0 4px 10px rgba(0,0,0,.15);
}
.nav-container{
  max-width:min(1200px, 100% - 32px);
  margin:0 auto;
  height:64px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  position:relative; box-sizing:border-box;
  padding-inline:16px;
}

/* logo */
.wordmark-logo{
  font-family:'Cormorant Garamond', serif;
  font-weight:700; letter-spacing:1px;
  color:#fff; text-decoration:none;
  font-size:clamp(20px, 2vw, 28px);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}


/* Footer Styling */
.site-footer {
  background-color: #14110F;
  color: #f5f1eb;
  padding: 4rem 0 2.5rem;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e8d0b0, transparent);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  gap: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 260px;
}

.footer-logo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-logo .tagline {
  font-size: 0.95rem;
  color: #e8d0b0;
  font-style: italic;
}

/* Navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #d5cec4;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.social-links a:hover {
  color: #e8d0b0;
}

/* Contact info */
.footer-contact p {
  margin-bottom: 0.6rem;
  color: #a39788;
  font-size: 0.95rem;
}

/* Bottom area */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 0;  /* Added horizontal padding */
  border-top: 1px solid rgba(232, 208, 176, 0.15);
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
  color: #8a8178;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  color: #b3a898;
  transition: color 0.3s, transform 0.2s;
  font-size: 1.2rem;
}

.social-links a:hover {
  color: #e8d0b0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem 0;
  }

  .footer-nav {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
}


/* ========= BASE STYLES ========= */
.hamburger {
  display: none;
}

.nav-links {
  position: static;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  max-height: none;
  opacity: 1;
  pointer-events: auto;
}

/* Links */
.nav-links a {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

/* Underline (hidden by default) */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #e8d0b0;
  transition: width 0.25s ease;
}

/* Hover + Active */
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #e8d0b0;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-links a::after {
    transition: none;
  }
}

/* ========= LAYOUT ========= */

.wordmark-logo {
  flex: 0 1 auto;
}

.hamburger {
  margin-left: auto;
}

/* ========= MOBILE (≤768px) ========= */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
    height: 56px;
  }

  .hamburger {
    display: inline-grid;
    place-items: right;
    width: 40px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #14110F;
    border: 1px solid rgba(232, 208, 176, 0.18);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .nav-links.is-open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/*--------------------------- Hero Section ---------------------------*/

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* modern unit: ensures full height with mobile UI bars */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  background: url('/assets/wedding.girls.jpg') center center / cover no-repeat;
  background-position: center 20%;
  background-attachment: fixed;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

/* ---- mobile fixes ---- */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    height: 100dvh; /* ensures full visible screen */
    min-height: 100dvh;
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center;
    animation: none; /* optional: disable zoom on small screens */
  }
}

/* Subtle vignette & gradient overlay for depth */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%),
    radial-gradient(circle at 50% 60%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 90%);
  z-index: 1;
}

/* Hero content (titles, buttons) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
  animation: fadeIn 1.2s ease-out;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0,0,0,0.55);
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f8f6f3;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


/* Smooth fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gentle background zoom */
@keyframes hero-zoom {
  from { background-size: 100%; }
  to { background-size: 106%; }
}

/* Optional shimmer reuse */
@keyframes shimmer {
  from { left: -150%; }
  to { left: 150%; }
}



/* ===--------------------- Why Choose Us Premium Section ===--------------------- */

.why-choose-us-premium {
  background: #f3e5d8;
  padding: 5rem 1rem 4rem;
  text-align: center;
}

.luxury-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5rem;
  justify-items: center;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 2rem 1rem;
}

.luxury-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.luxury-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.luxury-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.luxury-item .icon {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem auto;
  font-size: 2rem;
  line-height: 1 !important;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  transform: none !important;
  text-align: center;
  color: inherit;
}

.luxury-item p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}


@media (max-width: 1100px) {
  .luxury-reasons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .luxury-reasons {
    grid-template-columns: 1fr;
  }
}

/*----------------------------------------meet the booths section----------------------------------------*/

.booth-showcase {
  padding: 100px 10%;
  background-color: #faf7f2;
  text-align: center;
}


.booth-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.booth-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 450px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.booth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.booth-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.booth-info {
  padding: 30px;
}

.booth-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.booth-info p {
  font-size: 1rem;
  color: #5f5f5f;
  margin-bottom: 24px;
}


/* -------------------------------- How it works Section -------------------------------- */

.how-it-works {
  padding: 100px 10%;
  background-color: #1c1917;
  color: #fff;
  text-align: center;
}

.how-it-works .section-title {
  color: #f1e4cf;
}

.how-it-works .section-title p {
  color: #c5bfb4;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.step {
  background: #26221f;
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f1e4cf;
}

.step h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #fff;
}

.step p {
  color: #d2ccc4;
  font-size: 1rem;
}



/* ========================== Event Highlights (Phone Grid)  ========================== */

.phone-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}

.phone-frame {
  position: relative;
  width: 260px;
  height: 520px;
  border: 12px solid #000;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle hover animation */
.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Optional subtle tilt effect for visual interest */
.phone-frame:nth-child(1) {
  transform: rotate(-1.5deg);
}
.phone-frame:nth-child(2) {
  transform: rotate(1deg);
}
.phone-frame:nth-child(3) {
  transform: rotate(-0.5deg);
}

.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.15);
}

/* Hover glow for touch of luxury */
.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  pointer-events: none;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.4s ease;
}

.phone-frame:hover::after {
  box-shadow: 0 0 35px rgba(232, 208, 176, 0.35);
}

/* Responsive layout */
@media (max-width: 1000px) {
  .phone-grid {
    gap: 2rem;
  }
  .phone-frame {
    width: 230px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  .phone-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
    transform: rotate(0deg); /* remove tilt on small screens */
  }
}


/* Section alignment fix */
.phone-frame-section {
  background: #f9f7f4;
  text-align: center;
  padding: 5rem 1rem;
}

.phone-frame-section .section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Centered button container */
.cta-center {
  margin-top: 2rem;
}

/* Override global wrapping behavior */
.phone-frame-section .wrap {
  max-width: 1200px;
  margin: 0 auto;
}


/* ===================== Reflect Experience (Home) ===================== */

.reflect-experience{
  background:#f8f6f3;                     /* soft champagne backdrop */
  padding: clamp(48px, 8vw, 96px) 16px;
  display:flex;
  justify-content:center;
  padding: 5rem 1rem;
  font-family: 'Playfair Display', serif;
}

.experience-card{
  width:min(100%, 1100px);                 /* align with site width */
  background:#fff;
  border:1px solid rgba(212,175,55,.18);   /* gold ring */
  border-radius:16px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  display:grid;
  grid-template-columns: 420px 1fr;        /* image | copy */
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 3vw, 28px);
  align-items:center;
}

/* image block */
.experience-image img{
  width:100%;
  height:100%;
  max-height: 520px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  display:block;
}

/* copy */
.experience-text{
  font-family:'poppins', serif;
  color:#2c2c2c;
}

.experience-text h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
  font-size:clamp(26px, 5vw, 36px);
  margin:0 0 .6rem;
  color:#14110F;                          /* black */
}

.experience-text .tagline{
  margin:.25rem 0 1.1rem;
  color:#6d645a;
  font-style:italic;
}

.experience-text p{
  margin:.5rem 0 0;
  line-height:1.75;
}


/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .experience-card{
    grid-template-columns: 1fr;            /* stack */
    padding: 18px;
  }
  .experience-image img{
    max-height: 420px;
  }
  .experience-text{
    text-align:center;
  }

}


/* ============== REFLECT EVENTZ – GLASSMORPHIC PACKAGES ============== */

.packages-teaser .wrap {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

/* Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Card */
.pkg-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding-bottom: 1.5rem;
  overflow: hidden;
}

.pkg-card:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
/* Featured card */
.pkg-card.featured {
  border: 1.5px solid rgba(212, 175, 55, 0.8);
  box-shadow:
    0 0 25px rgba(212, 175, 55, 0.2),
    0 10px 35px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}

/* Header */
.pkg-head {
  position: relative;
}
.pkg-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #111;
  margin: 0 0 .4rem;
}
.pkg-head .sub {
  font-family: 'Poppins', sans-serif;
  color: rgba(20,17,15,0.7);
  font-style: italic;
  font-size: 0.95rem;
}

/* Badge */
.badge {
  position: absolute;
  top: -12px;
  right: -10px;
  background: rgba(211, 187, 110, 0.95);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Feature list */
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.pkg-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: rgba(27,24,21,0.85);
}
.pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(212,175,55,0.8);
  font-weight: 600;
}

.pkg-cta {
  margin-top: auto;
  width: 100%;
  padding-top: 1rem;
}

.pkg-cta .btn {
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
  text-align: center;
  border-radius: 20px;
  box-sizing: border-box;
}



/* ===================== Photostrip Showcase ===================== */
.photostrip-showcase {
  background: #f8f6f3;
  padding: 6rem 1rem 0.5rem;
  text-align: center;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.photostrip-showcase .section-header {
  margin-bottom: 2.5rem;
}

.photostrip-showcase .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.photostrip-showcase .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #d9c299;
  margin: 0.8rem auto 0;
}

.photostrip-showcase .section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #777;
  margin-top: 1rem;
}

/* ===================== Slider Image Styling ===================== */
.photostrip-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 550px;
}

.photostrip-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  border-radius: 16px;
}

.photostrip-slider img.active {
  opacity: 1;
}

.photostrip-slider img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .photostrip-slider {
    max-width: 95vw; /* Fix edge collision on tablets */
    height: 400px;
  }
}

@media (max-width: 768px) {
  .photostrip-showcase {
    padding: 3rem 1.5rem;
  }

  .photostrip-slider {
    max-width: 90vw; /* keeps padding from viewport edges */
    height: 350px; /* keeps aspect ratio nice on mobile */
  }

  .photostrip-slider img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .photostrip-showcase .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .photostrip-showcase .section-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}


/* ===================== OPTIONAL EXTRAS SECTION ===================== */
.optional-extras {
  background: #f8f6f3;
  padding: 5rem 1rem;
  text-align: center;
}

/* Heading block above the table */
.extras-heading {
  margin-bottom: 2.5rem;
}

.extras-heading .section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #5c534a;
  margin-top: 0.8rem;
}

/* ===================== TABLE CARD ===================== */


.extras-card {
  max-width: 1000px;
  margin: 0 auto ;       /* centered, with space below */
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* ===================== TABLE ===================== */
.extras-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.extras-table thead {
  background: linear-gradient(to right, #f1e4cf, #d7c5aa);
  color: #111;
}

.extras-table th,
.extras-table td {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.extras-table th {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.extras-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.extras-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.8);
}

.extras-table .price-col {
  text-align: right;
  color: #6f5a39;
  font-weight: 600;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .optional-extras {
    padding: 3rem 1rem;
  }

  .extras-card {
    padding: 1.2rem;
  }

  .extras-table th,
  .extras-table td {
    padding: 0.8rem 1rem;
  }
}


/* Gallery Card Styles */

.featured-galleries {
  padding: 5rem 1rem;
  background-color: #f4f4f4;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  padding: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  background: #fff;
  color: #111;
}

.view-all-wrapper {
  margin-top: 3rem;
}


.reflect-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.reflect-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.reflect-text {
  flex: 1;
  min-width: 280px;
}

.reflect-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.reflect-text .subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.reflect-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* Testimonial Section */

.testimonial-section {
  background: #f9f6f2;
  padding: 5rem 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  max-width: 1200px; /* optional: keeps it from stretching too wide */
  margin: 0 auto;     /* centers the grid */
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.testimonial-stars {
  color: #e2c49a;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.testimonial-author .name {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}

.testimonial-author .title {
  font-size: 0.85rem;
  color: #888;
}


/* ===================== CONTACT SECTION ===================== */

.contact-section {
  background: #f8f6f3;
  padding: 6rem 1rem 7rem;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.4rem;
  color: #333;
}

.contact-subtitle {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 3.5rem;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

/* ===================== CONTACT FORM ===================== */

.contact-form {
  width: 100%;
  margin: 0 auto 3rem;
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 8px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  box-sizing: border-box;
}

/* Form rows - side by side on desktop, stacked on mobile */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Single column form groups */
.form-group {
  display: flex;
  flex-direction: column;
}

/* Full width form groups (textarea, etc) */
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
  text-align: left;
}

/* Bubble-shaped form fields */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0d4c3;
  border-radius: 20px;
  background: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #333;
  transition: border 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d9c299;
  box-shadow: 0 0 0 3px rgba(217, 194, 153, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Poppins', sans-serif;
}

/* Submit button centering */
.text-center {
  text-align: center;
  margin-top: 1.5rem;
}

/* ===================== CONTACT INFO ITEMS ===================== */

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-item .icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  color: #d9c299;
  flex-shrink: 0;
}

.contact-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.contact-item p,
.contact-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #d9c299;
}

/* ===================== RESPONSIVE - MOBILE ===================== */

@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* Stack form fields vertically on mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Full width already works, but ensure consistency */
  .form-group.full-width {
    grid-column: 1;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item .icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
}

button,
.btn,
input[type="submit"] {
  border: none !important;
  outline: none !important;
}

/* Also handle focus state */
button:focus,
.btn:focus,
input[type="submit"]:focus {
  outline: none !important;
  border: none !important;
}



/* ===================== HERO ===================== */


.about-hero {
  background: linear-gradient(to bottom, #e9dfd2 0%, #f8f6f3 100%);
  text-align: center;
  padding: clamp(6rem, 10vw, 8rem) 1rem 4rem;
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.about-hero .sub {
  font-size: 1.2rem;
  font-style: italic;
  color: #6a5f50;
  margin-top: 0.5rem;
}

/* ===================== STORY ===================== */
.about-intro {
  text-align: center;
  padding: 4rem 1rem;
  background: #f8f6f3;
}
.about-intro .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  display: inline-block;
  position: relative;
  margin-bottom: 1.2rem;
}
.about-intro .eyebrow::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  margin: 0.6rem auto 0;
}
.about-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3b352d;
}

/* ===================== DUO CARD ===================== */
.about-duo {
  background: #f4f2ee;
  padding: 5rem 1rem;
}
.duo-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.duo-media img {
  border-radius: 12px;
  width: 340px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.duo-copy {
  flex: 1;
  min-width: 280px;
}
.duo-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}
.duo-copy .lead em {
  color: #8c7c65;
  display: block;
  margin-bottom: 1rem;
}
.duo-copy p {
  color: #3b352d;
  line-height: 1.7;
}
blockquote {
  background: #f5f1ea;
  border-left: 3px solid #d4af37;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4a4036;
}
.sig {
  color: #8c7c65;
  font-weight: 600;
}

/* Badges */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.about-badges li span {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f8f6f3;
  border: 1px solid #e0d8cb;
  border-radius: 999px;
  color: #4a4036;
  font-size: 0.9rem;
}

/* ===================== STATS ===================== */
.about-stats {
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c1917;
  display: block;
}
.stat .label {
  font-family: 'Playfair Display', serif;
  color: #6a5f50;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ===================== CTA ===================== */
.about-cta {
  background: linear-gradient(to bottom, #f8f6f3, #e8e0d5);
  text-align: center;
  padding: 5rem 1rem;
}
.callout {
  max-width: 720px;
  margin: 0 auto;
}
.callout h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #1c1917;
  margin-bottom: 0.6rem;
}
.callout p {
  color: #5c534a;
  margin: 1rem 0 2rem;
  line-height: 1.7;
}



/* ===================== Animation ===================== */
@keyframes shimmer {
  from { left: -150%; }
  to { left: 150%; }
}

//* ===================== Responsive Fix ===================== */
@media (max-width: 768px) {
  .duo-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .duo-media {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .duo-media img {
    width: 90%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .duo-copy {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
  }
}

/* ========================================== Featured Gallery Section =================================== */

.moving-gallery {
  background: #f8f6f3;
  padding: 1rem 1rem;
  text-align: center;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover interaction */
.gallery-card:hover img {
  transform: scale(1.08);
}



/* ====== Cinematic Hero ====== */
.packages-hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #111;
}

/* Background image with overlay gradient */
.packages-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/photo-1727892349129-118c3a74823f.jpg') center/cover no-repeat;
  filter: brightness(1) blur(3px);
  transform: scale(1.05);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(17, 17, 17, 0.1),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom right,
      rgba(17, 17, 17, 0.05),
      rgba(0, 0, 0, 0.15)
    );
  }
}

/* Content styling */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.packages-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #fff;
}

.packages-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #f2f2f2;
  margin-bottom: 2rem;
}

/* Animated gold camera icon */
.hero-icon i {
  font-size: 2.4rem;
  color: #c5a257;
  margin: 1.5rem 0;
}

/* Fade-up motion */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }
.fade-up:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .packages-hero h1 { font-size: 2.2rem; }
  .packages-hero p { font-size: 1rem; }
}

.consult-cta {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #faf7f2;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.consult-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 0.75rem;
}

.consult-cta p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.consult-btn {
  background: linear-gradient(to bottom, #e8d0b0 45%, #d9c299 100%);
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/*===================== GLOBAL PAGE SYTLES ==================*/

body {
  font-family: 'Poppins', 'Segoe UI', serif;
  line-height: 1.6;
  background-color: #f4f4f4; /* Light background */
  color: #333;
  margin: 0;
  padding:0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

  
.container {
    width: 90%;
    max-width: none; /* Full width for the container */
    margin: 0 auto;
  }

.gold-text {
  color: #e2c49a; /* gold-ish */
  font-style: italic;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600 !important; /* Force it to 600 */
  font-size: 2.6rem;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  position: relative;
  display: block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d9c299;
  margin: 0.8rem auto 0;
}

/* Move paragraph styling outside */
.section-subtitle {
  font-family: 'Playfair Display', serif;
  color: #5a5148;
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  text-align: center;
}




/* ===================== GLOBAL BUTTON ===================== */


.btn {
  display: inline-flex;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 24px;
  text-decoration: none;
  color: #222;
  background: linear-gradient(to bottom, #e8d0b0 45%, #d9c299 100%);
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none !important;
  color: #222 !important;
}

.btn:visited {
  color: #222 !important;
  text-decoration: none !important;
}

.btn i {
  font-size: 1rem;
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after {
  animation: shimmer 2.5s infinite;
  opacity: 1;
}

/* ===================== EVENT GALLERY PAGE STYLES ===================== */

/* Account for fixed navbar */
.with-navbar {
  padding-top: 64px; /* Height of your fixed header */
}

@media (max-width: 768px) {
  .with-navbar {
    padding-top: 56px; /* Mobile header height */
  }
}

/* Gallery wrapper */
.gallery-wrapper {
  background: #f8f6f3;
  min-height: 100vh;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.gallery-wrapper .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.gallery-wrapper .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #d9c299;
  margin: 0.8rem auto 0;
}

/* iFrame Container */
.iframe-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 1rem;
}

.iframe-container iframe {
  width: 100%;
  min-height: 800px;
  height: 100vh;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Fade in when loaded */
.iframe-container iframe.loaded {
  opacity: 1;
}

/* Filter buttons styling (if you add them) */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-filters button {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.7rem 1.5rem;
  border: 2px solid #d9c299;
  background: transparent;
  color: #333;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters button:hover,
.gallery-filters button.active {
  background: #d9c299;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-wrapper {
    padding: 2rem 0.5rem 1rem;
  }

  .gallery-wrapper .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .iframe-container {
    border-radius: 8px;
    padding: 0.5rem;
  }

  .iframe-container iframe {
    min-height: 600px;
  }
}

@media (max-width: 480px) {
  .gallery-wrapper .section-title {
    font-size: 1.8rem;
  }

  .iframe-container iframe {
    min-height: 500px;
  }
}

.gallery-filters {
  display: none !important;
}

/* ===================== showcase page ===================== */

.gallery-body {
  margin: 0;
  background: #f7f5f2;
  font-family: 'Playfair Display', serif;
}

.gallery {
  column-count: 4;
  column-gap: 0;
  width: 100%;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 1200px) { .gallery { column-count: 3; } }
@media (max-width: 800px)  { .gallery { column-count: 2; } }
@media (max-width: 500px)  { .gallery { column-count: 1; } }

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  overflow: hidden;
}
