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

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:#fff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#111;
    border-bottom:1px solid rgba(212,175,55,.2);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo h2{
    color:#d4af37;
    font-family:'Playfair Display',serif;
}

.logo span{
    font-size:12px;
    color:#aaa;
}

nav a{
    text-decoration:none;
    color:#fff;
    margin-left:25px;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

/* Hero */

.hero{
    height:85vh;
    background:url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?w=1600') center center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

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

.hero-content{
    position:relative;
    text-align:center;
    max-width:700px;
    z-index:2;
}

.hero-content h1{
    font-size:55px;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

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

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:14px 30px;
    border-radius:5px;
    font-weight:600;
}

.btn-primary{
    background:#d4af37;
    color:#111;
}

.btn-secondary{
    border:1px solid #d4af37;
    color:#d4af37;
}

/* Sections */

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    color:#d4af37;
    font-family:'Playfair Display',serif;
    font-size:36px;
}

.about-text{
    max-width:800px;
    margin:auto;
    text-align:center;
    color:#ccc;
}

.dark-section{
    background:#151515;
}

/* Categories */

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

.card{
    background:#1d1d1d;
    border:1px solid rgba(212,175,55,.2);
    padding:30px;
    text-align:center;
    border-radius:10px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
}

/* Features */

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

.feature{
    background:#1b1b1b;
    padding:20px;
    border-left:4px solid #d4af37;
}

/* Products */

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

.product-card{
    background:#1a1a1a;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
}

.product-card img{
    width:100%;
    display:block;
}

.product-card h3{
    margin-top:15px;
}

.product-card p{
    color:#d4af37;
    margin:10px 0 20px;
}

/* Contact */

.contact-box{
    max-width:600px;
    margin:auto;
    background:#1a1a1a;
    padding:30px;
    border-radius:10px;
}

.contact-box p{
    margin-bottom:10px;
}

/* Footer */

footer{
    background:#111;
    border-top:1px solid rgba(212,175,55,.2);
    padding:40px 0;
    text-align:center;
}

footer h3{
    color:#d4af37;
    margin-bottom:10px;
}

.footer-links{
    margin:20px 0;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    margin:0 10px;
}

.footer-links a:hover{
    color:#d4af37;
}

.copyright{
    color:#777;
}

/* Responsive */

@media(max-width:768px){

    .nav{
        flex-direction:column;
        gap:15px;
    }

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

    .hero-buttons{
        flex-direction:column;
    }

}