/* MASTER STYLE SHEET - FLIGHTMEDIA 
   Bevat alle stijlen voor: Index, Diensten, Portfolio, Over Ons, Contact en Privacy
*/

:root {
    --flight-blue: #00AEEF;
    --glow: rgba(0, 174, 239, 0.6);
    --dark: #050505;
    --dark-card: #0d0d0d;
    --glass: rgba(255, 255, 255, 0.03);
    --text-gray: #a0a0a0;
}

/* --- BASIS RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* --- TRUST BAR --- */
.trust-bar {
    position: fixed; top: 0; width: 100%; height: 35px;
    background: var(--flight-blue); display: flex;
    justify-content: space-around; align-items: center;
    padding: 0 10%; z-index: 1001;
}

.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Syncopate', sans-serif; font-size: 0.55rem;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: #000;
}
.trust-item span { color: #fff; font-size: 1rem; }

/* --- NAVIGATIE --- */
nav {
    position: fixed; 
    top: 35px; 
    width: 100%;
    height: 60px; 
    z-index: 1000;
    backdrop-filter: blur(15px); 
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center; /* Houdt de container centraal */
    align-items: center;
}

.nav-logo-container { 
    position: relative; 
    width: 100%; 
    max-width: 1400px; 
    height: 100%; 
    display: flex;
    justify-content: center; /* Dit centreert de nav-links */
    align-items: center;
    padding: 0 5%;
}

.nav-logo { 
    height: 90px; 
    width: auto; 
    position: absolute; 
    left: 0; /* Logo staat strak links in de container */
    top: 50%;
    transform: translateY(-50%); 
    filter: drop-shadow(0 0 12px var(--glow));
    transition: 0.3s ease;
}

.nav-links { 
    display: flex; 
    gap: 35px; 
    /* Geen absolute positie nodig, flexbox centreert dit nu */
}

.nav-links a {
    color: #fff; 
    text-decoration: none; 
    font-family: 'Syncopate', sans-serif;
    font-size: 0.65rem; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    position: relative; 
    padding: 5px 0; 
    opacity: 0.8; 
    transition: 0.4s;
}

.nav-links a.active, .nav-links a:hover { opacity: 1; color: var(--flight-blue); }

.nav-links a::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0;
    height: 2px; 
    background: var(--flight-blue); 
    transition: 0.4s ease;
    box-shadow: 0 0 10px var(--flight-blue);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger Menu Knop */
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    position: absolute; 
    right: 0; /* Knop staat strak rechts in de container */
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 1002; 
}
/* --- HERO SECTIES (Algemeen) --- */
.hero {
    height: 55vh; width: 100%; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    align-items: center; text-align: center; margin-top: 80px; padding-bottom: 5vh;
}
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 60%, rgba(5,5,5,1) 100%); z-index: 0; }

