/* Stijlen voor AIpornGeneratorNL.site - Nederland */
:root {
    --rood-nl: #AE1C28;       /* Rood van de Nederlandse vlag */
    --wit-nl: #FFFFFF;        /* Wit van de Nederlandse vlag */
    --blauw-nl: #21468B;      /* Blauw van de Nederlandse vlag */
    --donkerblauw: #192e59;
    --donkerrood: #8a1721;
    --oranje: #FF6600;        /* Oranje kleur voor accenten (koninklijk) */
    --lichtgrijs: #f5f5f5;
    --middelgrijs: #e0e0e0;
    --donkergrijs: #333333;
    --schaduw: 0 5px 20px rgba(33, 70, 139, 0.15);
    --transitie: all 0.3s ease;
    --boogstraal: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--donkergrijs);
    background-color: var(--wit-nl);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--blauw-nl);
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--blauw-nl);
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--blauw-nl);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--blauw-nl);
    transition: var(--transitie);
}

a:hover {
    color: var(--rood-nl);
}

/* Nederlandse achtergrond patroon */
.nl-achtergrond {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, transparent 48%, var(--blauw-nl) 48%, var(--blauw-nl) 52%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    background-color: var(--wit-nl);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--schaduw);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 48px;
    height: 48px;
}

.site-naam {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blauw-nl);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.menu a {
    color: var(--donkergrijs);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--rood-nl), var(--blauw-nl));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.menu a:hover {
    color: var(--blauw-nl);
}

.menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-knop {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-knop span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--blauw-nl);
    margin: 6px 0;
    transition: var(--transitie);
}

.menu-knop.actief span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.menu-knop.actief span:nth-child(2) {
    opacity: 0;
}

.menu-knop.actief span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Sectie */
.hero {
    padding: 9rem 0 6rem;
    background: linear-gradient(120deg, var(--wit-nl) 0%, var(--lichtgrijs) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-tekst {
    max-width: 600px;
}

.hero-beschrijving {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.hero-knoppen {
    display: flex;
    gap: 1.5rem;
}

.knop-primair {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background-color: var(--blauw-nl);
    color: var(--wit-nl);
    font-weight: 700;
    border-radius: var(--boogstraal);
    transition: var(--transitie);
    box-shadow: 0 4px 15px rgba(33, 70, 139, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.knop-primair::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: var(--transitie);
    z-index: -1;
}

.knop-primair:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 70, 139, 0.4);
}

.knop-primair:hover::before {
    opacity: 1;
}

.knop-primair.groot {
    padding: 1.2rem 2.8rem;
    font-size: 1.2rem;
}

.knop-icoon {
    display: flex;
    align-items: center;
}

.knop-secundair {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--rood-nl);
    color: var(--rood-nl);
    font-weight: 700;
    border-radius: var(--boogstraal);
    transition: var(--transitie);
}

.knop-secundair:hover {
    background-color: var(--rood-nl);
    color: var(--wit-nl);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nl-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(33, 70, 139, 0.25));
    animation: drijven 8s ease-in-out infinite;
}

@keyframes drijven {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Functies Sectie */
.functies {
    padding: 6rem 0;
    background-color: var(--lichtgrijs);
    position: relative;
    overflow: hidden;
}

.functies::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--rood-nl);
    border-radius: 50%;
    opacity: 0.03;
    transform: translate(150px, -150px);
    z-index: 0;
}

.sectie-titel {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1.5rem 1rem;
}

.sectie-titel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--rood-nl), var(--blauw-nl), var(--oranje));
    border-radius: 2px;
}

.functies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.functie-kaart {
    background-color: var(--wit-nl);
    border-radius: var(--boogstraal);
    padding: 2.5rem 1.8rem;
    box-shadow: var(--schaduw);
    transition: var(--transitie);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    z-index: 1;
}

.functie-kaart:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--blauw-nl);
}

.functie-kaart:nth-child(even):hover {
    border-bottom: 4px solid var(--rood-nl);
}

.functie-icoon {
    margin: 0 auto 1.5rem;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(33, 70, 139, 0.08);
}

