
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
}
:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary: #1e293b;
    --accent: #14b8a6;
    --accent-2: #f59e0b;
    --text: #1e293b;
    --text-light: #475569;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Header */
.header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 15px;
    justify-content: center; /* Centreert logo horizontaal */
}

.main-logo {
    height: 120px;
    width: auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.5px;
}

.logo-img {
    max-height: 45px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-light);
}

.nav-list a:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f0faff 0%, #e6f0ff 100%);
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.dekker-logo {
    height: 50px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    min-height: 44px;
    line-height: 1.5;
    transition: background 0.3s, transform 0.2s;
}

.btn.primary {
    background: #007bff;
    color: #fff;
}

.btn.secondary {
    background: #00b7eb;
    color: #fff;
}

.btn.tertiary {
    background: #003087;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Car Selector */
.car-selector {
    flex: 1;
    max-width: 500px;
}

.car-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.car-btn {
    padding: 10px 20px;
    background: #e6f0ff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.car-btn:hover {
    background: #007bff;
    color: #fff;
}

.car-btn.active {
    background: #007bff;
    color: #fff;
}

.car-img {
    display: none;
    max-width: 100%;
    height: auto;
}

.car-img.active {
    display: block;
}

/* Features Section */
.features {
    padding: 30px 20px;
    background: #fff;
    text-align: center;
}

.features h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #003087;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.feature-benefit {
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.feature-benefit::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.conditions {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

/* Repair Section */
.repair {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
}

.repair h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #003087;
}

.repair p {
    font-size: 16px;
    margin-bottom: 15px;
}

.repair-benefits {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: left;
}

.repair-benefits li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.repair-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.locations {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.locations h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.locations p {
    font-size: 16px;
    margin-bottom: 10px;
}

.locations ul {
    list-style: none;
    margin-bottom: 20px;
}

.locations li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.locations li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Quote Section */
.quote {
    padding: 30px 20px;
    background: linear-gradient(135deg, #007bff 0%, #00b7eb 100%);
    color: #fff;
    text-align: center;
}

.quote-content {
    max-width: 500px;
    margin: 0 auto;
}

.quote h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.quote p {
    font-size: 16px;
    margin-bottom: 20px;
}

.quote .btn {
    background: #fff;
    color: #007bff;
}

/* Policies Section */
.policies {
    padding: 30px 20px;
    background: #fff;
    text-align: center;
}

.policies h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #003087;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-category {
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-category h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

.policy-links {
    list-style: none;
}

.policy-links li {
    margin-bottom: 10px;
}

.policy-btn {
    display: block;
    padding: 10px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    min-height: 44px;
    line-height: 1.5;
    position: relative;
    padding-left: 30px;
    transition: background 0.3s;
}

.policy-btn::before {
    content: "📄";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.policy-btn:hover {
    background: #005bb5;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    max-height: 90px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .header {
        padding: 10px;
    }

    .main-logo {
        height: 80px;
    }

    .hamburger {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f8f9fa;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav li {
        border-bottom: 1px solid #ddd;
    }

    .nav a {
        font-size: 16px;
        padding: 15px 20px;
        display: block;
        text-align: left;
    }

    .hero {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .dekker-logo {
        height: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn {
        width: 100%;
        max-width: 200px;
    }

    .car-selector {
        max-width: 100%;
        margin-top: 20px;
    }

    .car-img {
        height: 200px;
        object-fit: cover;
    }

    .features {
        padding: 20px;
    }

    .features h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 10px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-benefit {
        padding-left: 0;
    }

    .feature-benefit::before {
        display: none;
    }

    .conditions {
        font-size: 10px;
    }

    .repair {
        padding: 20px;
    }

    .repair h2 {
        font-size: 24px;
    }

    .repair p {
        font-size: 14px;
    }

    .repair-benefits {
        text-align: center;
    }

    .repair-benefits li {
        padding-left: 0;
    }

    .repair-benefits li::before {
        display: none;
    }

    .locations {
        text-align: center;
    }

    .locations ul {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .quote {
        padding: 20px;
    }

    .quote h2 {
        font-size: 24px;
    }

    .quote p {
        font-size: 14px;
    }

    .policies {
        padding: 20px;
    }

    .policies h2 {
        font-size: 24px;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .policy-category {
        padding: 10px;
    }

    .policy-category h3 {
        font-size: 18px;
    }

    .policy-btn {
        font-size: 12px;
        padding: 8px 8px 8px 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    .main-logo {
        height: 60px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    .car-img {
        height: 150px;
    }

    .features h2,
    .repair h2,
    .quote h2,
    .policies h2 {
        font-size: 20px;
    }

    .feature-card h3,
    .policy-category h3 {
        font-size: 16px;
    }

    .feature-benefit,
    .repair-benefits li,
    .policy-btn {
        font-size: 12px;
    }

    .locations h3 {
        font-size: 18px;
    }

    .locations p,
    .locations li {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f8f9fa;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }
}





