/* ============================================
   WedMajesty — Luxury Wedding Planner
   Custom theme on Bootstrap 5
============================================ */

:root {
  --maroon: #5b1a2b;
  --maroon-deep: #3a0f1c;
  --maroon-light: #7a2540;
  --gold: #c8a14a;
  --gold-light: #f5d98a;
  --gold-dark: #b8862a;
  --ivory: #faf6ef;
  --ivory-warm: #f3ecdf;
  --ink: #2a1f23;
  --muted: #6b5d63;

  --font-display: "Cormorant Garamond", serif;
  --font-script: "Pinyon Script", cursive;
  --font-body: "Jost", sans-serif;

  --shadow-luxe: 0 30px 80px -30px rgba(58, 15, 28, 0.45);
  --shadow-gold: 0 18px 50px -20px rgba(200, 161, 74, 0.55);
}

/* Bootstrap overrides */
.btn-primary,
.bg-primary { background-color: var(--maroon) !important; border-color: var(--maroon) !important; }
.text-primary { color: var(--maroon) !important; }

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--maroon-deep);
}
a { text-decoration: none; transition: all .3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* Utility */
.section-pad { padding: 4rem 0; }
.section-pad-sm { padding: 4rem 0; }
.font-script { font-family: var(--font-script); }
.font-display { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.divider-gold {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.25rem 0;
}
.divider-gold::before,
.divider-gold::after {
  content: ""; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-gold i { color: var(--gold); font-size: 1rem; transform: rotate(45deg); display: inline-block; width: 8px; height: 8px; background: var(--gold); }

.bg-ivory { background: var(--ivory); }
.bg-ivory-warm { background: var(--ivory-warm); }
.bg-maroon { background: linear-gradient(135deg, var(--maroon-deep), var(--maroon)) !important; color: var(--ivory); }
.bg-maroon h1, .bg-maroon h2, .bg-maroon h3 { color: var(--ivory); }

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2.25rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  color: var(--maroon-deep) !important;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid var(--gold);
  border-radius: 0;
  box-shadow: var(--shadow-gold);
  transition: transform .3s ease, filter .3s ease;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); color: var(--maroon-deep); }

.btn-ghost-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 2.25rem;
  background: transparent;
  color: var(--gold-light) !important;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid rgba(200, 161, 74, 0.7);
  border-radius: 0;
  transition: all .3s ease;
}
.btn-ghost-gold:hover { background: rgba(200, 161, 74, 0.18); color: #fff !important; }

/* Navbar */
.navbar-luxury {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0px 0;
  background: transparent;
  transition: all .4s ease;
}
.navbar-luxury.scrolled {
  background: rgba(58, 15, 28, 0.96);
  backdrop-filter: blur(10px);
  padding: .6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.navbar-luxury .navbar-brand { display: flex; align-items: center; gap: .75rem; color: #fff; }
.navbar-luxury .navbar-brand img {
  height: 135px;
  width: auto;
  margin-bottom: -70px;
  background: #faf6ef;
  border-radius: 4px;
  padding: 5px 15px;
}
.navbar-luxury .brand-text { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: #fff; }
.navbar-luxury .brand-text small { font-family: var(--font-script); display: block; font-size: 1rem; color: var(--gold-light); }
.navbar-luxury .nav-link {
  color: #6d1d28 !important;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem 1rem !important;
  position: relative;
  font-weight: 400;
}
.navbar-luxury .nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--gold); transition: all .3s ease; transform: translateX(-50%);
}
.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link.active::after { width: 60%; }
.navbar-luxury .nav-link:hover { color: var(--gold-light) !important; }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.scrolled .nav-link {
  color: #faf6ef !important;
}
.scrolled .navbar-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 0;
  background: #faf6ef;
  border-radius: 4px;
  padding: 0px 5px;
}
/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,15,28,.55) 0%, rgba(58,15,28,.35) 40%, rgba(58,15,28,.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 1rem; max-width: 1000px; }
.hero .script { font-family: var(--font-script); color: var(--gold-light); font-size: clamp(1.8rem, 4vw, 2.8rem); display: block; margin-bottom: 1rem; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 span { font-style: italic; }
.hero p.lead {
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-transform: uppercase;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--gold-light); z-index: 3; animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Stats */
.stats-strip {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: #fff;
  padding: 1rem 0;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-item .num { font-family: var(--font-display); font-size: 3rem; color: var(--gold-light); display: block; line-height: 1; }
.stat-item .label { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; margin-top: .5rem; color: rgba(255,255,255,.8); }

/* Section heading */
.section-heading { text-align: center; margin-bottom: 4rem; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .5rem; }
.section-heading .script { font-family: var(--font-script); color: var(--gold-dark); font-size: 2rem; }
.section-heading p { margin: 1rem auto 0; color: var(--muted); }

/* About */
.about-img-wrap { position: relative; padding: 1.5rem; }
.about-img-wrap::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--gold); transform: translate(20px, 20px);
  z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; width: 100%; height: 500px; object-fit: cover; }
