@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-pearl-white: #fcfcfc;
  --color-champagne-gold: #E8D3B9;
  --color-blush-nude: #E2C9C5;
  --color-soft-ivory: #F5F2EB;
  --color-warm-beige: #D5C5B3;
  --color-rose-gold: #B78A86;
  --color-matte-mocha: #6D5B53;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition-cinematic: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-pearl-white);
  color: var(--color-matte-mocha);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-matte-mocha);
}

.text-champagne {
  color: var(--color-champagne-gold);
}

.text-rose-gold {
  color: var(--color-rose-gold);
}

.bg-ivory {
  background-color: var(--color-soft-ivory);
}

.bg-blush {
  background-color: var(--color-blush-nude);
}

.btn-luxury {
  background-color: var(--color-rose-gold);
  color: var(--color-pearl-white);
  padding: 15px 35px;
  border-radius: 0;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: var(--transition-cinematic);
  border: 1px solid var(--color-rose-gold);
  display: inline-block;
  text-decoration: none;
}

.btn-luxury:hover {
  background-color: transparent;
  color: var(--color-rose-gold);
}

.btn-outline-luxury {
  background-color: transparent;
  color: var(--color-rose-gold);
  padding: 15px 35px;
  border-radius: 0;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: var(--transition-cinematic);
  border: 1px solid var(--color-rose-gold);
  display: inline-block;
  text-decoration: none;
}

.btn-outline-luxury:hover {
  background-color: var(--color-rose-gold);
  color: var(--color-pearl-white);
}

/* Cinematic Navbar */
.navbar-luxury {
  background: rgba(252, 252, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 211, 185, 0.3);
  padding: 20px 15px;
  transition: var(--transition-cinematic);
}

.navbar-luxury .nav-link {
  font-family: var(--font-body);
  color: var(--color-matte-mocha);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  position: relative;
  margin: 0 5px;
}

.navbar-luxury .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-champagne-gold);
  transition: var(--transition-cinematic);
}

.navbar-luxury .nav-link:hover::before {
  width: 100%;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-matte-mocha);
  letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px; /* Accounts for fixed navbar to perfectly center visually */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(252, 252, 252, 0.9) 0%, rgba(252, 252, 252, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-title {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--color-matte-mocha);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-rose-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Sections */
.section-padding {
  padding: 120px 0;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--color-rose-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

/* Image wrappers */
.img-reveal-wrapper {
  overflow: hidden;
  position: relative;
}

.img-reveal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* Footer */
.luxury-footer {
  background-color: var(--color-matte-mocha);
  color: var(--color-soft-ivory);
  padding: 80px 0 30px;
}

.luxury-footer h5 {
  color: var(--color-champagne-gold);
  margin-bottom: 25px;
}

.luxury-footer a {
  color: rgba(245, 242, 235, 0.7);
  text-decoration: none;
  transition: var(--transition-cinematic);
}

.luxury-footer a:hover {
  color: var(--color-champagne-gold);
}

.bottom-footer {
  border-top: 1px solid rgba(232, 211, 185, 0.2);
  padding-top: 20px;
  margin-top: 50px;
  font-size: 0.85rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 211, 185, 0.3);
  border-radius: 50%;
  margin-right: 10px;
}

.social-icons a:hover {
  background-color: var(--color-champagne-gold);
  color: var(--color-matte-mocha);
}

.page-header {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
}


/* Dropdown Hover Fix */
.dropdown-menu .dropdown-item {
  color: var(--color-matte-mocha);
  transition: var(--transition-cinematic);
  cursor: pointer;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: var(--color-champagne-gold);
  color: var(--color-pearl-white);
}

/* Lightbox Gallery */
#lightbox {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 20, 18, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
#lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out forwards;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  border: 10px solid var(--color-pearl-white);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.gallery-img {
  cursor: pointer;
  transition: var(--transition-cinematic);
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Custom LineIcon Dropdown Caret */
.navbar-luxury .dropdown-toggle::after {
  content: "\eb11";
  font-family: 'lineicons';
  border: none;
  vertical-align: middle;
  font-size: 0.8em;
  margin-left: 6px;
  display: inline-block;
  font-weight: 700;
  transition: transform 0.3s ease;
  position: static;
  width: auto;
  height: auto;
}

.navbar-luxury .dropdown:hover .dropdown-toggle::after,
.navbar-luxury .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Responsive Typography & Layout */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .page-header {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 15px !important;
  }
  .hero-btn-group a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--color-pearl-white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .hero-btn-group {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .hero-btn-group a {
    width: 100%;
    text-align: center;
    margin-bottom: 10px; /* Fallback for browsers failing at flex gap */
  }
  .hero-btn-group a:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
}


/* Lenis required CSS */
html.lenis, html.lenis body { height: auto; width: 100vw; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
