/* Educatie.io Landing Pages Styling */

/* Colors */
:root {
    --educatie-green: #35BA00;
    --educatie-orange: #FF7C00;
}

h2 {
    color: var(--educatie-green);
    margin-top: 1.5rem;
}

h3 {
    color: var(--educatie-orange);
    margin-top: 1.5rem;
}

/* Navbar Tweaks */
.navbar-educatie {
    background-color: white !important;
    border-bottom: 3px solid var(--educatie-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-educatie .navbar-brand {
    color: var(--educatie-green) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-educatie .nav-link {
    color: #444 !important;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-educatie .nav-link:hover {
    color: var(--educatie-orange) !important;
}

/* Landing Container */
.landing-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.logo-section {
    margin-bottom: 3rem;
}

.logo-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    max-width: 600px;
}

/* Action Cards */
.action-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.action-card.primary {
    border: 2px solid var(--educatie-green);
}

.action-card.secondary {
    border: 2px solid var(--educatie-orange);
}

.action-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--educatie-green);
}

.action-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.action-card .btn-primary {
    background-color: var(--educatie-green);
    border-color: var(--educatie-green);
}

.action-card .btn-outline-secondary {
    color: var(--educatie-orange);
    border-color: var(--educatie-orange);
}

.action-card .btn-outline-secondary:hover {
    background-color: var(--educatie-orange);
    color: white;
}

/* Footer Info */
.footer-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 700px;
}

.footer-info h3 {
    font-size: 1.3rem;
    color: var(--educatie-orange);
    margin-bottom: 1rem;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #555;
}

.footer-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.footer-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--educatie-green);
    font-weight: bold;
}


/* Let op! De css hieronder komt van buitenaf, maar moet nog in lijn gebracht worden met bovenstaande. */
/* Overzichtspagina Styling */

.over-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.over-header {
    text-align: center;
    margin-bottom: 3rem;
}

.over-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.over-header .lead {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 6px solid var(--educatie-green);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.info-card.alternate {
    border-top-color: var(--educatie-orange);
}

.info-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.info-card h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1.05rem;
}

.card-link {
    color: var(--educatie-green);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--educatie-orange);
}

.card-link:after {
    content: " →";
    margin-left: 5px;
    transition: transform 0.2s;
}

.card-link:hover:after {
    transform: translateX(5px);
}

.info-card.alternate .card-link {
    color: var(--educatie-orange);
}

.info-card.alternate .card-link:hover {
    color: var(--educatie-green);
}

.info-card ul {
    padding-left: 0;
    list-style: none;
}

.info-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.info-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--educatie-green);
    font-weight: bold;
}

.info-card.alternate ul li:before {
    color: var(--educatie-orange);
}

.full-width-card {
    grid-column: 1 / -1;
    background: #fdfdfd;
}

.sidenote {
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 1.2rem;
    margin-top: auto;
    font-size: 0.9rem;
    color: #777;
}

.sidenote strong {
    color: #2c3e50;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--educatie-green), #2ea300);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(53, 186, 0, 0.2);
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-section .btn {
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0.5rem;
}

.cta-section .btn-light {
    background-color: white !important;
    color: var(--educatie-green) !important;
    border: 2px solid white !important;
}

.cta-section .btn-light:hover {
    background-color: transparent !important;
    color: white !important;
}

.cta-section .btn-outline-light {
    border: 2px solid white !important;
    color: white !important;
    background-color: transparent !important;
}

.cta-section .btn-outline-light:hover {
    background-color: white !important;
    color: var(--educatie-green) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .over-header h1 { font-size: 2.2rem; }
    .grid-layout { grid-template-columns: 1fr; }
}

/* Container instellingen */
.over-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* HET GRID SYSTEEM */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Standaard mobiel: 1 kolom */
    gap: 2rem; /* Ruimte tussen de kaarten */
    margin-bottom: 4rem;
}

/* De Kaarten */
.offer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Zorgt dat ze even hoog lijken in een rij */
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

/* Specifiek stijltje voor de middelste of belangrijkste kaart */
.offer-card.highlight {
    border-color: #007bff; /* Of jouw accentkleur */
    background-color: #f8fbff;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.offer-card ul {
    padding-left: 1.2rem;
    margin-top: auto; /* Duwt de lijst netjes naar beneden als er ruimte over is */
}

.offer-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet (boven 768px): 2 kolommen */
/* De derde kaart komt eronder en wordt breed, OF je laat hem in het grid vallen */
@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Optioneel: Als je wilt dat de laatste kaart op tablet de hele breedte pakt: */
    /* .offer-card:last-child { grid-column: span 2; } */
}

/* Desktop (boven 1024px): 3 kolommen naast elkaar */
@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Button groep styling */
.button-group {
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-top: 1.5rem;
}

.small-text {
    margin-top: 1rem; 
    font-size: 0.9em; 
    color: #666;
}/* Container */
.over-container {
    max-width: 1200px; /* Iets breder voor 3 kaarten naast elkaar */
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* HET 6-CARDS GRID */
.grid-6-layout {
    display: grid;
    grid-template-columns: 1fr; /* Mobiel: 1 kolom */
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Tablet (boven 768px): 2 kolommen */
@media (min-width: 768px) {
    .grid-6-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (boven 1100px): 3 kolommen */
@media (min-width: 1100px) {
    .grid-6-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Styling van de kaartjes */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px; /* Iets ronder mag wel */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%; /* Zorgt dat ze in 1 rij even hoog zijn */
}

.info-card h2 {
    color: #2c3e50; /* Of jouw hoofdkleur */
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Optioneel: om en om een kleurtje voor het 'schaakbord' effect */
.info-card.alternate {
    background-color: #f8fbff; /* Heel licht blauw/grijs */
    border-color: #dae0e5;
}

.sidenote {
    margin-top: auto; /* Duwt de sidenote naar de bodem van de kaart */
    padding-top: 1rem;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #eee;
}

/* Button groepje */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}