/* --- Desktop basisinstellingen voor de logo-container --- */
.partner-logos-inline {
    display: flex;
    align-items: center;      /* Lijnt logo's en splitter verticaal mooi uit */
    justify-content: flex-start; /* Of 'center' als je ze op desktop ook in het midden wilt */
    gap: 15px;                /* Ruimte tussen logo's en de splitter */
    margin-top: 20px;         /* Optioneel: geeft wat ademruimte aan de bovenkant */
}

/* --- Mobiele styling (Dwingt de logo's onder elkaar) --- */
@media screen and (max-width: 768px) {
    
    .partner-logos-inline {
        display: flex !important;
        flex-direction: column !important; /* Forceert onder elkaar */
        align-items: center !important;    /* Forceert centrering */
        justify-content: center !important;
        gap: 20px !important;              /* Ruimte tussen de twee logo's */
        width: 100% !important;
    }

    .partner-placeholder, 
    .partner-placeholder2 {
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .partner-placeholder img,
    .partner-placeholder2 img {
        max-width: 180px !important; /* Voorkomt dat logo's op mobiel reusachtig worden */
        height: auto !important;
        display: inline-block !important;
    }

    .partner-splitter {
        display: none !important; /* Verbergt de splitter gegarandeerd */
    }
}


/* Algemene Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

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

/* Header & Navigatie */
.navbar {
    border-bottom: 2px solid #e0e0e0;
    padding: 15px 0;
    background: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
	
}

.logo-main {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    color: #000;

	}

.logo-sub {
    font-size: 11px;
    color: #23297a;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-start {
    background-color: #23297a;
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-start:hover {
    background-color: #4C81ED;
}

/* Hero Sectie */
.hero-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.hero-text .red-text {
    color: #23297a;
}

.hero-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.hero-text h3 {
    font-size: 16px;
    margin: 25px 0 10px 0;
    color: #000;
}

.partner-logos-inline {
    display: flex;
    gap: 20px;
    margin-top: 65px;
	top: 0px;
    align-items: center;
}

.partner-placeholder {
    font-weight: bold;
    color: #ccc;
	height: auto;
	position: absolute;
	font-size: 16px;
	margin-top: 20px;
	
		
	
}

.partner-placeholder2 {
    font-weight: bold;
    color: #ccc;
	height: auto;
	font-size: 16px;
	margin-left: 300px;

		
		
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}

/* Winkels Sectie (Onderkant) */
.shops-section {
    background-color: #f7f9fa;
    padding: 60px 0;
    text-align: center;
}

.section-subtitle {
    color: #23297a;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

/* Responsive Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-logo {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.logo-paradigit { color: #2e3192; }
.logo-megekko { color: #8cc63f; }
.logo-campus { color: #00aeef; }
.logo-laptop { color: #000000; border-bottom: 2px solid #000; display: inline-block; width: fit-content; }

.card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Mobiel & Tablet Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .partner-logos-inline {
        justify-content: center;
    }
    
    .hero-image {
        order: -1; /* Plaatst afbeelding boven tekst op mobiel */
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* FAQ Sectie Container */
.faq-section {
    max-width: 80%;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Ruimte tussen de FAQ items */
}

/* Het inklapbare item zelf */
.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease;
}

/* Subtiele schaduw als je eroverheen hovert */
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* De vraag (klikbare gedeelte) */
.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Verbergt het standaard browser-pijltje */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

/* Alternatieve manier om het browser-pijltje in Safari te verbergen */
.faq-question::-webkit-details-marker {
    display: none;
}

/* Ons eigen custom plusje/icoontje toevoegen */
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #23297a;
    transition: transform 0.2s ease;
}

/* Als de FAQ openstaat, verandert het plusje in een min/rotatie */
details[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

/* Styling voor als het item openstaat */
details[open] {
    border-color: #23297a; /* rood randje wanneer geopend */
}

/* Het antwoord (binnentext) */
.faq-answer {
    padding: 0 20px 18px 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0; /* Subtiel scheidingslijntje */
    animation: fadeIn 0.3s ease-out; /* Maakt het openen vloeiender */
}

.faq-answer p {
    margin: 0;
    padding-top: 15px;
}

/* Simpele animatie voor het openschuiven */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-footer {
    background-color: #23297a; /* De gevraagde rode achtergrond */
    color: #ffffff;            /* Witte letters */
    padding: 40px 20px;
    border-top: 4px solid #23297a; /* Subtiel donkerblauw accentrandje aan de bovenkant */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;           /* Zorgt ervoor dat vlakken kunnen omvouwen op mobiel */
    justify-content: space-between; /* Zorgt voor maximale ruimte tussen links en rechts */
    gap: 30px;                 /* Ruimte tussen de vlakken als ze onder elkaar springen */
}

/* Standaard styling voor beide vlakken */
.footer-section {
    flex: 1;
    min-width: 280px;          /* Voorkomt dat de vlakken op tablets te smal worden */
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* Elegant wit lijntje onder de kopjes */
    padding-bottom: 8px;
}

.footer-section p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9); /* Iets zachter wit voor betere leesbaarheid */
}

.copyright {
    margin-top: 25px;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Rechter vlak: Links styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease, padding-left: 0.2s ease;
    display: inline-block;
}

/* Hover effect voor de links */
.footer-links a:hover {
    opacity: 0.8;
    padding-left: 5px; /* Schuift een heel klein beetje op bij hoveren */
}

/* --- RESPONSIVE / MOBIEL STYLING --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Dwingt de twee vlakken recht onder elkaar */
        text-align: center;     /* Centreert alle tekst netjes op mobiel */
    }

    .footer-section h3 {
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        display: inline-block;  /* Zorgt dat het lijntje onder de kop niet over de hele breedte loopt */
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* --- Mobiele Reset & Fix (Helemaal onderaan je style.css plaatsen) --- */
@media screen and (max-width: 768px) {
    
    /* 1. Reset de hoofdcontainer */
    .partner-logos-inline {
        display: flex !important;
        flex-direction: column !important; /* Zet ze onder elkaar */
        align-items: center !important;    /* Centreer ze horizontaal */
        justify-content: center !important;
        gap: 25px !important;              /* Maakt fysieke ruimte tussen de logo's */
        position: relative !important;     /* Reset eventuele absolute posities */
        height: auto !important;           /* Zorg dat de container meegroeit */
        min-height: 1px !important;
        float: none !important;            /* Verwijder eventuele floats */
    }

    /* 2. Reset de spans (de placeholders zelf) */
    .partner-placeholder, 
    .partner-placeholder2 {
        display: block !important;
        position: relative !important;     /* Forceert ze terug in de normale tekststroom */
        top: auto !important;              /* Reset eventuele handmatige verschuivingen */
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        float: none !important;            /* Reset floats */
        width: 100% !important;            /* Neemt de volledige breedte om te centreren */
        text-align: center !important;
        height: auto !important;           /* Zorg dat ze niet platgedrukt worden */
    }

    /* 3. Zorg dat de links en afbeeldingen netjes meedoen */
    .partner-placeholder a,
    .partner-placeholder2 a {
        display: inline-block !important;
        position: relative !important;
    }

    .partner-placeholder img,
    .partner-placeholder2 img {
        display: block !important;
        margin: 0 auto !important;         /* Centreert het plaatje binnen de link */
        max-width: 180px !important;       /* Geeft ze een mooi mobiel formaat */
        height: auto !important;
        position: relative !important;
    }

    /* 4. Verberg de splitter */
    .partner-splitter {
        display: none !important;
    }
}
