/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #270A47; /* Deep purple - Stoicism */
    --primary: #7634BF; /* Vibrant purple */
    --primary-light: #9B51E0;
    --accent-orange: #FF6B35; /* Rad energy */
    --accent-orange-light: #FF8F5A;
    --text-dark: #1d1e20;
    --text-gray: #5f6368;
    --text-light: #ffffff;
    --bg-light: #F8F9FA;
    --bg-white: #ffffff;
    --bg-news: ##FF6666;
    --gradient: linear-gradient(135deg, #7634BF 0%, #FF6B35 100%);
    --gradient-animated: linear-gradient(270deg, #7634BF, #9B51E0, #FF6B35);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(39, 10, 71, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: rgba(39, 10, 71, 0.98);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

.nav-links a.cta-nav {
    background: var(--gradient);
    padding: 10px 24px;
    border-radius: 25px;
    color: white;
}

.nav-links a.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.nav-links a.cta-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0830 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(155, 81, 224, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 40px 60px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chris-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.chris-image:hover {
    transform: scale(1.02);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(118, 52, 191, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   SPEAKING SECTION
   =================================== */

.speaking {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #2b0e4a 0%, #7634BF 100%);
    color: var(--text-light);
}

.speaking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.speaking-text h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.speaking-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.speaking-outcomes {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.speaking-outcomes h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.speaking-outcomes ul {
    list-style: none;
    padding: 0;
}

.speaking-outcomes li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-gray);
}

.speaking-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 20px;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 40px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.cta-button-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(118, 52, 191, 0.3);
}

.speaking-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.speaking-text h2 { color: #fff; }
.speaking-text p { color: rgba(255,255,255,0.9); }

.speaking-outcomes {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}
.speaking-outcomes h3 { color: #fff; }
.speaking-outcomes li { color: rgba(255,255,255,0.9); }
.speaking-outcomes li::before { color: var(--accent-orange); }

.cta-button-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.cta-button-secondary:hover {
    background: #fff;
    color: #2b0e4a;
    box-shadow: 0 6px 25px rgba(118,52,191,0.35);
}


/* ===================================
   MYTH-BUSTER SECTION
   =================================== */

.myth-buster {
    padding: var(--section-padding);
    background: var(--bg-light);
    color: var(--text-dark);
}
.myth-content h2 { color: var(--primary-dark); }
.myth-answer { color: var(--text-gray); }

.myth-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.myth-content h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 24px;
}

.myth-answer {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.myth-image {
    max-width: 700px;
    margin: 0 auto;
}

.myth-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   VIDEO SECTION
   =================================== */

.video-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
    color: white;
}

.video-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.video-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 12px;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.testimonials h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(118, 52, 191, 0.15);
}

.stars {
    color: var(--accent-orange);
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.newsletter {
    padding: var(--section-padding);
    background: var(--bg-news);
    color: var(--text-dark);
}
.newsletter-form-wrapper {
    /* was translucent white on dark; make it a subtle card on light */
    background: rgba(39, 10, 71, 0.06);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.form-group label {
    color: var(--text-dark);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-family: var(--font-primary);
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.newsletter-text p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.newsletter-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: white;
}

.form-group input {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.submit-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-note {
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
    margin-top: -8px;
}

/* NEWSLETTER (second one) — distinct dark gradient */
.newsletter.newsletter-alt {
    background: linear-gradient(135deg, #341a5f 0%, #7634BF 100%);
    color: #fff;
}
.newsletter.newsletter-alt .form-group label { color: #fff; }
.newsletter.newsletter-alt .newsletter-form-wrapper {
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    backdrop-filter: blur(10px);
}


/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 18px;
    color: var(--accent-orange);
    font-style: italic;
}

.footer-contact h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        gap: 24px;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 20px 40px;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 18px;
    }

    .about-content,
    .speaking-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    :root {
        --section-padding: 60px 20px;
    }

    h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 12px 28px;
        font-size: 16px;
    }

    .feature-card,
    .testimonial-card {
        padding: 24px;
    }

    h2 {
        font-size: 28px !important;
    }

    .newsletter-form-wrapper {
        padding: 28px;
    }
}
