/* ==========================
   RESET
========================== */

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

html{
    scroll-behavior:smooth;
}

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

/* ==========================
   CONTAINER
========================== */

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

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.88);
    backdrop-filter:blur(12px);
    z-index:1000;
}

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

header img{
    width:80px;
}

nav ul{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

nav a{
    font-size:16px;
}
}

nav a:hover{
    color:#d4af37;
}

/* ==========================
   HERO
========================== */

.hero{
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
                url("../images/hoodie.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay{
    display: none;
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
}

.hero h1{
    font-size: 82px;
    color: #d4af37;
    font-weight: 800;
}

.hero h2{
    margin-top: 15px;
    font-size: 34px;
    letter-spacing: 8px;
}

.hero p{
    margin: 35px 0;
    font-size: 22px;
    color: #ddd;
}

/* ==========================
   BUTTON
========================== */

.button{
    display:inline-block;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    padding:16px 40px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.button:hover{
    background:white;
    transform:translateY(-3px);
}/* ==========================
   INTRO
========================== */

.intro{
    padding:100px 0;
    text-align:center;
}

.intro h2{
    font-size:46px;
    color:#d4af37;
    margin-bottom:25px;
}

.intro p{
    max-width:850px;
    margin:auto;
    color:#cccccc;
    font-size:20px;
}

/* ==========================
   COLLECTIES
========================== */

{/* ==========================
   COLLECTIES
========================== */

.collections{
    padding:140px 8% 80px;
    background:#111;
    text-align:center;
}

.collections h2{
    font-size:46px;
    color:#d4af37;
    margin-bottom:60px;
}

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

.product{
    background:#1a1a1a;
    border:1px solid #333;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
}

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

.product img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:#111;
    padding:20px;
}

.product h3{
    color:#d4af37;
    margin:20px 0 10px;
}

.product p{
    color:#ccc;
    padding:0 20px 25px;
}}
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,0,0,.93),
        rgba(0,0,0,.90)
    );
    z-index:1;
}

}

/* ==========================
   WAAROM
========================== */

.why{
    padding:100px 0;
}

.why h2{
    text-align:center;
    color:#d4af37;
    font-size:46px;
    margin-bottom:60px;
}

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

.why-card{
    background:#181818;
    border:1px solid #333;
    border-radius:18px;
    padding:35px;
    transition:.3s;
}

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

.why-card h3{
    color:#d4af37;
    margin-bottom:15px;
}

.why-card p{
    color:#cccccc;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#000;
    padding:35px 0;
    text-align:center;
    color:#999;
    border-top:1px solid #222;
}

/* ==========================
   MOBIEL
========================== */

@media(max-width:900px){

    .hero h1{
        font-size:52px;
    }

    .hero h2{
        font-size:24px;
        letter-spacing:4px;
    }

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

    header .container{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }
}/* CONTACT */

.contact{
    padding:100px 0;
    background:#111;
    text-align:center;
}

.contact h2{
    color:#d4af37;
    font-size:46px;
    margin-bottom:20px;
}

.contact > .container > p{
    max-width:800px;
    margin:0 auto 50px;
    color:#ccc;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.contact-card{
    background:#1a1a1a;
    border:1px solid #333;
    border-radius:18px;
    padding:35px;
}

.contact-card h3{
    color:#d4af37;
    margin-bottom:15px;
}

.phone{
    color:#d4af37;
    font-size:22px;
    font-weight:700;
}

.contact-link{
    color:#d4af37;
    text-decoration:none;
    font-weight:700;
}

.contact-link:hover{
    color:#fff;
}/* ==========================
   PREMIUM FOOTER
========================== */

footer{
    background:#080808;
    margin-top:100px;
    border-top:1px solid #222;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding:70px 0;
}

.footer-logo{
    height:70px;
    margin-bottom:20px;
}

.footer-grid h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-grid a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

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

.footer-grid p{
    color:#bbb;
    margin-bottom:10px;
}

.copyright{
    text-align:center;
    padding:25px;
    border-top:1px solid #222;
    color:#777;
}

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}.contact .button{
    display: block;
    width: fit-content;
    margin: 50px auto 0;
}/* WhatsApp knop */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
    z-index:9999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
    box-shadow:0 10px 30px rgba(37,211,102,.5);
}/* WhatsApp knop */

.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
    z-index: 9999;
    transition: .3s;
}

.whatsapp img{
    width: 36px;
    height: 36px;
}

.whatsapp:hover{
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
}/* Floating Kings Button */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    align-items:center;
    text-decoration:none;
    z-index:9999;
}

.whatsapp-text{
    background:#111;
    color:white;
    padding:14px 18px;
    border-radius:50px;
    margin-right:12px;
    opacity:0;
    transform:translateX(15px);
    transition:.35s;
    white-space:nowrap;
    border:1px solid #d4af37;
    font-weight:600;
}

.whatsapp-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    background:#111;
    border:2px solid #d4af37;
    color:#d4af37;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    transition:.35s;
}

.whatsapp-btn:hover .whatsapp-text{
    opacity:1;
    transform:translateX(0);
}

.whatsapp-btn:hover .whatsapp-icon{
    background:#d4af37;
    color:#111;
    transform:scale(1.08);
}/* Kings at Work WhatsApp knop */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;
    text-decoration:none;
}

.kings-chat{
    position:relative;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#111;
    border:2px solid #d4af37;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.3s;
}

.kings-chat:hover{
    transform:scale(1.08);
    box-shadow:0 12px 35px rgba(212,175,55,.35);
}

.crown{
    font-size:34px;
    color:#d4af37;
}

.phone{
    position:absolute;
    right:-2px;
    bottom:-2px;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
    border:2px solid white;
}.footer-links{
    margin-top:15px;
}

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

.footer-links a:hover{
    color:#ffffff;
}.contact-form{
    max-width:700px;
    margin:50px auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px;
    border-radius:10px;
    border:1px solid #444;
    background:#1b1b1b;
    color:white;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;
    border:1px solid #d4af37;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    align-self:center;
}@media (max-width: 768px) {

.container{
    width:95%;
    margin:auto;
}

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

.hero h1{
    font-size:42px;
}

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

img{
    max-width:100%;
    height:auto;
}

.products{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
    padding:20px;
}

.product-card{
    width:100%;
}

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

.product-info{
    padding:15px;
}

.product-info h3{
    font-size:24px;
}

.product-info p{
    font-size:16px;
}

section{
    padding:40px 20px;
}

.container{
    width:100%;
    padding:0 20px;
    margin:auto;
}

}