:root {
  --navy: #252564;
  --cream: #F4EFE2;
  --cream-light: #faf7f1;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #555570;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-lora {
  font-family: 'Lora', serif;
}

#mainNav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}

#mainNav.scrolled {
  position: fixed;
  background: rgba(20, 20, 50, 0.92);
  backdrop-filter: blur(10px);
  padding: 36px 60px;
}

/* Brand / Logo */
#mainNav .navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-logo {
  max-height: 60px;
  width: auto;
}

/* Nav links */
.nav-link-custom {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0 50px !important;
  transition: color 0.2s;
}

.nav-link-custom:hover,
.nav-link-custom:focus {
  color: #fff !important;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(20, 20, 50, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Custom hamburger bars */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── MOBILE (below lg breakpoint) ─── */
@media (max-width: 991px) {
  #mainNav {
    padding: 16px 24px;
    background: rgba(20, 20, 50, 0.95); /* always visible on mobile */
  }

  #mainNav .navbar-brand {
    position: static;
    transform: none;
  }

  .navbar-collapse {
    background: rgba(20, 20, 50, 0.98);
    padding: 16px 24px;
    margin-top: 12px;
    border-radius: 8px;
  }

  .nav-link-custom {
    padding: 10px 0 !important;
  }

  .nav-left, .nav-right {
    width: 100%;
  }

  .dropdown-menu {
    background: rgba(255, 255, 255, 0.05);
    border: none;
  }
}
/* ─── HERO ─── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.28);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 50px;
}

.scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.scroll-arrow {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  display: block;
  margin-top: 6px;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* ─── INTRO SECTION ─── */
#intro {
  background: var(--cream);
  padding: 90px 0;
}

.intro-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3D2920;
  margin-bottom: 20px;
}

.intro-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 28px;
  font-weight: 100;
}

.intro-para {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #454545;
  line-height: 1.85;
  max-width: 420px;
  margin: 0 auto;
}

.intro-img-top {
  /* width: 300px;
      height: 400px; */
  object-fit: cover;
  border-radius: 2px;
  /* position: absolute; */
  top: 0;
  left: 0;
}

/* .intro-img-bottom {
      width: 200px;
      height: 260px;
      object-fit: cover;
      border-radius: 2px;
      position: absolute;
      bottom: 0;
      left: 60px;
    } */
.intro-img-right {
  /* width: 180px;
      height: 230px; */
  object-fit: cover;
  border-radius: 2px;
}

.intro-left-wrap {
  position: relative;
  /* height: 400px; */
}

.intro-right-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

/* ─── ABOUT ─── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-img-col {
  position: relative;
  overflow: hidden;
}

.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
}

.about-text-col {
  background: var(--navy);
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  position: relative;
}

.about-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.about-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #F4EFE2;
    line-height: 1.4;
    margin-bottom: 36px;
    font-weight: 100;
}

.about-para {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #F4EFE2;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 30px;
  width: 90%;
  font-weight: lighter;
  letter-spacing: 1px;
}

.about-signature {
  font-family: "Ephesis";
  font-weight: lighter;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  letter-spacing: 3px;
}

.p-absolute {
  position: absolute;
  bottom: 40px;
}

/* ─── SERVICES ─── */
#services {
  background: var(--white);
  padding-top: 50px;
}

.services-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0;
  padding: 0 0 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 700px;
}

.service-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 100, 0.0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  margin: 0 auto;
  top: 10%;
}

.service-item:hover .service-overlay {
  background: rgba(37, 37, 100, 0.5);
}

.service-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* middle card always has overlay */
.service-item.active-service .service-overlay {
  background: rgba(37, 37, 100, 0.62);
}

.service-title {
  font-family: 'Lora', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F4EFE2;
    text-align: center;
    font-weight: 100;
}

.service-arrow {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 8px;
}

/* ─── COUNTERS ─── */
#counters {
  background: var(--cream);
  padding: 70px 0;
}

.counter-number {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1;
}

.counter-divider {
  width: 1px;
  height: 36px;
  background: var(--navy);
  margin: 14px auto;
}

.counter-label {
font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #252564;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--white);
  padding: 80px 0 90px;
}

.testi-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 30px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
}

.testi-quote {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  color: var(--navy);
  line-height: 1.45;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.testi-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #454545;
    text-align: center;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 20px;
}

.testi-author {
      font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
    font-weight: 600;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
}

