*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  color:#222;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:80px 0;
}

.bg-light{
  background:#f5f5f5;
}

.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(8px);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  color:#fff;
  font-size:24px;
  font-weight:bold;
}

nav{
  display:flex;
  gap:20px;
}

nav a{
  color:#fff;
  text-decoration:none;
}

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero-image{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:20px;
}

.hero-content h1{
  font-size:56px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:22px;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  background:#c8a96b;
  color:#fff;
  padding:15px 30px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.gallery-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:16px;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:.3s;
}

.gallery-item:hover img{
  transform:scale(1.05);
}

.cards{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.card{
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:center;
}

.cta{
  background:#111;
  color:#fff;
  text-align:center;
  padding:80px 0;
}

.footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:50px 0;
}

#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
}

#close-lightbox{
  position:absolute;
  top:20px;
  right:30px;
  color:#fff;
  font-size:48px;
  cursor:pointer;
}

@media(max-width:768px){

  nav{
    display:none;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:18px;
  }

}