
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#0d0d0d;
  color:white;
  line-height:1.7;
}

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),
  url('https://images.unsplash.com/photo-1542727365-19732a80dcfd?q=80&w=1400&auto=format&fit=crop') center/cover;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 10%;
  position:sticky;
}

.logo{
  font-size:28px;
  font-weight:700;
  letter-spacing:2px;
}

nav ul{
  list-style:none;
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}

nav a:hover{
  color:#d4af37;
}

.hero-content{
  text-align:center;
  margin-top:16%;
  padding:0 20px;
}

.hero-content h1{
  font-size:60px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:35px;
}

.btn{
  display:inline-block;
  padding:14px 35px;
  border-radius:50px;
  background:#d4af37;
  color:black;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.05);
}

.section{
  padding:90px 10%;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section h2{
  font-size:40px;
  margin-bottom:30px;
  text-align:center;
}

.section p{
  text-align:center;
}

.dark{
  background:#151515;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:50px;
}

.card{
  background:#1f1f1f;
  padding:35px;
  border-radius:20px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card h3{
  margin-bottom:15px;
  color:#d4af37;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:50px;
}

.gallery-item{
  background:#222;
  height:280px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  border:1px solid #333;
}

.cta{
  text-align:center;
  padding:90px 20px;
  background:#d4af37;
  color:black;
}

.cta h2{
  font-size:42px;
  margin-bottom:15px;
}

.contact-box{
  text-align:center;
  margin-top:30px;
}

footer{
  text-align:center;
  padding:25px;
  background:black;
  font-size:14px;
}

@media(max-width:768px){

  nav{
    flex-direction:column;
    gap:20px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content{
    margin-top:35%;
  }

}