.testi-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: opacity 0.2s;
}

.testi-btn:hover {
  opacity: 0.6;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--white);
  padding: 50px 0 70px;
}

.gallery-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}

.gallery-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 2px;
}

.gallery-thumb {
  width: 117px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.65;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--navy);
}

/* ─── CONTACT ─── */
#contact {
  background: var(--cream);
  padding: 80px 0;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 60px;
}

.contact-left-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 28px;
}

.contact-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-val {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-info-val a {
  color: var(--text-muted);
  text-decoration: underline;
}

.form-field {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(37, 37, 100, 0.35);
  border-radius: 0;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--navy);
  width: 100%;
  outline: none;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.form-field::placeholder {
  color: rgba(37, 37, 100, 0.45);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.form-field:focus {
  border-bottom-color: var(--navy);
}

textarea.form-field {
  resize: none;
  height: 90px;
}

.send-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  float: right;
  transition: opacity 0.2s;
}

.send-btn:hover {
  opacity: 0.6;
}

/* ─── FOOTER ─── */
#footer {
  background: var(--white);
  padding: 60px 0 0;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 4px;
}

.footer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.footer-imgs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.footer-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin-bottom: 22px;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--navy);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-socials a {
  color: var(--navy);
  font-size: 1.2rem;
  transition: opacity 0.2s;
}

.footer-socials a:hover {
  opacity: 0.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(37, 37, 100, 0.15);
  margin: 0 40px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding: 18px 0;
}

.footer-copy span {
  color: var(--navy);
  font-weight: 600;
}

/* ─── UTILITIES ─── */
.swiper {
  width: 100%;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 50, 0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  #mainNav {
    padding: 20px 24px;
  }

  #mainNav.scrolled {
    padding: 14px 24px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .about-text-col {
    padding: 50px 30px;
  }

  /* .services-grid {
    grid-template-columns: 1fr;
    height: auto;
  } */

  .service-item {
    height: 300px;
  }

  .service-item.active-service .service-overlay {
    background: rgba(37, 37, 100, 0.62);
  }

  .intro-left-wrap {
    display: none;
  }

  .intro-right-wrap {
    display: none;
  }

  .footer-imgs {
    flex-wrap: wrap;
  }

  .footer-img {
    width: 120px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .testi-quote {
    font-size: 1.2rem;
  }

  .gallery-main {
    height: 280px;
  }

  .gallery-thumb {
    width: 80px;
    height: 54px;
  }

  .contact-left-heading {
    font-size: 1.6rem;
  }
}

/* end */

/* services page all 3 */
 section.wedding-section {
  padding: 70px 0;
}

section.wedding-section .container-fluid {
    width: 80%;
}

/* Heading */
section.wedding-section .center-text {
  max-width: 500px;
  margin: auto;
}

section.wedding-section .center-text h1 {
      font-size: 50px;
    margin-bottom: 12px;
    color: #252564;
}

section.wedding-section h2.btb.mb-3.mt-5 {
        font-size: 50px;
    margin-bottom: 12px;
    color: #252564;
}

section.wedding-section .center-text p {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
    font-weight: 300;
}

/* Side Images */
section.wedding-section .side-img {
  position: relative;
  width: 300px;
}

section.wedding-section .side-img img {
  /* width: 100%; */
  display: block;
}

/* Partial vertical lines beside side images */
section.wedding-section .side-img.left::after,
section.wedding-section .side-img.right::after {
  content: "";
  position: absolute;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #000000;
}

section.wedding-section .side-img.left::after {
  right: -25px;
}

section.wedding-section .side-img.right::after {
  left: -25px;
}

/* Image Box */
section.wedding-section .img-box {
  position: relative;
  overflow: hidden;
}

section.wedding-section .img-box img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}



section.wedding-section .img-box::before {
  left: 0;
}

section.wedding-section .img-box::after {
  right: 0;
}


/* Spacing fine-tune */
section.wedding-section .row.g-3 {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  section.wedding-section .side-img {
    display: none;
  }

  section.wedding-section .center-text h2 {
    font-size: 24px;
  }
}
/* end */

/* gallery page */
section.gallery-pg {
  padding: 40px 60px;
}

section.gallery-pg .gallery-image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* end */

/* mobile nav styles */


nav.navbar.navbar-expand-lg.d-lg-none {
  background: #141432;
}