/* ==========================================================================
   WET BANDITS - THEME OVERRIDES & LANDING PAGE STYLING
   ========================================================================== */

/* --- GLOBALE STRUCTUUR & VERTICAAL SCROLLEN --- */
html body, 
html body #page, 
html body #content, 
html body .wp-site-blocks, 
html body .entry-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ffffff;
}

/* --- 1. VERBERG DE DUBBELE PAGINATITEL & FOOTER TAGLINE --- */
html body .page-header, 
html body .entry-header,
html body h1.entry-title,
html body footer .site-description,
html body footer .site-tagline {
    display: none !important;
}

/* --- 2. THEME HEADER OVERRIDE --- */
html body header.site-header,
html body .site-header,
html body .wp-block-template-part header {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
    padding: 80px 0 60px 0;
    background-color: #f0ede9;
    border: none;
    box-shadow: none;
}

html body .site-header .header-inner,
html body .header-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
    display: block;
    text-align: center;
    box-sizing: border-box;
    background: transparent;
}

html body .site-header .site-branding,
html body .site-branding {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
}

html body .site-header .site-title,
html body .site-header h1,
html body .site-title,
html body .site-header h1 a,
html body .site-header .wp-block-site-title a,
html body header.site-header .site-title a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 7.5vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
    margin: 0 0 25px 0;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    width: 100%;
}

html body .site-header p,
html body .site-description,
html body .site-tagline,
html body .site-header .site-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555555;
    max-width: 750px;
    margin: 0 auto !important;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: block;
    text-align: center;
    width: 100%;
}

/* --- WET BANDITS LANDING PAGE BODY & CONTAINER --- */
.wb-landing-body {
    background-color: #ffffff;
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 80px;
}

.wb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- LANDING PAGE: 3 KOLOMMEN GRID --- */
.wb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding-top: 10px;
}

.wb-card {
    background: #ffffff;
    border: 3px solid #000000;
    box-shadow: 10px 10px 0px #000000;
    display: flex;
    flex-direction: column;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.wb-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px #000000;
}

.wb-card-image-box {
    border-bottom: 3px solid #000000;
    overflow: hidden;
    height: 240px;
    background: #000000;
}

.wb-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.wb-card:hover .wb-card-image-box img {
    filter: grayscale(0%);
}

.wb-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wb-card-content h2 {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

.wb-card-content p {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.safelight-badge {
    background: #ff0000;
    color: #ffffff;
    padding: 4px 8px;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    align-self: flex-start;
}

/* --- LANDING PAGE: QUICK LINKS SECTIE --- */
.wb-quick-section {
    border-top: 6px double #000000;
    padding-top: 60px;
}

.wb-quick-section h3 {
    font-family: 'Courier New', monospace;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.wb-split-row {
    display: flex;
    gap: 40px;
}

.wb-split-block {
    width: 50%;
    border: 3px solid #000000;
    padding: 40px;
    background: #ffffff;
    box-shadow: 8px 8px 0px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wb-split-block h4 {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

.wb-split-block p {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* --- LANDING PAGE: BUTTONS --- */
.wb-landing-body .wb-btn {
    display: block;
    text-align: center;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}

.wb-landing-body .wb-split-block .wb-btn {
    width: auto;
    min-width: 200px;
}

.wb-landing-body .wb-btn:hover {
    background: #333333;
    color: #ffffff;
    text-decoration: none;
}

/* --- RESPONSIVE OPTIMALISATIE --- */
@media (max-width: 768px) {
    html body header.site-header,
    html body .site-header { 
        padding: 40px 0 30px 0; 
    }
    html body .site-header .site-title,
    html body .site-header h1, 
    html body .site-title, 
    html body .site-header h1 a { 
        font-size: 12vw; 
        margin-bottom: 15px; 
    }
    html body .site-header p, 
    html body .site-description { 
        font-size: 1rem; 
    }
    .wb-services-grid { 
        grid-template-columns: 1fr; 
    }
    .wb-split-row { 
        flex-direction: column; 
        gap: 30px; 
    }
    .wb-split-block { 
        width: 100%; 
    }
}