.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero h1 {
    font-family: 'Syncopate', sans-serif; font-size: clamp(1.2rem, 4vw, 2.2rem); 
    margin-bottom: 15px; line-height: 1.2;
    background: linear-gradient(to bottom, #fff 40%, #999 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-block; padding: 10px 25px; border: 1px solid var(--flight-blue);
    color: #fff; text-decoration: none; font-family: 'Syncopate', sans-serif;
    font-size: 0.55rem; letter-spacing: 2px; transition: 0.5s; background: rgba(0, 174, 239, 0.1);
}
.cta-button:hover { background: var(--flight-blue); color: #000; box-shadow: 0 0 20px var(--glow); }

/* --- INFO BLOKKEN (Diensten / Over Ons) --- */
.info-block { padding: 100px 10%; background: #050505; }
.info-container { display: flex; align-items: center; gap: 80px; max-width: 1400px; margin: 0 auto; }
.info-block.reverse .info-container { flex-direction: row-reverse; }

.info-text { flex: 1; }
.step-number { font-family: 'Syncopate', sans-serif; font-size: 3rem; color: rgba(0, 174, 239, 0.1); display: block; line-height: 1; margin-bottom: -20px; }
.info-text h2 { font-family: 'Syncopate', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 2px; margin-bottom: 20px; }
.blue-divider { width: 50px; height: 4px; background: var(--flight-blue); margin-bottom: 30px; }
.info-text p { color: var(--text-gray); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }

.benefit-list { list-style: none; margin-top: 30px; }
.benefit-list li { color: #fff; margin-bottom: 12px; padding-left: 25px; position: relative; font-size: 0.9rem; }
.benefit-list li::before { content: '✓'; color: var(--flight-blue); position: absolute; left: 0; font-weight: bold; }

.info-visual { flex: 1; }
.visual-box { width: 100%; aspect-ratio: 16/9; background: #111; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.visual-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s ease; }
.visual-box:hover img { opacity: 1; transform: scale(1.05); }
.blue-glow { box-shadow: 0 0 30px rgba(0, 174, 239, 0.2); }

/* --- EXPERTISE GRID (Specialisaties) --- */
.expertise { padding: 60px 10%; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: var(--glass); border: 1px solid rgba(255,255,255,0.1); padding: 40px; text-align: left; transition: 0.4s; }
.card:hover { border-color: var(--flight-blue); transform: translateY(-5px); }
.card h3 { font-family: 'Syncopate'; color: var(--flight-blue); margin-bottom: 15px; font-size: 0.8rem; }
.card p { color: #aaa; font-size: 0.9rem; line-height: 1.6; }

/* --- PROCES SECTIE (Waarom FlightMedia) --- */
.process-section { padding: 100px 10%; background: #080b12; text-align: center; }
.process-header h2 { font-family: 'Syncopate', sans-serif; margin-bottom: 20px; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 60px; }
.process-card { padding: 30px; border-bottom: 2px solid var(--flight-blue); background: rgba(255,255,255,0.02); transition: 0.3s; }
.process-card:hover { background: rgba(0, 174, 239, 0.05); }
.process-card h3 { font-family: 'Syncopate', sans-serif; font-size: 0.8rem; margin-bottom: 15px; color: var(--flight-blue); }
.process-card p { font-size: 0.85rem; color: #888; line-height: 1.6; }

/* --- PORTFOLIO SPECIFIEK --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; padding: 40px 10%; margin-top: 20px; }
.portfolio-item { position: relative; background: #111; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.portfolio-info { padding: 25px; }
.portfolio-tag { color: var(--flight-blue); font-family: 'Syncopate', sans-serif; font-size: 0.6rem; margin-bottom: 10px; display: block; letter-spacing: 1px; }
.portfolio-info h3 { font-family: 'Syncopate', sans-serif; font-size: 0.9rem; margin-bottom: 10px; }
.portfolio-info p { font-size: 0.85rem; color: #888; margin-bottom: 20px; }

/* --- CONTACT SECTIE MET VOLLEDIGE NEON GLOW --- */
.contact-section { 
    padding: 120px 10% 80px; 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px; 
    max-width: 1400px; 
    margin: 0 auto; 
}

/* Linker kolom: Contact Info */
.contact-info {
    background: var(--dark-card);
    padding: 40px;
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 4px;
    /* Neon schaduw effect om het info-blok */
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.15);
    height: fit-content;
    transition: 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 0 40px rgba(0, 174, 239, 0.25);
    border-color: var(--flight-blue);
}

.contact-info h2 { 
    font-family: 'Syncopate', sans-serif; 
    font-size: 1.8rem; 
    margin-bottom: 30px; 
    color: #fff;
    text-shadow: 0 0 10px var(--glow); /* Gloeiende tekst titel */
}

/* Rechter kolom: Het Formulier Blok */
.form-container { 
    background: var(--dark-card); 
    padding: 40px; 
    border: 1px solid rgba(0, 174, 239, 0.3); 
    border-radius: 8px;
    position: relative; 
    /* Krachtige Neon Glow die op de achtergrond schijnt */
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.2), 
                inset 0 0 15px rgba(0, 174, 239, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Wanneer je over het formulier zweeft, licht het hele blok op */
.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 174, 239, 0.35), 
                0 0 15px rgba(0, 174, 239, 0.2);
    border-color: var(--flight-blue);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group.full-width { grid-column: span 2; }

/* Labels met een kleine gloed */
.input-group label { 
    font-family: 'Syncopate', sans-serif; 
    font-size: 0.55rem; 
    color: var(--flight-blue); 
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 174, 239, 0.5);
}

/* De Velden zelf (Neon Inputs) */
input, select, textarea {
    width: 100%; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(0, 174, 239, 0.2) !important;
    padding: 15px; 
    color: #fff; 
    font-family: 'Montserrat', sans-serif; 
    outline: none; 
    transition: all 0.3s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* Focus effect op velden: Extreme Neon */
input:focus, select:focus, textarea:focus { 
    border-color: #00AEEF !important; 
    background: rgba(0, 174, 239, 0.15) !important; 
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.8), 
                inset 0 0 10px rgba(0, 174, 239, 0.3) !important;
}

select option { background-color: #0d0d0d; color: #fff; }

/* Verzendknop */
.submit-btn {
    background: var(--flight-blue); 
    color: #000; 
    border: none; 
    padding: 18px;
    font-family: 'Syncopate', sans-serif; 
    font-size: 0.7rem; 
    font-weight: 700;
    cursor: pointer; 
    transition: 0.4s; 
    letter-spacing: 2px; 
    margin-top: 10px;
    text-transform: uppercase;
    width: 100%;
}

.submit-btn:hover { 
    background: #fff; 
    box-shadow: 0 0 30px var(--flight-blue); 
    transform: scale(1.02);
}

/* --- PRIVACY / LEGAL --- */
.legal-content { padding: 150px 15% 80px; max-width: 1200px; margin: 0 auto; }
.legal-content h1 { font-family: 'Syncopate', sans-serif; margin-bottom: 40px; color: var(--flight-blue); }
.legal-content h2 { font-family: 'Syncopate', sans-serif; font-size: 1.1rem; margin: 40px 0 20px; border-left: 3px solid var(--flight-blue); padding-left: 15px; }
.legal-content p, .legal-content li { color: #aaa; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.8; }

/* --- FOOTER --- */
.main-footer { background-color: #080b12; padding: 60px 10% 20px 10%; border-top: 2px solid var(--flight-blue); }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; align-items: start; }
.footer-col h4 { font-family: 'Syncopate', sans-serif; font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 25px; color: #fff; text-transform: uppercase; }
.footer-logo-img { height: 85px; width: auto; margin-bottom: 25px; filter: drop-shadow(0 0 10px var(--glow)); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; color: #a0a0a0; margin-bottom: 25px; }

.contact-table { font-size: 0.85rem; color: #a0a0a0; border-collapse: collapse; }
.contact-table td { padding-bottom: 10px; padding-right: 15px; }
.contact-table strong { color: #fff; }

.footer-list { list-style: none; font-size: 0.85rem; color: #a0a0a0; }
.footer-list li { padding-left: 15px; margin-bottom: 10px; position: relative; }
.footer-list li::before { content: '>'; color: var(--flight-blue); position: absolute; left: 0; font-weight: bold; }

.whatsapp-btn { display: inline-flex; align-items: center; background-color: #25D366; color: #fff; padding: 12px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: 0.3s; margin-top: 15px; }
.footer-copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; color: #666; font-size: 0.75rem; }
.footer-link { color: #666; text-decoration: none; transition: 0.3s; }
.footer-link:hover { color: var(--flight-blue); }

.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0, 174, 239, 0.3); border-radius: 50%; background: rgba(255, 255, 255, 0.05); transition: 0.3s; }
.social-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; }
.social-icon:hover { border-color: var(--flight-blue); box-shadow: 0 0 15px var(--glow); }

/* --- MOBIELE REPARATIES (Media Queries) --- */
@media (max-width: 768px) {
    /* 1. Trustbar tekst verkleinen voor smalle schermen */
    .trust-bar {
        padding: 0 2%;
        height: 30px;
    }
    .trust-item {
        font-size: 0.45rem;
        gap: 4px;
    }

    /* 2. Hamburger Menu Streepjes */
    .menu-toggle { 
        display: flex; 
        right: 5%; 
    }
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    /* 3. Navigatie Menu */
    nav { top: 30px; height: 65px; }
    
    .nav-links { 
        display: none; 
        position: fixed; 
        top: 95px; /* Trustbar(30) + Nav(65) */
        left: 0; 
        width: 100%; 
        background: rgba(5, 5, 5, 0.98); 
        flex-direction: column; 
        padding: 40px 0; 
        text-align: center; 
        border-bottom: 2px solid var(--flight-blue); 
        z-index: 1001; 
        gap: 25px;
    }

    .nav-links.active { 
        display: flex; 
    }

    .nav-logo { 
        height: 50px; 
        left: 5%; 
    }

    /* 4. Hero & Content */
    .hero, .about-hero { 
        height: 50vh; 
        margin-top: 95px; 
    }

    .hero h1 { 
        font-size: 1.4rem !important; 
        padding: 0 10px;
    }
    
    .info-block { padding: 60px 5%; }
    
    .info-container, 
    .info-block.reverse .info-container { 
        flex-direction: column !important; 
        gap: 40px; 
    }

    .info-text h2 { 
        font-size: 1.4rem !important; 
        text-align: center;
    }

    .blue-divider { margin: 0 auto 20px auto; }

    .info-text p {
        text-align: center;
        font-size: 0.95rem;
    }

    .benefit-list {
        display: inline-block;
        text-align: left;
        margin: 20px auto 0 auto;
    }

    /* 5. Footer & Contact */
    .footer-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 50px;
    }

    .footer-logo-img { margin: 0 auto 20px auto; }
    
    .contact-table { margin: 0 auto; }

    .social-icons { justify-content: center; }

    .contact-section { 
        grid-template-columns: 1fr; 
        padding: 120px 5% 40px; 
    }
}
.legal-content h1 {
    font-family: 'Syncopate', sans-serif;
    margin-bottom: 40px;
    color: var(--flight-blue);
    text-align: center;
    width: 100%;
    /* De 'clamp' zorgt dat tekst kleiner wordt op mobiel zodat het 1 woord blijft */
    font-size: clamp(1rem, 5vw, 2.2rem); 
    white-space: nowrap; /* Verbiedt afbreken van het woord */
    text-shadow: 0 0 15px rgba(0, 174, 239, 0.4); /* Subtiele neon glow */
}
/* --- SPECIFIEKE NEON FIX VOOR C-CARD BLOKKEN --- */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.c-card {
    background: #0d0d0d !important;
    border: 1px solid rgba(0, 174, 239, 0.3) !important;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    transition: all 0.4s ease-in-out;
    
    /* STANDAARD BLAUW LICHT (net als het formulier) */
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.2), 
                inset 0 0 15px rgba(0, 174, 239, 0.05) !important;
}

.c-card:hover {
    transform: translateY(-8px);
    border-color: #00AEEF !important;
    
    /* EXTRA OPLICHTEN BIJ HOVER */
    box-shadow: 0 0 45px rgba(0, 174, 239, 0.5), 
                0 0 15px rgba(0, 174, 239, 0.2) !important;
}

.c-card .c-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
    /* Geeft de emoji ook een gloed */
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.6));
}

.c-card h3 {
    font-family: 'Syncopate', sans-serif !important;
    color: #00AEEF !important;
    font-size: 0.8rem !important;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
}

.c-card p {
    color: #ffffff !important;
    font-size: 0.95rem;
    margin: 0;
}

/* --- MOBIELE TRUSTBAR (ALTIJD IN BEELD + ANIMATIE) --- */
@media (max-width: 768px) {
    .trust-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed !important; /* Dwingt de bar om bovenin te blijven staan */
        top: 0;
        left: 0;
        width: 100%;
        height: 35px;
        z-index: 1001;
        overflow: hidden;
    }

    .trust-item {
        position: absolute; /* Zorgt dat woorden over elkaar heen vallen */
        opacity: 0;
        animation: trustFadeLoop 9s infinite;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Timings voor de 3 woorden */
    .trust-item:nth-child(1) { animation-delay: 0s; }
    .trust-item:nth-child(2) { animation-delay: 3s; }
    .trust-item:nth-child(3) { animation-delay: 6s; }

    @keyframes trustFadeLoop {
        0% { opacity: 0; transform: translateY(5px); }
        5% { opacity: 1; transform: translateY(0); }
        28% { opacity: 1; transform: translateY(0); }
        33% { opacity: 0; transform: translateY(-5px); }
        100% { opacity: 0; }
    }
}