@import url("/assets/css/font-awesome.min.css");

/* --- 1. BASIS INSTELLINGEN --- */
:root {
    --primary-color: #a2c2e1; 
    --text-color: #333;
    --white: #ffffff;
    --border-color: #eaeaea;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER & NAVIGATIE --- */
#main-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.5rem; font-weight: 700; text-decoration: none; color: #000; }
#main-nav ul { list-style: none; display: flex; gap: 25px; }
#main-nav a { text-decoration: none; color: #555; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s ease; }
#main-nav a:hover { color: var(--primary-color); }

/* --- 3. HERO BANNER --- */
#hero-banner { position: relative; width: 100%; line-height: 0; background-color: #fff; }
.hero-img { width: 100%; height: auto; display: block; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding-top: 300px; z-index: 5; }
.btn-scroll { background: var(--primary-color); color: white; padding: 12px 35px; text-decoration: none; display: inline-block; border-radius: 50px; font-weight: bold; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0,0,0,0.1); line-height: 1.6; border: none; cursor: pointer; transition: 0.3s ease; }
.btn-scroll:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* --- 4. COLLECTIE INTRO --- */
.collection-intro { padding: 60px 0 20px 0; text-align: center; background-color: #fff; }
.collection-intro h1 { font-size: 2.2rem; color: #1a1a1a; margin-bottom: 10px; }
.collection-intro p { font-size: 1.1rem; color: #888; font-style: italic; }

/* --- 5. CATEGORY CARDS --- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: -50px; position: relative; z-index: 10; }
.cat-card { background: var(--white); text-align: center; text-decoration: none; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 20px; border-radius: 10px; transition: 0.3s; }
.cat-card:hover { transform: translateY(-10px); }
.cat-img { height: 100px; background-size: contain; background-repeat: no-repeat; background-position: center; margin-bottom: 10px; }
.cat-card span { font-weight: bold; color: #333; text-transform: uppercase; }

/* --- 6. PRODUCT GRID --- */
.product-section { padding: 80px 0; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: var(--white); border: 1px solid var(--border-color); padding: 15px; border-radius: 5px; }
.product-image { background: #fdfdfd; height: 350px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 15px; }
.product-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* --- 7. MERKENOVERZICHT & SLIDER --- */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; padding: 40px 0; }
.brand-card { border: 1px solid #eee; padding: 20px; text-align: center; text-decoration: none; color: #333; height: 250px; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: space-between; transition: 0.3s; }
.brand-card:hover { border-color: var(--primary-color); }
.brand-logo-container { width: 100%; height: 150px; display: flex; align-items: center; justify-content: center; }
.brand-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
.view-label { font-size: 0.75rem; font-weight: bold; text-transform: uppercase; color: var(--primary-color); letter-spacing: 1px; }

.brands-slider-wrapper { padding: 60px 0; background-color: #fff; overflow: hidden; border-top: 1px solid #f0f0f0; }
.brands-track { display: flex; width: calc(250px * 18); animation: scroll 40s linear infinite; }
.brands-track img { width: 150px; height: 80px; object-fit: contain; margin: 0 40px; filter: grayscale(100%); opacity: 0.6; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 9)); } }

/* --- 8. FOOTER --- */
#main-footer { background-color: #fcfcfc; padding: 80px 0 40px 0; border-top: 1px solid #eee; color: #555; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-column h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: #000; margin-bottom: 25px; text-transform: uppercase; position: relative; }
.footer-column h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background-color: var(--primary-color); }
.footer-social-wrapper { display: flex; gap: 15px; margin-top: 20px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background-color: #f0f0f0; color: #333; text-decoration: none; font-size: 1.2rem; transition: 0.3s; }

/* --- 10. CONTACT PAGINA (NIEUW) --- */
.contact-wrapper {
    max-width: 800px;
    margin: 40px auto 100px auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.modern-form .form-group { margin-bottom: 25px; }
.modern-form label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; color: #333; letter-spacing: 1px; }

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(162, 194, 225, 0.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

.success-message {
    text-align: center;
    padding: 40px 0;
}

.success-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- 11. MOBIEL & IPAD --- */
.menu-toggle, .menu-close { display: none; }

@media screen and (max-width: 980px) {
    .btn-scroll, .hero-overlay { display: none !important; }
    #main-nav ul { display: none; }
    .menu-toggle { display: block !important; font-size: 28px !important; color: #333 !important; cursor: pointer; }
    #main-nav { display: block !important; position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background-color: #ffffff !important; z-index: 100000 !important; transition: right 0.3s ease; visibility: hidden; }
    #main-nav.active { right: 0 !important; visibility: visible !important; }
    .nav-links { display: flex !important; flex-direction: column !important; padding: 80px 0 0 0 !important; margin: 0 !important; list-style: none !important; }
    .nav-links li a { display: block !important; padding: 20px 25px !important; color: #333 !important; text-decoration: none !important; font-family: 'Montserrat', sans-serif !important; font-weight: 700 !important; font-size: 0.9rem !important; border-bottom: 1px solid #eee !important; background-color: #ffffff !important; }
    .menu-close { display: block !important; position: absolute; top: 20px; right: 20px; font-size: 28px !important; color: #000 !important; z-index: 100001 !important; }

    /* Formulier Mobiel */
    .contact-wrapper { padding: 30px 20px; margin: 20px auto 60px auto; border-radius: 0; box-shadow: none; border-left: none; border-right: none; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: -20px; padding: 0 10px; }
    .cat-card { padding: 10px 5px; }
    .cat-img { height: 50px; margin-bottom: 5px; }
    .cat-card span { font-size: 0.7rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}