.about-video {
  width: 105%;
  height: 550px;
  object-fit: cover;
  object-position: top;
  position: relative;
  top: -25px;
  left: -19px;
  margin-bottom: -95px;
}
/* Service cards */
.service-card {
  position: relative; background: #fff;
  border: 1px solid rgba(200, 161, 74, 0.3);
  overflow: hidden;
  transition: all .5s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-luxe); border-color: var(--gold); }
.service-card .service-img { height: 280px; overflow: hidden; }
.service-card .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card .service-body { padding: 2rem 1.75rem; text-align: center; }
.service-card h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }
.service-card .read-more {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-dark); border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.service-card .read-more:hover { color: var(--maroon); }

/* Process */
.process-step {
  text-align: center; padding: 2rem 1rem; position: relative;
}
.process-step .num {
  font-family: var(--font-display); font-size: 4rem;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
  line-height: 1; margin-bottom: 1rem; display: block;
}
.process-step h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.process-step p { color: var(--muted); font-size: .9rem; }

/* Testimonials */
.testimonial-card {
  background: #fff; padding: 3rem 2.5rem; text-align: center;
  border: 1px solid rgba(200, 161, 74, 0.25);
  position: relative;
}
.testimonial-card .quote-icon { color: var(--gold); font-size: 2.5rem; margin-bottom: 1rem; }
.testimonial-card p { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink); line-height: 1.6; }
.testimonial-card .author { margin-top: 1.5rem; }
.testimonial-card .author strong { display: block; color: var(--maroon); font-family: var(--font-display); font-size: 1.2rem; }
.testimonial-card .author small { color: var(--gold-dark); letter-spacing: .15em; text-transform: uppercase; font-size: .7rem; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58,15,28,.7) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

/* Stories */
.story-card { background: #fff; overflow: hidden; height: 100%; transition: all .4s ease; }
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-luxe); }
.story-card .story-img { height: 250px; overflow: hidden; }
.story-card .story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.story-card:hover .story-img img { transform: scale(1.05); }
.story-card .story-body { padding: 1.75rem; }
.story-card .date { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); }
.story-card h4 { margin: .75rem 0; font-size: 1.4rem; }
.story-card p { color: var(--muted); font-size: .92rem; }

/* Contact */
.contact-strip {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.contact-strip h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.contact-strip p { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 2rem; }

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0; border: 1px solid rgba(91, 26, 43, 0.2);
  padding: .9rem 1rem; background: #fff;
  font-family: var(--font-body); font-size: .95rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(200,161,74,.15);
}
.contact-form label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: .5rem; font-weight: 500;
}

.contact-info-card {
  text-align: center; padding: 2rem;
  background: #fff; border: 1px solid rgba(200,161,74,.25); height: 100%;
}
.contact-info-card i { font-size: 2rem; color: var(--gold-dark); margin-bottom: 1rem; }
.contact-info-card h5 { font-size: 1.2rem; margin-bottom: .5rem; }
.contact-info-card p { color: var(--muted); margin: 0; font-size: .92rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, rgba(58,15,28,.85), rgba(91,26,43,.85)), url('../images/about.jpg') center/cover;
  color: #fff;
  padding: 10rem 0 6rem;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero .script { font-family: var(--font-script); color: var(--gold-light); font-size: 2rem; }
.breadcrumb-luxury { justify-content: center; margin-top: 1rem; }
.breadcrumb-luxury a { color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; }
.breadcrumb-luxury a:hover { color: var(--gold-light); }
.breadcrumb-luxury .sep { color: var(--gold); margin: 0 .75rem; }