/* Gebruik Sectie */
.gebruik {
    padding: 6rem 0;
    background-color: var(--wit-nl);
    position: relative;
}

.gebruik::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--blauw-nl);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.stappen-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.stap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stap-nummer {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rood-nl), var(--donkerrood));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    box-shadow: 0 5px 15px rgba(174, 28, 40, 0.3);
}

.stap-nummer span {
    font-weight: 700;
    color: var(--wit-nl);
    font-size: 1.8rem;
}

.stap-inhoud {
    background-color: var(--lichtgrijs);
    padding: 1.8rem 2.5rem;
    border-radius: var(--boogstraal);
    flex-grow: 1;
    position: relative;
    box-shadow: var(--schaduw);
}

.stap-connector {
    display: flex;
    justify-content: center;
    height: 80px;
    margin: 0 0 1rem 30px;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}

/* Reviews Sectie */
.reviews {
    padding: 6rem 0;
    background-color: var(--lichtgrijs);
    position: relative;
}

.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(174, 28, 40, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.tulpen-border {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--boogstraal);
    background-color: var(--wit-nl);
    position: relative;
    box-shadow: var(--schaduw);
    overflow: hidden;
}

.tulpen-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--rood-nl) 33.3%, var(--wit-nl) 33.3%, var(--wit-nl) 66.6%, var(--blauw-nl) 66.6%);
}

.review-kaart {
    position: relative;
}

.review-header {
    margin-bottom: 2rem;
}

.quote-icoon {
    opacity: 0.7;
}

.review-tekst {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.review-tekst::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background-color: var(--middelgrijs);
}

.review-auteur {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: 2rem;
}

.auteur-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.auteur-info {
    display: flex;
    flex-direction: column;
}

.auteur-info strong {
    color: var(--blauw-nl);
    font-size: 1.1rem;
}

.auteur-info span {
    font-size: 0.9rem;
    color: #666;
}

.sterren {
    color: var(--oranje);
    margin-top: 0.5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* FAQ Sectie */
.faq {
    padding: 6rem 0;
    background-color: var(--wit-nl);
    position: relative;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 1.8rem;
    padding: 2rem 3rem;
    background-color: var(--lichtgrijs);
    border-radius: var(--boogstraal);
    position: relative;
    box-shadow: var(--schaduw);
    transition: var(--transitie);
    border-left: 5px solid var(--blauw-nl);
}

.faq-item:nth-child(even) {
    border-left: 5px solid var(--rood-nl);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(33, 70, 139, 0.15);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--blauw-nl);
}

/* Footer */
.footer {
    position: relative;
    color: var(--wit-nl);
}

.footer-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-content {
    background-color: var(--blauw-nl);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-svg {
    max-width: 120px;
    height: auto;
}

.footer-links h3,
.footer-info h3 {
    color: var(--wit-nl);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transitie);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--oranje);
    transform: translateX(5px);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-cta {
    display: inline-block;
    color: var(--oranje);
    font-weight: 600;
    border-bottom: 1px solid var(--oranje);
    padding-bottom: 3px;
    transition: var(--transitie);
}

.footer-cta:hover {
    color: var(--wit-nl);
    border-color: var(--wit-nl);
}

.footer-bottom {
    background-color: var(--donkerblauw);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.keywords {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Media Queries voor Responsiviteit */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-tekst {
        order: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-knoppen {
        justify-content: center;
    }
    
    .tulpen-border {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-knop {
        display: block;
    }
    
    .menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: calc(100vh - 75px);
        flex-direction: column;
        background-color: var(--wit-nl);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 2rem;
        transition: var(--transitie);
        z-index: 100;
        gap: 1.5rem;
    }
    
    .menu.zichtbaar {
        right: 0;
    }
    
    .stap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stap-nummer {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .stap-inhoud {
        width: 100%;
    }
    
    .stap-connector {
        margin: 0 auto 1rem;
    }
    
    .review-auteur {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .faq-item {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .hero-knoppen {
        flex-direction: column;
        width: 100%;
    }
    
    .knop-primair, 
    .knop-secundair {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
