/* ===========================================
   THACITO LANDINGSPAGINA - AANPASBARE KLEUREN
   Pas onderstaande variabelen aan naar jouw branding
   =========================================== */

:root {
    /* ========== HOOFDKLEUREN - PAS DEZE AAN ========== */
    --primary-color: #4b0082;        /* Hoofdkleur (donkerblauw) */
    --secondary-color: #1e97af;      /* Accentkleur (rood) */
    --accent-color: #3498DB;         /* Extra accent (lichtblauw) */
    --highlight-color: #f6ea3b;      /* Highlight kleur (oranje) */
    
    /* ========== ACHTERGRONDKLEUREN ========== */
    --bg-light: #FFFFFF;             /* Lichte achtergrond */
    --bg-dark: #1A252F;              /* Donkere achtergrond */
    --bg-gray: #F8F9FA;              /* Grijze achtergrond */
    
    /* ========== TEKSTKLEUREN ========== */
    --text-dark: #2C3E50;            /* Donkere tekst */
    --text-light: #FFFFFF;           /* Lichte tekst */
    --text-muted: #7F8C8D;           /* Gedempte tekst */
    
    /* ========== OVERIGE INSTELLINGEN ========== */
    --border-radius: 12px;
    --box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-light);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--highlight-color);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.benefits-list i {
    color: var(--highlight-color);
    margin-right: 10px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(140, 60, 231, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(60, 220, 231, 0.5);
}

.price-tag {
    margin-top: 15px;
    font-size: 1.1rem;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: rotate(3deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* For Who Section */
.for-who {
    padding: 100px 0;
    background: var(--bg-gray);
    text-align: center;
}

.for-who h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card p {
    color: var(--text-muted);
}

/* What You Learn */
.what-you-learn {
    padding: 100px 0;
    text-align: center;
}

.what-you-learn h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

.learning-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.learning-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.learning-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.learning-item p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: left;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .author strong {
    display: block;
}

.testimonial .author span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Purchase Section */
.purchase {
    padding: 100px 0;
    background: var(--bg-gray);
}

.purchase-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.purchase h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.purchase-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-display {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 15px;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.purchase-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
}

.checkbox-group a {
    color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: #8a2be2;
    transform: translateY(-2px);
}

.secure-text {
    text-align: center;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.secure-text i {
    color: #27AE60;
}

/* Author Section */
.author {
    padding: 100px 0;
}

.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.author-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.author h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.author p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.author-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.7;
    text-decoration: none;
    margin: 0 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 300px;
        transform: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-image img {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    .learning-grid {
        grid-template-columns: 1fr;
    }
    .learning-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .hero-image img {
        max-width: 75%;
        transform: none;
    }
    .hero-text {
        text-align: center;
        font-size: 1rem;
    }
    h1 {
        font-size: 1.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .purchase-box {
        padding: 40px 30px;
    }
    .current-price {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .purchase-box {
        padding: 30px 20px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}
