*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#0d0d0d;
  color:white;
  line-height:1.6;
}

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
  url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop') center/cover;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 60px;
}

nav h1{
  color:#d4af37;
}

.hero-content{
  height:80%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content h2{
  font-size:60px;
  max-width:900px;
}

.hero-content p{
  margin-top:20px;
  font-size:22px;
  color:#ccc;
}

.btn{
  margin-top:25px;
  background:#d4af37;
  color:black;
  padding:14px 28px;
  text-decoration:none;
  border-radius:10px;
  font-weight:bold;
}

.services{
  padding:80px 40px;
  text-align:center;
}

.services h2{
  font-size:40px;
  margin-bottom:50px;
  color:#d4af37;
}

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

.card{
  background:#1b1b1b;
  padding:30px;
  border-radius:15px;
}

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

.about{
  padding:80px 40px;
  text-align:center;
  background:#141414;
}

.about h2{
  color:#d4af37;
  margin-bottom:25px;
}

.contact{
  padding:80px 40px;
  text-align:center;
}

.contact h2{
  color:#d4af37;
  margin-bottom:20px;
}

footer{
  text-align:center;
  padding:20px;
  background:black;
  color:#777;
}

@media(max-width:768px){
  nav{
    padding:20px;
  }

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