:root {
    --primary: #4A90E2;
    --secondary: #AED581;
    --bg-gradient: linear-gradient(135deg, #FFF9C4 0%, #FFFFFF 100%);
    --text: #5D4037;
    --card-bg: #FFFFFF;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-gradient);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    white-space: nowrap;
}

.links a {
    text-decoration: none;
    color: var(--text);
    margin-left: 20px;
    font-weight: 600;
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    transition: transform 0.2s;
}

.btn-nav:hover { transform: scale(1.05); }

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    min-height: 90vh;
    position: relative;
}

.content {
    flex: 1;
    padding-right: 50px;
    z-index: 10;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: -webkit-linear-gradient(#4A90E2, #29B6F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Zorgt dat het plantje bij het woord blijft */
.no-break {
    white-space: nowrap;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #795548;
    max-width: 500px;
}

.store-buttons {
    display: flex;
    gap: 20px; /* Ruimte tussen de knoppen */
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.store-link img {
    height: 50px; /* Dit zorgt dat ze allebei even hoog zijn */
    width: auto;  /* Breedte past zich automatisch aan */
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: block; /* Voorkomt gekke witruimtes onder plaatjes */
}

/* Leuk hover effectje (optioneel) */
.store-link:hover img {
    transform: translateY(-3px); /* Klein sprongetje */
    opacity: 0.9;
}

/* --- PHONE MOCKUP --- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 40px;
    border: 10px solid #333;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    background: white;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #E3F2FD 0%, #FFFFFF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Verticaal centreren */
    text-align: center;
    padding: 20px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.screen-content h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.screen-content p {
    font-size: 1rem;
    color: #666;
}

.loading-bar {
    width: 60%;
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
    margin-top: 30px;
    overflow: hidden;
}

.fill {
    width: 40%;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* --- FEATURES --- */
.features {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover { transform: translateY(-5px); }
.icon { font-size: 3.5rem; margin-bottom: 20px; display: inline-block; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-top: 1px solid #EEE;
}

.footer-links {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #90A4AE;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

/* --- LEGAL PAGES (Privacy & Terms) --- */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px; /* Meer padding rondom */
    background: rgba(255,255,255,0.5); /* Zorgt dat tekst leesbaar blijft op gradient */
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.legal-container h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1.5rem;
}

.legal-container p, .legal-container li {
    font-size: 1.1rem;
    color: #5D4037;
    margin-bottom: 15px;
}

.legal-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    nav { padding: 15px 5%; }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 5%;
        gap: 50px;
        justify-content: center;
        height: auto; /* Belangrijk: laat hoogte meegroeien */
        min-height: auto;
    }

    .content { padding-right: 0; }
    .store-buttons { justify-content: center; }
    .hero-image { width: 100%; max-width: 400px; margin-top: 20px; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .logo { font-size: 1.1rem; }
    
    .links a:not(.btn-nav) { display: none; } /* Verberg links op klein scherm */
    
    .btn-nav { margin-left: 0; padding: 8px 20px; font-size: 0.9rem; }

    .hero { padding-top: 20px; padding-bottom: 60px; }

    /* Telefoon fix voor mobiel */
    .phone-mockup {
        width: 280px;
        height: 560px;
        border-width: 8px;
        max-width: 90vw; /* Zorg dat hij nooit breder is dan het scherm */
    }

    .features { padding: 60px 5%; grid-template-columns: 1fr; }

    .footer-links { flex-direction: column; gap: 15px; }
    
    /* Legal pages fix voor mobiel */
    .legal-container {
        padding: 30px 20px; /* Genoeg ruimte aan de zijkanten */
        width: 95%; /* Bijna schermbreedte */
        margin: 20px auto;
    }
    
    .legal-container h1 { font-size: 2rem; }
}
