/* La Win Wedding Event — Custom Styles */

:root {
  --lw-cream: #f8f4ee;
  --lw-ivory: #fbf8f3;
  --lw-white: #ffffff;
  --lw-gold:  #c9a96e;
  --lw-gold-dark: #a88851;
  --lw-taupe: #7a6a5a;
  --lw-soft:  #ece5dc;
  --lw-text:  #2c2a28;
  --lw-muted: #8a8278;
  --lw-shadow: 0 8px 30px rgba(44, 42, 40, 0.08);
}

* { box-sizing: border-box; }

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lw-text);
  background-color: var(--lw-ivory);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .heading-serif {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 500;
  color: var(--lw-text);
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--lw-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--lw-gold);
  margin: 1rem auto 2rem;
  border: 0;
}

.section-divider.divider-start { margin-left: 0; margin-right: 0; }

.text-gold { color: var(--lw-gold) !important; }
.bg-cream { background-color: var(--lw-cream) !important; }
.bg-ivory { background-color: var(--lw-ivory) !important; }
.bg-soft  { background-color: var(--lw-soft) !important; }

/* Buttons */
.btn-gold {
  background-color: var(--lw-gold);
  border: 1px solid var(--lw-gold);
  color: var(--lw-white);
  padding: 0.75rem 2rem;
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: var(--lw-gold-dark);
  border-color: var(--lw-gold-dark);
  color: var(--lw-white);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--lw-white);
  padding: 0.75rem 2rem;
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-light-custom:hover {
  background-color: var(--lw-white);
  color: var(--lw-text);
}

/* NAVBAR */
.navbar-custom {
  padding: 1rem 0;
  background-color: transparent;
  transition: all 0.4s ease;
  z-index: 1030;
}
.navbar-custom.navbar-scrolled,
.navbar-custom.navbar-solid {
  background-color: var(--lw-white);
  box-shadow: var(--lw-shadow);
  padding: 0.5rem 0;
}
.navbar-custom .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--lw-white);
}
.navbar-custom .navbar-brand span {
  color: var(--lw-gold);
  font-style: italic;
}
.navbar-custom.navbar-scrolled .navbar-brand,
.navbar-custom.navbar-solid .navbar-brand {
  color: var(--lw-text);
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  padding: 0.5rem 1.1rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-custom.navbar-scrolled .nav-link,
.navbar-custom.navbar-solid .nav-link {
  color: var(--lw-text);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--lw-gold) !important;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0;
  height: 1px;
  background-color: var(--lw-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-scrolled .navbar-toggler-icon,
.navbar-solid .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 42, 40, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO SLIDER */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 100vh; min-height: 600px; }

.hero-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(30, 25, 22, 0.45), rgba(30, 25, 22, 0.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--lw-white);
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-content .hero-eyebrow {
  color: var(--lw-gold);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.hero-content h1 {
  color: var(--lw-white);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  color: var(--lw-gold);
  font-style: italic;
}
.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.92;
}

.carousel-control-prev, .carousel-control-next {
  width: 5%;
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  opacity: 0.9;
}
.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 0;
}
.carousel-indicators .active { background-color: var(--lw-gold); }

/* PAGE HEADER (for sub-pages) */
.page-header {
  height: 50vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--lw-white);
  margin-top: 0;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(30, 25, 22, 0.45), rgba(30, 25, 22, 0.55));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  color: var(--lw-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.page-header .breadcrumb-custom {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.page-header .breadcrumb-custom a {
  color: var(--lw-gold);
  text-decoration: none;
}

/* SECTIONS */
section { padding: 6rem 0; }
section.compact { padding: 4rem 0; }

/* ABOUT */
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  height: auto;
  box-shadow: var(--lw-shadow);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--lw-gold);
  z-index: -1;
}

/* ABOUT COLLAGE */
.about-collage {
  position: relative;
  padding: 0 30px 60px 0;
  min-height: 540px;
}
.about-collage .collage-main,
.about-collage .collage-sub {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--lw-shadow);
  background-color: var(--lw-soft);
}
.about-collage .collage-main {
  top: 0; left: 0;
  width: 70%;
  height: 70%;
}
.about-collage .collage-sub {
  bottom: 0; right: 0;
  width: 60%;
  height: 55%;
  border: 6px solid var(--lw-ivory);
}
.about-collage .collage-main img,
.about-collage .collage-sub img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-collage::before {
  content: '';
  position: absolute;
  top: 15px; left: -15px;
  width: 60%; height: 60%;
  border: 2px solid var(--lw-gold);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .about-collage {
    padding: 0 20px 40px 0;
    min-height: 360px;
  }
  .about-collage::before { display: none; }
}
.stats-row { border-top: 1px solid var(--lw-soft); padding-top: 2rem; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--lw-gold);
  line-height: 1;
}
.stat-item .stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lw-muted);
  margin-top: 0.5rem;
}

