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

html{
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:#f5f5f5;
    font-family:'Inter',sans-serif;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?q=80&w=1800&auto=format&fit=crop') center/cover;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    position:sticky;
    top:0;
}

.logo{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:28px;
    font-weight:700;
    letter-spacing:2px;
}

.menu{
    display:flex;
    gap:25px;
}

.menu a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.menu a:hover{
    color:#d4af37;
}

.hero-content{
    max-width:800px;
    padding:120px 8%;
}

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:76px;
    line-height:1.05;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    color:#ddd;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.gold{
    background:#c79a2b;
    color:white;
}

.gold:hover{
    transform:translateY(-2px);
}

.dark{
    border:1px solid #999;
    color:white;
}

.section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-family:'Cinzel',serif;
    color:#d4af37;
}

.section-title p{
    margin-top:10px;
    color:#aaa;
}

.intro-grid,
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.stat-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:12px;
    text-align:center;
}

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

.card{
    background:#181818;
    border-radius:14px;
    overflow:hidden;
    transition:.3s;
}

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

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

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

.promo{
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.8)),
    url('https://images.unsplash.com/photo-1558030006-450675393462?q=80&w=1800&auto=format&fit=crop') center/cover;
    padding:120px 8%;
    text-align:center;
}

.promo-content span{
    color:#d4af37;
    letter-spacing:3px;
}

.promo-content h2{
    font-size:48px;
    margin:15px 0;
}

.promo-content h1{
    font-size:82px;
    color:#d4af37;
    margin-bottom:30px;
}

.dark-section{
    background:#141414;
}

.about-box{
    background:#1d1d1d;
    padding:40px;
    border-radius:16px;
}

.about-box h3{
    color:#d4af37;
    margin:15px 0;
}

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

.contact-card{
    background:#1a1a1a;
    padding:35px;
    border-radius:14px;
    text-align:center;
}

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

footer{
    background:#000;
    text-align:center;
    padding:50px 20px;
}

.footer-logo{
    font-family:'Cinzel',serif;
    color:#d4af37;
    font-size:30px;
    margin-bottom:15px;
}

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:16px 22px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

@media(max-width:900px){

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

.intro-grid,
.about-grid{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

.promo-content h1{
    font-size:56px;
}

}
