/*---------------------------------
  FONTS & BASE SETTINGS
----------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: scroll;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  background-color: #fff5f5;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-wrapper > * {
  flex-shrink: 0;
}

a, .btn {
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  color: #1f1f1f;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
  padding-bottom: 10px;
}

ul, li, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
}

.form-control::placeholder {
  color: #2a2a2a;
}

[id] {
  scroll-margin-top: 100px;
}

/*---------------------------------
  LOADER
----------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #dd666c;
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}

/*---------------------------------
  HEADER / NAVBAR
----------------------------------*/
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar.header-nav {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar .navbar-collapse ul li a {
  padding: 19px 15px;
  text-transform: uppercase;
  font-size: 18px;
}

.navbar .navbar-collapse ul li a.active,
.navbar .navbar-collapse ul li a:hover {
  background: #dd666c;
  color: #fff;
}

.navbar .navbar-collapse ul li a:hover {
  background: #63c7bd;
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
  height: auto;
  display: inline-block;
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 10px;
}

.navbar-toggler span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background-color: #1f1f1f;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 50px;
  }

  .text-center .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}

/*---------------------------------
  FOOTER
----------------------------------*/
footer, .footer-box {
  margin: 0;
  padding: 0;
  margin-top: auto;
  background: #292f35;
  color: #fff;
  text-align: center;
}

.footer-box a {
  color: #dd666c;
}

.footer-box a:hover {
  color: #63c7bd;
}

/*---------------------------------
  EVENTS SECTION
----------------------------------*/
#events {
  padding: 120px 0 50px;
  background-color: #fff5f5;
}

.event-inner {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.event-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/*---------------------------------
  PACKAGE CARDS - DARKER BORDERS
----------------------------------*/
.hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1.25rem;
}

.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.wedding-packages .card-title {
  font-size: 2rem;
  font-weight: 700;
}

.wedding-packages .card-text {
  font-size: 1.75rem;
}

.wedding-packages .card-text strong {
  font-size: 2rem;
  font-weight: 600;
}

/* Bronze - Stronger border */
.bronze-card {
  background: #fffaf3;
  border: 2px solid #a55720; /* darker bronze */
  border-radius: 1.25rem;
  color: #6d4c2d;
  box-shadow: 0 0 14px rgba(165, 87, 32, 0.4);
}

.bronze-card:hover {
  box-shadow: 0 0 24px rgba(165, 87, 32, 0.6);
}

/* Silver - Stronger border */
.silver-card {
  background: #f7f7f7;
  border: 2px solid #888; /* darker silver/gray */
  border-radius: 1.25rem;
  color: #333;
  box-shadow: 0 0 14px rgba(136, 136, 136, 0.4);
}

.silver-card:hover {
  box-shadow: 0 0 24px rgba(136, 136, 136, 0.6);
}

/* Gold - Stronger border */
.gold-card {
  background: #fffbea;
  border: 2px solid #b78e20; /* darker gold */
  border-radius: 1.25rem;
  color: #755c1b;
  box-shadow: 0 0 14px rgba(183, 142, 32, 0.4);
}

.gold-card:hover {
  box-shadow: 0 0 24px rgba(183, 142, 32, 0.65);
}

/* Badges */
.bronze-badge {
  background-color: #a55720;
  color: white;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.3em 0.75em;
}

.silver-badge {
  background-color: #888;
  color: white;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.3em 0.75em;
}

.gold-badge {
  background-color: #b78e20;
  color: white;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.3em 0.75em;
}

/*---------------------------------
  GALLERY GRID
----------------------------------*/
.gallery-grid {
  column-count: 4;
  column-gap: 5px;
  padding: 5px;
  margin: 0;
}

.gallery-grid a {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  break-inside: avoid;
}

.gallery-grid img {
  width: 100%;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 3;
  }
}

/*---------------------------------
  LIGHTBOX2
----------------------------------*/
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 0.7;
}

.lb-nav a:hover {
  opacity: 1;
}

