/* css/style.css */

:root{
  --bg:#0f0f10;
  --bg2:#171719;
  --gold:#c5a46d;
  --text:#f3f3f3;
  --muted:#b9b9b9;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
}

.hero{
  min-height:100vh;
  position:relative;
  background:url('../img/hero.jpg') center center/cover no-repeat;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.display-2{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-size:clamp(3rem,7vw,6rem);
}

.display-2 span{
  color:var(--gold);
}

.eyebrow{
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  font-size:.8rem;
}

.hero-text{
  color:#ddd;
  font-size:1.2rem;
}

.btn-primary-custom{
  background:var(--gold);
  border:none;
  color:#111;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
}

.btn-primary-custom:hover{
  background:#d9b57a;
}

.btn-outline-custom{
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
}

.section-dark{
  background:var(--bg2);
}

.section-black{
  background:var(--bg);
}

.section-label{
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:.75rem;
}

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;
}

.lead-text{
  font-size:1.2rem;
  color:#ddd;
}

.body-text{
  color:var(--muted);
  line-height:1.8;
}

.package-card{
  background:#1d1d1f;
  padding:40px;
  border-radius:24px;
  height:100%;
}

.package-card h3{
  font-family:'Cormorant Garamond',serif;
  margin-bottom:20px;
}

.package-card ul{
  padding-left:18px;
  color:#ccc;
  line-height:2;
}

.image-break img{
  width:100%;
  height:70vh;
  object-fit:cover;
}

.video-wrapper{
  border-radius:24px;
  overflow:hidden;
}

.gallery-grid{
  columns:4 280px;
  column-gap:18px;
}

.gallery-grid img{
  width:100%;
  margin-bottom:18px;
  border-radius:20px;
  transition:
    transform .35s ease,
    opacity .35s ease,
    filter .35s ease;
  display:block;
  break-inside:avoid;
  cursor:pointer;
}

.gallery-grid img:hover{
  transform:scale(1.02);
  opacity:.95;
}

.gallery-grid img.featured{
  border:2px solid rgba(197,164,109,.5);
  box-shadow:0 0 30px rgba(197,164,109,.18);
}

.gallery-grid img.large{
  transform:scale(1.01);
}

.gallery-grid img.large:hover{
  transform:scale(1.03);
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.94);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  padding:30px;
}

.lightbox.active{
  opacity:1;
  pointer-events:auto;
}

.lightbox img{
  max-width:92%;
  max-height:92%;
  border-radius:18px;
}

.lightbox-close{
  position:absolute;
  top:25px;
  right:30px;
  color:#fff;
  font-size:3rem;
  cursor:pointer;
  line-height:1;
}

@media(max-width:1200px){

  .gallery-grid{
    columns:3 250px;
  }

}

@media(max-width:768px){

  .gallery-grid{
    columns:2 160px;
    column-gap:12px;
  }

  .gallery-grid img{
    margin-bottom:12px;
    border-radius:14px;
  }

}

@media(max-width:480px){

  .gallery-grid{
    columns:1;
  }

}

.testimonial-card{
  background:#1d1d1f;
  padding:40px;
  border-radius:24px;
  height:100%;
}

.testimonial-card p{
  color:#ddd;
  line-height:1.8;
}

.testimonial-card span{
  color:var(--gold);
}

.contact-box{
  background:#1d1d1f;
  padding:50px;
  border-radius:30px;
}

.form-control{
  background:#111;
  border:1px solid #2c2c2c;
  color:#fff;
  padding:16px;
}

.form-control:focus{
  background:#111;
  color:#fff;
  border-color:var(--gold);
  box-shadow:none;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
}

.footer a{
  color:#ccc;
  text-decoration:none;
}

.mobile-cta{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  display:flex;
  z-index:999;
}

.mobile-cta a{
  flex:1;
  text-align:center;
  background:var(--gold);
  color:#111;
  padding:16px;
  text-decoration:none;
  font-weight:600;
}

@media(max-width:768px){

  .section-title{
    font-size:2.2rem;
  }

  .contact-box{
    padding:30px;
  }

  body{
    padding-bottom:70px;
  }

}