/* ===========================
   Algemene instellingen
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#151515;
    color:white;
}

/* ===========================
   Header
=========================== */

header{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    background:#101010;
    border-bottom:2px solid #39ff14;
}

.logo{
    font-size:34px;
    font-weight:bold;
    color:#39ff14;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:.25s;
}

nav a:hover{
    color:#39ff14;
}

/* ===========================
   Homepage Hero
=========================== */

.hero{
    text-align:center;
    padding:120px 20px;
    background:#202020;
}

.hero h2{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;

    font-size:22px;
    line-height:1.6;

    color:#cfcfcf;
}

.button{
    display:inline-block;

    margin-top:45px;
    padding:18px 45px;

    background:#39ff14;
    color:#111;

    text-decoration:none;
    font-weight:bold;
    font-size:18px;

    border-radius:10px;

    box-shadow:0 0 20px rgba(57,255,20,.45);

    transition:.25s;
}

.button:hover{
    background:#66ff44;
    transform:translateY(-4px);
    box-shadow:0 0 30px rgba(57,255,20,.75);
}

/* ===========================
   Models pagina
=========================== */

.models-body{
    background:#f5f5f5;
}

.models-page{
    max-width:1400px;

    margin:auto;
    padding:70px 50px;
}

.models-page h2{
    color:#222;
    font-size:48px;
    margin-bottom:10px;
}

.subtitle{
    color:#666;
    font-size:18px;
    margin-bottom:50px;
}

/* ===========================
   Product Grid
=========================== */

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* ===========================
   Product Card
=========================== */

.product-card{

    display:block;

    background:white;

    text-decoration:none;

    border-radius:18px;

    overflow:hidden;

    transition:.25s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(57,255,20,.25);
}

/* ===========================
   Product Image
=========================== */

.product-card img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:contain;

    padding:35px;

    display:block;

    background:
    radial-gradient(
    circle,
    rgba(57,255,20,.18) 0%,
    rgba(57,255,20,.08) 35%,
    #f5f5f5 80%);
}

/* ===========================
   Product Titel
=========================== */

.product-card h3{

    color:#222;

    text-align:center;

    padding:20px;

    font-size:24px;

    font-weight:600;
}

.product-card:hover h3{
    color:#39ff14;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:1000px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    header{

        flex-direction:column;
        gap:20px;

    }

    .product-grid{

        grid-template-columns:1fr;

    }

}