.lb-data .lb-caption {
  font-size: 16px;
  color: #fff;
}

/*---------------------------------
  BANNER CAPTION
----------------------------------*/
.lbox-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: table;
}

.lbox-details {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Global text styling inside the hero */
.lbox-details h1,
.lbox-details h2,
.lbox-details h3,
.lbox-details p {
  /* multi-direction shadow for contrast on any background */
  text-shadow:
    0 0 2px rgba(0,0,0,.70),
    0 2px 8px rgba(0,0,0,.65),
    2px 0 8px rgba(0,0,0,.60),
    -2px 0 8px rgba(0,0,0,.60),
    0 -2px 8px rgba(0,0,0,.55);
}

/* Sizes / families */
.lbox-details h1 {
  font-size: 68px;                     /* your existing size */
  font-family: 'Marck Script', cursive;
  color: #dd666c;                       /* brand rose */
}

.lbox-details h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #ffffff;                       /* must be white */
  letter-spacing: .3px;
  line-height: 1.1;
  font-size: clamp(40px, 4.8vw, 70px);  /* responsive */
}

.lbox-details h3 {
  font-family: "Barlow", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: #63c7bd;                       /* brand teal (not black) */
  letter-spacing: .2px;
  line-height: 1.2;
  font-size: clamp(22px, 3vw, 36px);    /* responsive */
}

.lbox-details p {
  color: #f1f5f9;                       /* soft off-white */
  line-height: 1.45;
  font-size: clamp(16px, 2vw, 22px);    /* responsive */
}

/* Emphasis line */
.lbox-details p strong {
  font-size: 40px;
  color: #dd666c;                       /* brand rose */
  font-family: 'Marck Script', cursive;
}

/* Buttons */
.lbox-details a.btn {
  background-color: #63c7bd;            /* brand teal */
  color: #fff;
  padding: 10px 20px;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: bold;
  text-transform: uppercase;
}
.lbox-details a.btn:hover {
  background-color: #dd666c;            /* brand rose */
}



/*---------------------------------
  OTHER UI
----------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.bg-light-pink,
.events-box {
  background-color: #fff5f5;
}

.service-box {
  background-color: #fff5f5 !important;
  border: 1px solid #e6bfc0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.two-col-responsive {
  column-count: 4;
}
@media (max-width: 991px) {
  .two-col-responsive {
    column-count: 2;
  }
}


  #join-our-team {
    background-color: #fff5f5;
    padding: 0px 0;
  }

  .card {
    background-color: #fff5f5;
    border: 1px solid #e6bfc0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
  }

  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  /* Add top margin to all cards in the Join Our Team section */
  #join-our-team .card {
    margin-top: 0px;
  }
  
  /* FAQ Accordion Styles */
#faqAccordion .card-header h5 {
  white-space: normal;
}

#faqAccordion .card-header button.btn-link {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f1f1f;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  display: block;
  text-align: left;
}

#faqAccordion .card-header button.btn-link:hover {
  color: #dd666c;
}

#faqAccordion .card-body {
  font-size: 1.5rem;
  line-height: 1.8;
  white-space: normal;
  word-wrap: break-word;
}

  .wedding-sessions h4 {
    font-size: 2rem; /* or try 2.5rem or 3rem for larger headers */
  }

  .wedding-sessions p {
    font-size: 1.5rem; /* 3x standard ~16px is ~48px, but 1.5-2rem is comfortable */
    line-height: 1.8;
  }

  .wedding-sessions {
    max-width: 900px;
    margin: 0 auto;
  }
  
    /* Full-width, responsive YouTube embeds */
  .section-videos{margin:20px 0}
  .video-row{--bs-gutter-x:0}               /* kill side gutters */
  .video-embed{position:relative;width:100%} /* 16:9 aspect box */
  .video-embed::before{content:"";display:block;padding-top:56.25%}
  .video-embed iframe{
    position:absolute;inset:0;
    width:100%!important;height:100%!important;
    display:block!important;float:none!important;max-width:none!important;border:0
  }