/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:30px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(10px);
    z-index:1000;
}   

.logo{
    font-size:28px;
    font-weight:900;
    letter-spacing:4px;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:15px;
    letter-spacing:2px;
    transition:.3s;
}

.nav-links a:hover{
    color:#5f8f6f;
}

/* HERO */

.hero{
    height:100vh;
    width:100%;
    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    z-index:2;
    max-width:700px;
    padding:20px;
    transform:translateY(-40px);
}

.hero h1{
    font-size:82px;
    font-weight:900;
    letter-spacing:6px;
    line-height:1.1;
    text-shadow:0 5px 25px rgba(0,0,0,.5);
}

.hero p{
    font-size:22px;
    color:#dddddd;
    margin-bottom:40px;
}

.btn{

    display:inline-block;

    padding:18px 42px;

    border:1px solid white;

    color:white;

    text-decoration:none;

    letter-spacing:3px;

    transition:.35s;
}

.btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 15px 35px rgba(255,255,255,.2);
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
    font-size:48px;
    letter-spacing:4px;
}

.hero p{
    font-size:18px;
}

.nav-links{
    display:none;
}

.logo{
    font-size:22px;
}

}

.collection{
    padding:100px 8%;
    background:#111;
    text-align:center;
}

.collection h2{
    font-size:42px;
    margin-bottom:60px;
    letter-spacing:2px;
}

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

.card{
    background:#1a1a1a;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

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

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

.card h3{
    margin-top:20px;
    font-size:24px;
}

.card p{
    padding:20px;
    color:#bdbdbd;
}