* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: #d8d3d3;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

.hidden {
    display: none;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 10px;
    background-color: #ffffff;
    margin: -40px -40px 40px;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover {
    color: #ff4a4a;
}

.nav-btn {
    background-color: #ff4a4a;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    transition: .3s;
}

.nav-btn:hover {
    background-color: #c80303;
}

#menu-knop {
    display: none;
}

/* HERO */
.hero {
    min-height: 60vh;
    background-color: #ff4848;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.hero-text {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    color: #000;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #393636;
}

.hero-icon {
    width: 300px;
    height: auto;
}

.hero-btn {
    background-color: rgb(211,19,19);
    color: #000;
    padding: 15px 40px;
    border-radius: 25px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: .3s;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: #c80303;
    transform: translateY(-12px);
}

/* PROJECTEN */
.container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background-color: #ffffff;
    width: 300px;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-20px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
}

.card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 12px;
}

.card-beschrijving {
    font-size: 16px;
    color: #4b4747;
    margin: 10px 0 18px;
    line-height: 1.5;
}

.card-more {
    margin-top: auto;
}

.card-more a {
    display: inline-block;
    background-color: #ff4a4a;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.card-more a:hover {
    background-color: #c80303;
}

/* WAAROM */
.waarom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #ffffff;
    padding: 60px 40px;
    margin-top: 40px;
    border-radius: 24px;
}

.waarom-content {
    flex: 1;
    max-width: 500px;
}

.waarom-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.waarom-content ul {
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.waarom-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.waarom-content li::before {
    content: "✓";
    color: #59ff00;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}



/* CODE WINDOW */
.code-window {
    width: 460px;
    background: #1e1e2f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    font-family: Consolas, monospace;
    flex-shrink: 0;
}

.code-header {
    background: #2c3142;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.window-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-buttons .red    { background: #ff5f57; }
.window-buttons .yellow { background: #febc2e; }
.window-buttons .green-dot { background: #28c840; }

.file-name {
    color: #5dcfff;
    font-weight: bold;
    font-size: 14px;
}

.code-window pre {
    margin: 0;
    padding: 24px;
    color: #d4d4d4;
    line-height: 1.8;
    font-size: 14px;
}

.blue   { color: #66d9ef; }
.green  { color: #98c379; }
.orange { color: #e5c07b; }

/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 20px 40px;
    margin: 40px -40px -40px;
}                                                                                  

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b4747;
}

@media (max-width: 768px) {
    body { padding: 20px; }

    .navbar {
        padding: 20px;
        margin: -20px -20px 24px;
    }

    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 { font-size: 32px; }
    .hero p  { font-size: 17px; }
    .hero-icon { width: 120px; }

    .hero-btn:hover,
    .card:hover {
        transform: none;
    }

    .container {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .card {
        width: 100%;
        max-width: 360px;
    }

    .waarom {
        flex-direction: column;
        padding: 40px 20px;
    }

    .code-window {
        width: 100%;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        margin: 40px 0 0;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    #menu-knop {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    #menu {
        display: none;
        flex-direction: column;
    }

    #menu.open {
        display: flex;
    }
}

@media (max-width: 480px) {
    body { padding: 14px; }

    .navbar {
        margin: -14px -14px 20px;
        padding: 18px 14px;
    }

    .hero { padding: 30px 14px; }
    .hero h1 { font-size: 28px; }
    .hero p  { font-size: 16px; }
    .hero-icon { width: 90px; }

    .card { padding: 16px; }
    .card h2 { font-size: 22px; }
    .card img { height: 170px; }
    .footer { padding: 20px 14px; }
}


.contact-section {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
}

.contact-section h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-section p {
    color: #4b4747;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;            
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none; 
}

.contact-form textarea {
    height: 140px;       
    resize: none;         
}

.contact-form button {
    display: inline-block;
    background-color: rgb(211, 19, 19);
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;    
    cursor: pointer; 
}

.contact-form button:hover {
    transform: translateY(-5px);  
    background-color: #b30707;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid #ff4a4a;
}

#naam-fout {
    color: red;
}

#email-fout {
    color: red;
}

#telefoon-fout {
    color: red;
}

@media (max-width: 768px) {
    .prijzen {
        flex-direction: column;
    }
    
    .basic, .professioneel, .compleet {
        width: 100%;
    }
}.prijzen-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 50px;
    text-align: center;
}

.prijzen-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.prijzen {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    flex: 1;    
}

.prijzen h2 {
    font-size: 24px; 
    font-weight: 600;
    color: #000000;
}

.prijzen p {
    font-size: 20px;
    color: #4b4747;
}

.professioneel {
    border: 2px solid #ff4a4a;
}
.basic, .professioneel, .compleet {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    transition: transform .3s ease;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1;
    text-align: center;
}

.basic:hover, .professioneel:hover, .compleet:hover {
    transform: translateY(-20px);
}

.basic button, .professioneel button, .compleet button {
    background-color: #ff4a4a;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: auto;
    cursor: pointer;
}

.basic ul, .professioneel ul, .compleet ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
    text-align: left;
}

.basic li, .professioneel li, .compleet li {
    font-size: 14px;
    color: #4b4747;
}

.basic li::before, 
.professioneel li::before, 
.compleet li::before {
    content: "✓ ";
    color: #ff4a4a;
    font-weight: bold;
}

.prijs {
    font-size: 48px;
    font-weight: 700;
    color: #ff4a4a;
    margin: 12px 0;
}

.populair-badge {
    background-color: #ff4a4a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.vergelijking {
    max-width: 800px;
    margin: 40px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 24px;
}

.ja  { color: green; font-weight: bold; }
.nee { color: red;   font-weight: bold; }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

th {
    background-color: #ff4a4a;
    color: #fff;
    padding: 14px;
    font-size: 16px;
}

td {
    padding: 12px 14px;
    font-size: 15px;
    color: #4b4747;
    border-bottom: 1px solid #e0e0e0;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.over-mij {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 40px;
    border-radius: 40px;
    text-align: center;
    font-size: 20px;
    color: #1a1a1a;
    border-top: 4px solid #ff4a4a;
    font-weight: 600;
}

.cta {
    text-align: center;
    padding: 60px 40px;
    margin-top: 40px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-btn {
    background-color: rgb(211,19,19);
    color: #000;
    padding: 15px 40px;
    border-radius: 25px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: .3s;
    cursor: pointer;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-12px);
}

.cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.cta a {
    text-decoration: none;
}