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

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#050505;
  color:#f5f5f5;
  line-height:1.6;
}

.hero{
  position:relative;
  height:100vh;
  background:url('assets/hero-bg.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}

.hero-content{
  position:relative;
  z-index:2;
  padding:20px;
}

.logo{
  width:220px;
  max-width:70vw;
  margin-bottom:22px;
  filter:drop-shadow(0 0 18px rgba(212,175,55,.35));
}

h1{
  font-size:3rem;
  letter-spacing:4px;
  color:#d4af37;
  margin-bottom:12px;
}

.hero p{
  font-size:1.2rem;
  color:#dddddd;
  margin-bottom:28px;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  background:#d4af37;
  color:#111;
  text-decoration:none;
  border-radius:999px;
  font-weight:bold;
  transition:.3s;
}

.btn:hover{
  background:#f2cd58;
  transform:translateY(-2px);
}

.container{
  width:min(1100px,92%);
  margin:auto;
  padding:80px 0;
}

section h2{
  text-align:center;
  font-size:2.2rem;
  color:#d4af37;
  margin-bottom:26px;
}

.about p{
  max-width:760px;
  margin:auto;
  text-align:center;
  color:#d9d9d9;
  font-size:1.08rem;
}

.artist-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.artist-card{
  background:#111;
  border:1px solid rgba(212,175,55,.22);
  padding:28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}

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

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.service-card{
  background:#0f0f10;
  border:1px solid rgba(212,175,55,.22);
  padding:22px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
}

.contact{
  background:#0a0a0a;
  text-align:center;
}

.contact p{
  color:#dddddd;
  margin:10px 0;
}

footer{
  background:#000;
  text-align:center;
  padding:22px;
  color:#888;
  font-size:.92rem;
}

@media (max-width:768px){
  h1{
    font-size:2.2rem;
  }

  .hero p{
    font-size:1rem;
  }

  section h2{
    font-size:1.8rem;
  }
}
