/* 
 * nudifyerNL.site - Moderne CSS Stijlen
 * Kleuren: Paars (#673AB7) en Groen (#8BC34A)
 * Uniek ontwerp voor de Nederlandse markt met golfelementen en zeshoeken
 */

/* Basis Stijlen & Variabelen */
:root {
    --primary: #673AB7;
    --secondary: #8BC34A;
    --primary-light: #D1C4E9;
    --primary-dark: #512DA8;
    --secondary-light: #DCEDC8;
    --secondary-dark: #689F38;
    --text-dark: #212121;
    --text-medium: #757575;
    --text-light: #FAFAFA;
    --background: #FFFFFF;
    --background-alt: #F5F5F5;
    --background-dark: #212121;
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;
    --border-radius: 8px;
    --box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Reset & Standaarden */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px basis voor eenvoudige rems */
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
    color: var(--text-medium);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 90%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-lg {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-light {
    background-color: var(--text-light);
    color: var(--primary);
}

.btn-light:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px var(--primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(103, 58, 183, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(103, 58, 183, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(103, 58, 183, 0);
    }
}

/* Header & Navigatie */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background);
    z-index: 1000;
    padding: 1.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

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

.logo-svg {
    height: 4rem;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.4rem;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Sectie */
.hero {
    padding: 16rem 0 8rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
    overflow: hidden;
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: 100%;
    height: 8rem;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: var(--secondary);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.4rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
}

.hero h1 {
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 50rem;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--text-medium);
}

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

.hero-shape {
    width: 100%;
    max-width: 40rem;
    height: auto;
}

/* Sectie Headers */
.section-header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 6rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.6rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 1.5px;
}

/* Features Sectie */
.features-section {
    padding: 10rem 0;
    background-color: var(--background);
}

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

.feature-card {
    padding: 3rem;
    border-radius: var(--border-radius);
    background-color: var(--background);
    border: 1px solid var(--primary-light);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1.2rem;
}

/* How It Works Sectie */
.how-section {
    padding: 10rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.step {
    flex: 1;
    min-width: 20rem;
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-content h3 {
    margin-bottom: 1.2rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
}

.action-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    color: var(--text-light);
}

.action-box h3 {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.action-box p {
    color: var(--primary-light);
    margin-bottom: 2.4rem;
}

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

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: 100%;
    height: 8rem;
}

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

.review-card {
    padding: 3rem;
    border-radius: var(--border-radius);
    background-color: var(--background);
    border: 1px solid var(--primary-light);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.review-card.highlight {
    border: 2px solid var(--secondary);
    transform: translateY(-1rem);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.highlight:hover {
    transform: translateY(-1.5rem);
}

.review-stars {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.review-author {
    font-weight: 600;
    color: var(--text-medium);
}

/* FAQ Sectie */
.faq-section {
    padding: 10rem 0;
    background-color: var(--background-alt);
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    position: relative;
    width: 2rem;
    height: 2rem;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: var(--transition);
}

.faq-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.faq-toggle::after {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 20rem;
}

/* CTA Sectie */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-section p {
    color: var(--primary-light);
    margin-bottom: 3rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 8rem 0 2rem;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 3rem;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
}

.footer-icon {
    display: flex;
    align-items: center;
}

.favicon-footer {
    width: 3.2rem;
    height: auto;
}

/* Animaties voor scrollen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 9px basis */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .steps {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 8px basis */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 4rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1000;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .action-box {
        padding: 3rem 2rem;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .steps {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 14rem 0 6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
