body{
    margin:0;
    background:#0a0a0a;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#111;
    border-bottom:1px solid #d6a84f;
    padding:18px 0;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#d6a84f;
    font-size:28px;
    font-weight:bold;
}

.menu{
    display:flex;
    gap:22px;
}

.menu a:hover{
    color:#d6a84f;
}

.hero{
    min-height:600px;
    display:flex;
    align-items:center;
    text-align:center;
    background:#050505;
}

.hero h1{
    color:#d6a84f;
    font-size:52px;
}

.hero p{
    font-size:20px;
    max-width:800px;
    margin:20px auto;
}

.btn{
    display:inline-block;
    padding:14px 24px;
    border-radius:8px;
    font-weight:bold;
    margin:6px;
}

.btn-gold{
    background:#d6a84f;
    color:#111;
}

.btn-dark{
    background:#222;
    color:#fff;
    border:1px solid #333;
}

.section{
    padding:70px 0;
}

.section-title{
    text-align:center;
    color:#d6a84f;
    font-size:38px;
    margin-bottom:40px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.card{
    background:#151515;
    border:1px solid #2a2a2a;
    border-radius:14px;
    overflow:hidden;
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
    background:#222;
}

.card-content{
    padding:22px;
}

.card h3{
    color:#d6a84f;
}

footer{
    background:#111;
    border-top:1px solid #d6a84f;
    padding:35px 0;
    text-align:center;
    color:#aaa;
}

@media(max-width:768px){
    .topbar{
        flex-direction:column;
        gap:12px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:36px;
    }

    .hero{
        min-height:500px;
    }
}