/* SERVICE CARDS */
.service-card {
  background-color: var(--lw-white);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(44, 42, 40, 0.05);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 42, 40, 0.12);
}
.service-card .service-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card .service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  transition: opacity 0.3s ease;
}
.service-card .service-body {
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--lw-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* WHY US */
.feature-item { text-align: center; padding: 1.5rem 1rem; }
.feature-item .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lw-gold);
  border-radius: 50%;
  color: var(--lw-gold);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.feature-item:hover .feature-icon {
  background-color: var(--lw-gold);
  color: var(--lw-white);
}
.feature-item h5 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: var(--lw-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* GALLERY */
.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(44, 42, 40, 0);
  transition: background-color 0.4s ease;
}
.gallery-item .gallery-plus {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: var(--lw-white);
  font-size: 1.5rem;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
  width: 55px; height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background-color: rgba(44, 42, 40, 0.4); }
.gallery-item:hover .gallery-plus {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* GALLERY FILTER */
.gallery-filter {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-filter button {
  background: none;
  border: none;
  color: var(--lw-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  margin: 0 0.3rem 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}
.gallery-filter button.active,
.gallery-filter button:hover {
  color: var(--lw-gold);
}
.gallery-filter button.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 1px;
  background-color: var(--lw-gold);
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(rgba(44, 42, 40, 0.7), rgba(44, 42, 40, 0.7)),
              url('../../images/img/lw-20.jpg') center/cover no-repeat fixed;
  padding: 80px 0;
  color: var(--lw-white);
  text-align: center;
}
.cta-band h2 {
  color: var(--lw-white);
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.cta-band p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.8rem;
}

/* CONTACT */
.contact-info-card {
  background-color: var(--lw-white);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(44, 42, 40, 0.05);
}
.contact-info-card:hover {
  transform: translateY(-5px);
}
.contact-info-card .contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lw-cream);
  border-radius: 50%;
  color: var(--lw-gold);
  font-size: 1.3rem;
}
.contact-info-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-info-card p, .contact-info-card a {
  color: var(--lw-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  text-decoration: none;
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--lw-gold); }

.contact-form .form-control {
  border: 0;
  border-bottom: 1px solid var(--lw-soft);
  border-radius: 0;
  padding: 0.9rem 0;
  background-color: transparent;
  font-size: 0.95rem;
  box-shadow: none;
}
.contact-form .form-control:focus {
  border-color: var(--lw-gold);
  box-shadow: none;
  background-color: transparent;
}
.contact-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lw-muted);
  margin-bottom: 0.3rem;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.3) contrast(0.95);
}

/* FOOTER */
footer {
  background-color: #211f1d;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
  font-size: 0.9rem;
}
footer h5 {
  color: var(--lw-white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--lw-white);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}
footer .footer-brand span { color: var(--lw-gold); font-style: italic; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.6rem; }
footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover { color: var(--lw-gold); }
footer .social-links a {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 0.4rem;
  transition: all 0.3s ease;
}
footer .social-links a:hover {
  background-color: var(--lw-gold);
  border-color: var(--lw-gold);
  color: var(--lw-white);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* LIGHTBOX MODAL */
.lightbox-modal .modal-content {
  background-color: transparent;
  border: 0;
}
.lightbox-modal .modal-body {
  padding: 0;
  text-align: center;
}
.lightbox-modal img {
  max-width: 100%;
  max-height: 85vh;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-modal .btn-close {
  position: absolute;
  top: -40px; right: 0;
  background-color: var(--lw-white);
  opacity: 1;
  border-radius: 50%;
  padding: 0.6rem;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--lw-gold);
  color: var(--lw-white);
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--lw-gold-dark); }

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .navbar-custom {
    background-color: var(--lw-white);
    padding: 0.6rem 0;
    box-shadow: var(--lw-shadow);
  }
  .navbar-custom .navbar-brand { color: var(--lw-text); }
  .navbar-custom .nav-link { color: var(--lw-text); }
  .navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 42, 40, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-custom .navbar-nav { padding-top: 0.8rem; }
  .navbar-custom .nav-link::after { display: none; }

  section { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  .hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item {
    min-height: 500px;
  }
  .about-image-wrap::before { display: none; }
  .cta-band { background-attachment: scroll; }
}

@media (max-width: 575.98px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content .hero-eyebrow { letter-spacing: 3px; font-size: 0.75rem; }
  .btn-gold, .btn-outline-light-custom { padding: 0.65rem 1.3rem; font-size: 0.75rem; }
}