/* Footer */
.footer {
  background: #faf6ef;
  color: rgba(255,255,255,.7);
  padding: 2rem 0 1rem;
  border-top: 1px solid #421823;
}
.footer h5 {
  color: var(--maroon-deep); font-family: var(--font-display);
  font-size: 1.4rem; margin-bottom: 1.5rem;
}
.footer a { color: #000; display: block; padding: .35rem 0; font-size: .9rem; }
.footer a:hover { color: var(--maroon-deep); padding-left: .5rem; }
.footer .brand-block img { height: 90px; margin-bottom: 1rem; }
.footer .brand-block .brand-name { font-family: var(--font-display); font-size: 1.8rem; color: #fff; }
.footer .brand-block .brand-tag { font-family: var(--font-script); color: var(--maroon-deep); font-size: 1.2rem; }
.footer .social-icons { display: flex; gap: .75rem; margin-top: 1rem; }
.footer .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(200,161,74,.4);
  color: var(--maroon-deep); padding: 0;
}
.footer .social-icons a:hover {
  background: var(--gold); color: var(--maroon-deep); padding-left: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(66 24 35 / 25%);
  margin-top: 20px;
  padding-top: 1rem;
  text-align: center;
  font-size: .85rem;
  color: rgb(66 24 35);
}
/* location page */

.loc-hero { background: linear-gradient(135deg, rgba(58,15,28,.85), rgba(91,26,43,.8)), url('../images/gallery-1.jpg') center/cover; }
  .feature-list { list-style:none; padding:0; margin:0; }
  .feature-list li { position:relative; padding:.6rem 0 .6rem 2rem; border-bottom:1px dashed rgba(200,161,74,.3); color:var(--ink); font-size:.98rem; }
  .feature-list li::before { content:"\F26E"; font-family:"bootstrap-icons"; position:absolute; left:0; top:.55rem; color:var(--gold-dark); font-size:1.1rem; }
  .why-card { background:#fff; padding:2rem; border:1px solid rgba(200,161,74,.25); height:100%; transition:all .4s ease; }
  .why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-luxe); border-color:var(--gold); }
  .why-card .icon { width:56px;height:56px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--gold-dark),var(--gold-light));color:var(--maroon-deep);font-size:1.5rem;margin-bottom:1rem;}
  .pkg-table { border:1px solid rgba(200,161,74,.35); background:#fff; }
  .pkg-table th { background:linear-gradient(135deg,var(--maroon-deep),var(--maroon)); color:var(--gold-light) !important; font-family:var(--font-display); font-weight:500; letter-spacing:.15em; text-transform:uppercase; font-size:.8rem; padding:1.2rem 1.5rem; border:0; }
  .pkg-table td { padding:1.25rem 1.5rem; vertical-align:middle; border-color:rgba(200,161,74,.2); }
  .pkg-table td strong { color:var(--maroon); font-family:var(--font-display); font-size:1.2rem; }
  .pkg-table .price { color:var(--gold-dark); font-family:var(--font-display); font-size:1.3rem; font-weight:500; }
  .area-chip { display:inline-block; padding:.5rem 1.1rem; margin:.3rem; border:1px solid var(--gold); color:var(--maroon); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; background:#fff; transition:all .3s; }
  .area-chip:hover { background:var(--gold); color:var(--maroon-deep); }
  .faq-item { background:#fff; border:1px solid rgba(200,161,74,.25); margin-bottom:1rem; }
  .faq-item .accordion-button { background:#fff; color:var(--maroon-deep); font-family:var(--font-display); font-size:1.15rem; font-weight:500; padding:1.25rem 1.5rem; box-shadow:none; }
  .faq-item .accordion-button:not(.collapsed){ background:var(--ivory-warm); color:var(--maroon-deep); }
  .faq-item .accordion-button:focus{ box-shadow:none; border-color:var(--gold); }
  .faq-item .accordion-body { color:var(--muted); font-size:.98rem; padding:0 1.5rem 1.5rem; }

/* Responsive tweaks */
@media (max-width: 991px) {
  .navbar-luxury { background: rgba(58, 15, 28, 0.96); padding: .8rem 0; }
  .navbar-collapse { background: rgba(58, 15, 28, 0.98); margin-top: 1rem; padding: 1rem; }
  .section-pad { padding: 4rem 0; }
  .about-img-wrap img { height: 350px; }
}
@media (max-width: 767px) {
  .navbar-luxury {
    background: rgb(250 246 239); 
    padding: 0;
  }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold, .hero-cta .btn-ghost-gold { width: 100%; }
  .navbar-luxury .navbar-brand img {
      height: 70px;
      width: auto;
      margin-bottom: 0;
      border-radius: 4px;
      padding: 0px 0px;
  }
  .navbar-toggler {
      border-color: #6c0d1b;
      border-radius: 0;
  }
  .navbar-toggler-icon {
      filter: invert(1);
  }
  .navbar-collapse {
      margin-top: 0rem;
      padding: 1rem;
  }
  .navbar-luxury .nav-link {
    color: #faf6ef !important;
    padding: .5rem 0rem !important;
  }
  .btn-gold {
    padding: 10px;
  }
  .navbar-luxury .nav-link:hover::after, .navbar-luxury .nav-link.active::after {
      width: 100%;
  }
  .navbar-luxury.scrolled {
      background: #faf6ef;
      top: 0px;
      padding: 0;
  }
  .about-video {
      width: 100%;
      height: 275px;
      object-fit: cover;
      margin-bottom: -50px;
  }
  .section-pad {
      padding: 2rem 0;
  }
  .section-heading {
      margin-bottom: 2rem;
  }
  .process-step {
      padding: 10px 5px 0;
  }
  .about-img-wrap::before {
      transform: translate(0px, 20px);
  }
}
