*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  background:#0b0b0b;
  color:#f5f5f5;
  line-height:1.6;
}

/* Header */
header{
  background:rgba(0,0,0,0.8);
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:100;
}

.logo{
  font-size:20px;
  font-weight:bold;
  color:#d4af37;
}
.logo span{ color:#fff; }

nav a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
  font-size:14px;
}

/* Hero */
.hero{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  padding:60px 20px;
  background:radial-gradient(circle at top, #2a2200, #000);
}

.hero-content{
  flex:1;
  animation:fadeUp 1.2s ease;
}

.hero h1{
  font-size:36px;
  color:#d4af37;
}

.hero p{
  margin:10px 0 20px;
  color:#ddd;
}

.hero-image{
  flex:1;
  text-align:center;
  animation:fadeIn 2s ease;
}

.hero-image img{
  width:100%;
  max-width:420px;
  border-radius:16px;
  box-shadow:0 0 30px rgba(212,175,55,0.4);
}

/* Buttons */
.btn{
  background:#d4af37;
  color:#000;
  padding:12px 22px;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
}

.btn.dark{
  background:#000;
  color:#d4af37;
  border:1px solid #d4af37;
}

/* Sections */
.section{
  padding:70px 20px;
  text-align:center;
}

.section h2{
  color:#d4af37;
  margin-bottom:15px;
}

.section.dark{
  background:#111;
}

.section.glow{
  background:linear-gradient(to bottom,#0f0f0f,#000);
}

/* Cards */
.cards{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.card{
  background:#111;
  padding:25px;
  width:220px;
  border-radius:14px;
  box-shadow:0 0 15px rgba(212,175,55,0.25);
  color:#d4af37;
  font-weight:bold;
}

/* Image Section */
.image-section{
  position:relative;
  padding:0;
}

.image-section img{
  width:100%;
  height:420px;
  object-fit:cover;
}

.image-section .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:20px;
}

/* Footer */
footer{
  background:#000;
  padding:15px;
  text-align:center;
  color:#888;
}

/* WhatsApp */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  font-size:24px;
  padding:14px;
  border-radius:50%;
  text-decoration:none;
}

/* Animations */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

/* Mobile */
@media(max-width:768px){
  .hero h1{font-size:26px;}
  .hero{flex-direction:column;}
}
