/* 
 * UndresserNL.site Stylesheet
 * Nederlandse AI Uitkleedtool Website
 * Colors: Dutch orange (#FF6600) theme
 */

/* Base Styles and Variables */
:root {
    --primary: #FF6600;         /* Dutch Orange */
    --primary-light: #FFAA00;   /* Lighter orange */
    --primary-dark: #CC5200;    /* Darker orange */
    --secondary: #1E3A8A;       /* Dutch blue */
    --accent: #FFCC00;          /* Accent color */
    --bg-light: #FFFFFF;        /* Background light */
    --bg-off: #FFF0E6;          /* Light orange background */
    --text-dark: #222222;       /* Dark text */
    --text-light: #FFFFFF;      /* Light text */
    --text-grey: #666666;       /* Grey text */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 15px;
}

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

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

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

ul {
    list-style: none;
}

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

.accent {
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--text-light);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

.button:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
}

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

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

.button.secondary:hover {
    background: var(--primary);
    color: var(--text-light);
}

.button.large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.center-button {
    text-align: center;
    margin-top: 40px;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    color: var(--text-dark);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

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

.nav-menu a:hover {
    color: var(--primary);
}

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

.nav-button {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--text-light) !important;
    border-radius: var(--border-radius);
}

.nav-button:hover {
    background: var(--primary-dark);
}

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

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero h1 {
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 30px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

/* Voordelen Section */
.voordelen {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.voordeel-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.voordeel-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary);
}

.icon-wrapper {
    margin-bottom: 20px;
    display: inline-flex;
}

/* Hoe Werkt Het Section */
.hoe-werkt-het {
    padding: 80px 0;
    background-color: var(--bg-off);
    position: relative;
}

.stappen {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stap {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stap:hover {
    transform: translateX(10px);
}

.stap-nummer {
    background: var(--primary);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stap-content h3 {
    margin-bottom: 10px;
}

/* Eigenschappen Section */
.eigenschappen {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.eigenschappen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.eigenschappen-lijst {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eigenschap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    flex-shrink: 0;
}

.eigenschappen-visual {
    display: flex;
    justify-content: center;
}

/* Veelgestelde Vragen Section */
.veelgestelde-vragen {
    padding: 80px 0;
    background-color: var(--bg-off);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-vraag {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-vraag h3 {
    margin: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

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

.toggle-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.toggle-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

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

.faq-antwoord {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-antwoord {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--text-light);
}

.cta h2 {
    color: var(--text-light);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

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

.cta .button:hover {
    background: var(--accent);
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    background-color: #333;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-text {
    color: var(--text-light);
    font-size: 1.5rem;
}

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

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #CCC;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fadeIn {
    animation: fadeIn 1s forwards;
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .eigenschappen-container {
        grid-template-columns: 1fr;
    }
    
    .eigenschappen-visual {
        order: -1;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--bg-light);
        width: 80%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .voordelen-grid {
        grid-template-columns: 1fr;
    }
    
    .stap {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .button {
        width: 100%;
    }
    
    .button-group {
        flex-direction: column;
    }
}
