/* Basis stijlen */
:root {
    --primary-color: #ff6b64;
    --secondary-color: #ff8885;
    --accent-color: #f97316;
    --text-color: #2D2D2D;
    --light-gray: #f8f9fa;
    --success-green: #10b981;
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Header en navigatie */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--text-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Verwijder de onderstreping */
.nav-links a::after {
    display: none;
}

.nav-links a.contact-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a.contact-button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Website Page Specific Styles */
.website-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.website-hero::before,
.website-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.website-hero::before {
    top: -100px;
    left: -100px;
    transform: translate(-50%, -50%);
}

.website-hero::after {
    bottom: -100px;
    right: -100px;
    transform: translate(50%, 50%);
}

.website-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.website-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.website-hero h1 span {
    display: block;
}

.website-hero h1 span:first-child {
    font-size: 3.5rem;
}

.website-hero h1 span:last-child {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(255, 107, 100, 0.1);
    padding: 5px 15px;
    border-radius: 10px;
    transform: rotate(-1deg);
}

.website-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #495057;
}

.website-hero .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #212529;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.website-hero .cta-button:hover {
    background-color: #343a40;
    transform: translateY(-2px);
}

/* Verwijder deze selectors */
.hero-showcase,
.showcase-examples,
.example-card,
.example-before,
.example-after,
.label,
.testimonials,
.testimonial-card,
.testimonial-content,
.testimonial-author,
.author-info {
    display: none;
}

.website-features {
    display: none;
}

/* Verwijder of verberg de rest van de feature gerelateerde CSS */
.feature-grid,
.feature-card,
.feature-card i,
.feature-card h3,
.feature-card p {
    display: none;
}

.website-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.website-pricing h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price-header {
    margin-bottom: 30px;
}

.price-header h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-features i {
    color: var(--primary-color);
}

.price-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.price-button:hover {
    background: var(--secondary-color);
}

.website-process {
    padding: 80px 0;
    background: white;
}

.website-process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.website-cta {
    padding: 80px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

.price-period {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--light-gray);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .feature-grid,
    .pricing-container,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .website-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .website-hero h1 {
        font-size: 2.5rem;
    }

    .website-hero p {
        font-size: 1.1rem;
    }

    .website-hero::before,
    .website-hero::after {
        width: 300px;
        height: 300px;
    }

    .website-hero::before {
        top: -50px;
        left: -50px;
    }

    .website-hero::after {
        bottom: -50px;
        right: -50px;
    }

    .feature-grid,
    .pricing-container,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .nav-links {
        gap: 15px;
    }

    .website-cta {
        padding: 60px 5%;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .website-hero {
        padding: 120px 0 40px;
    }

    .website-hero h1 {
        font-size: 2rem;
    }

    .website-hero p {
        font-size: 1rem;
    }

    .website-hero::before,
    .website-hero::after {
        width: 200px;
        height: 200px;
    }
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 3;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .how-it-works {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        grid-template-columns: 1fr;
    }
}

.nav-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.contact-form-section {
    padding: 80px 10%;
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 5%;
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
    }
    
    .contact-form-container p {
        font-size: 1.1rem;
    }
}

.newsletter-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.newsletter-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
} 