*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Cinzel', serif;
    background:#120907;
    color:#d4a15f;
    overflow-x:hidden;
}

/* NAVBAR */

nav{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(10,5,3,0.95);
    border-bottom:1px solid rgba(212,161,95,0.2);
}

.nav-container{
    width:90%;
    margin:auto;
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:32px;
    font-weight:700;
    letter-spacing:3px;
}

.logo span{
    color:#fff3d2;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#d4a15f;
    letter-spacing:2px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#fff3d2;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 8% 60px;
    gap:60px;
    flex-wrap:wrap;

    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f?q=80&w=1200&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.hero-text{
    flex:1;
    min-width:300px;
}

.hero-text h1{
    font-size:75px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text p{
    color:#d6c3a5;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.tag{
    font-size:18px;
    letter-spacing:4px;
    margin-bottom:15px;
    color:#fff;
}

.btn{
    display:inline-block;
    padding:16px 38px;
    border:2px solid #d4a15f;
    text-decoration:none;
    color:#d4a15f;
    transition:0.4s;
}

.btn:hover{
    background:#d4a15f;
    color:#120907;
}

.hero-image img{
    width:380px;
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-18px);}
    100%{transform:translateY(0px);}
}

/* SECTION */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:52px;
    margin-bottom:15px;
}

.section-title p{
    color:#d2b48c;
}

/* PRODUCTS */

.products{
    background:#1a0f0b;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.product-card{
    background:#24140f;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.product-content{
    padding:30px;
}

.product-content h3{
    margin-bottom:15px;
}

.about{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
    background:#120907;
}

.about-video{
    flex:1;
    min-width:320px;
}

.about-video video{
    width:100%;
    max-width:500px;
    border-radius:20px;
    border:2px solid rgba(212,161,95,0.3);
    box-shadow:0 0 30px rgba(212,161,95,0.15);
}

.about-text{
    flex:1;
    min-width:300px;
}

.about-text h2{
    font-size:55px;
    margin-bottom:25px;
    color:#d4a15f;
}

.about-text p{
    color:#d6c3a5;
    line-height:2;
    margin-bottom:25px;
    font-size:17px;
}
/* CONTACT */

.contact{
    background:#1a0f0b;
    text-align:center;
}

.contact-box{
    max-width:700px;
    margin:auto;
    background:#24140f;
    padding:50px;
    border-radius:20px;
}

/* FOOTER */

footer{
    background:#090403;
    text-align:center;
    padding:30px;
    color:#a97b45;
}

/* MOBILE */

@media(max-width:900px){

.menu-btn{
    display:block;
}

.nav-links{
    position:absolute;
    top:80px;
    left:-100%;
    width:100%;
    background:#120907;
    flex-direction:column;
    text-align:center;
    padding:30px 0;
    transition:0.4s;
}

.nav-links.active{
    left:0;
}

.hero-text h1{
    font-size:50px;
}

.section-title h2{
    font-size:38px;
}

.about-text h2{
    font-size:42px;
}

}