:root{
    --gold:#d4af37;
    --brown:#3b2a1f;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#fff;

    background:
    linear-gradient(rgba(59,42,31,0.92),rgba(59,42,31,0.96)),
    url('assets/evanwood.png');

    background-size:cover,260px;
    background-repeat:no-repeat,repeat;
    background-attachment:fixed;

    overflow-x:hidden;
}

/* HEADER */

header{
    position:fixed;
    width:100%;
    padding:8px;
    display:flex;
    justify-content:center;
    z-index:1000;

    background:rgba(59,42,31,0.45);
    backdrop-filter:blur(8px);
}

.logo-wrap{
    width:90px;
    height:90px;

    border-radius:50%;
    border:2px solid var(--gold);

    overflow:hidden;

    box-shadow:0 0 20px rgba(212,175,55,0.35);

    background:#2d2018;
}

.logo-wrap img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;

    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}

.overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;
}

.overlay h1{
    font-family:'Playfair Display',serif;

    font-size:70px;
    margin-bottom:15px;

    text-shadow:0 5px 15px rgba(0,0,0,0.5);
}

.overlay p{
    font-size:22px;

    text-shadow:0 5px 15px rgba(0,0,0,0.5);
}

/* SECTIONS */

.section{
    padding:90px 10%;
}

.section h2{
    font-family:'Playfair Display',serif;

    color:var(--gold);

    margin-bottom:35px;

    font-size:40px;
}

/* COLLECTIONS */

.cards{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.card{
    position:relative;

    height:300px;

    border-radius:18px;

    overflow:hidden;

    border:1px solid var(--gold);

    transition:0.4s;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(6px);
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(212,175,55,0.35);
}

.card img,
.card video{
    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    object-fit:cover;
    object-position:center;
}

.card::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        transparent
    );
}

.card span{
    position:absolute;

    bottom:20px;
    left:20px;

    background:rgba(0,0,0,0.55);

    padding:10px 18px;

    border-radius:10px;

    font-weight:700;

    z-index:2;
}

/* PRODUCTS */

/* PRODUCTS */

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.product{
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.45);
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(8px);
    transition:0.4s;
    display:flex;
    flex-direction:column;
}

.product:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(212,175,55,0.35);
}

.product-img{
    height:350px;
    background:#2b1f17;
    padding:15px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.product-img img{
    width:100%;
    height:100%;

    object-fit:contain;

    border-radius:12px;

    transition:0.5s;
}

.product:hover .product-img img{
    transform:scale(1.03);
}

.product-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    margin-bottom:10px;
    font-size:22px;
    font-weight:700;
}

.product-content .desc{
    line-height:1.6;
    margin-bottom:18px;
    opacity:0.95;
}

.price{
    color:var(--gold);
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.product-content button{
    margin-top:auto;
}

button{
    width:100%;

    padding:14px;

    border:none;
    border-radius:10px;

    background:var(--gold);
    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

button:hover{
    opacity:0.9;

    transform:translateY(-2px);
}

/* AUTHOR */

.author{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;
}

.author-img{
    height:450px;

    border-radius:18px;

    overflow:hidden;
}

.author-img img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}

.author-content{
    display:flex;

    flex-direction:column;

    justify-content:center;
}

.author-content p{
    font-size:18px;

    line-height:1.8;

    margin-bottom:20px;
}

.video video{
    width:100%;

    border-radius:18px;
}

/* BLOG */

.blogs{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:25px;
}

.blog-card{
    border-radius:18px;

    overflow:hidden;

    border:1px solid var(--gold);

    background:rgba(255,255,255,0.06);

    backdrop-filter:blur(8px);

    transition:0.4s;
}

.blog-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(212,175,55,0.35);
}

.blog-img{
    height:250px;

    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}

.blog-card h3{
    padding:20px 20px 10px;
}

.blog-card p{
    padding:0 20px 20px;

    line-height:1.7;
}

/* FOOTER */

footer{
    padding:50px 10%;

    background:rgba(0,0,0,0.45);
}

.footer-content{
    display:flex;

    justify-content:space-between;

    gap:30px;
}

footer h4{
    color:var(--gold);

    margin-bottom:12px;
}

/* MOBILE */

@media(max-width:900px){

    .overlay h1{
        font-size:42px;
    }

    .overlay p{
        font-size:18px;
    }

    .author{
        grid-template-columns:1fr;
    }

    .footer-content{
        flex-direction:column;
    }
}

@media(max-width:600px){

    .section{
        padding:70px 6%;
    }

    .overlay h1{
        font-size:32px;
    }

    .section h2{
        font-size:30px;
    }

    .product-img{
        height:280px;
    }

    .author-img{
        height:320px;
    }
}