/* DARE Retreat Website Styles */

/* CSS Variables */
:root {
    --color-white: #FFFFFF;
    --color-cream: #F8F2FF;
    --color-lavender-light: #EFEBFF;
    --color-lavender: #C1ADE1;
    --color-purple: #8F70C0;
    --color-purple-dark: #492584;
    --color-navy: #1B004D;
    --color-gold: #FFD485;
    --color-red: #EB5757;
    --color-green: #27AE60;
    --gradient-hero: linear-gradient(135deg, #8F70C0 0%, #492584 100%);
    --gradient-light: linear-gradient(180deg, #EFEBFF 0%, #FFFFFF 100%);
    --gradient-soft: linear-gradient(180deg, #F8F2FF 0%, #FFFFFF 100%);
    --shadow-soft: 0 4px 20px rgba(143, 112, 192, 0.15);
    --shadow-card: 0 8px 32px rgba(27, 0, 77, 0.1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-navy);
    background-color: var(--color-white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 0, 77, 0.95);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-card);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

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

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.nav-cta {
    background: var(--color-gold) !important;
    color: var(--color-navy) !important;
    padding: 12px 24px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(143, 112, 192, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(143, 112, 192, 0.45);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-purple);
    border: 2px solid var(--color-lavender);
}

.btn-secondary:hover {
    background: var(--color-cream);
    border-color: var(--color-purple);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 8px 24px rgba(255, 212, 133, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 212, 133, 0.5);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Hero Section - Contained Image */
.hero-banner {
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--color-dark);
}

.hero-banner a {
    display: block;
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
}

.hero-banner img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Hero Video Section */
.hero-video {
    padding: 60px 0;
    background: var(--gradient-light);
    text-align: center;
}

.hero-video .container {
    max-width: 1200px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.hero-banner img,
.hero-banner video {
    width: 100%;
    height: auto;
    display: block;
}

/* Secondary Hero / Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--gradient-light);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.event-times {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
    display: inline-block;
}

.event-times h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 16px;
}

.event-times ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-times li {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-navy);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-lavender-light);
}

.event-times li:last-child {
    border-bottom: none;
}

.intro-section h1 span {
    color: var(--color-purple);
}

.intro-section p {
    font-size: 1.15rem;
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 32px;
}

.intro-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Problem Section with Images */
.problem {
    padding: 100px 0;
    background: var(--color-white);
}

.problem-grid {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-content p {
    color: var(--color-navy);
    opacity: 0.75;
    margin-bottom: 20px;
}

.problem-highlight {
    background: var(--gradient-soft);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-purple);
    margin-top: 32px;
}

.problem-highlight p {
    font-weight: 600;
    color: var(--color-navy);
    opacity: 1;
    margin: 0;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-purple);
    background: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-navy);
    opacity: 0.7;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.pillar-card-content {
    padding: 32px;
}

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-lavender-light);
    color: var(--color-purple);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--color-navy);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background: var(--color-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.schedule-card {
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.schedule-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--color-navy);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.schedule-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.schedule-card p {
    color: var(--color-navy);
    opacity: 0.75;
    margin-bottom: 16px;
    line-height: 1.7;
}

.schedule-card p:last-child {
    margin-bottom: 0;
}

.schedule-intro {
    font-weight: 600;
    font-style: italic;
    opacity: 0.9 !important;
}

.schedule-highlight {
    font-weight: 600;
    color: var(--color-purple) !important;
    opacity: 1 !important;
}

.schedule-space {
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(139, 115, 179, 0.2);
}

.schedule-space h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.schedule-space p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.8;
}

.schedule-space p:last-child {
    margin-bottom: 0;
}

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

    .schedule-card {
        padding: 30px;
    }

    .schedule-space {
        padding: 30px;
    }
}

/* Mid CTA */
.mid-cta {
    padding: 80px 0;
    background: var(--color-navy);
    text-align: center;
}

.mid-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.mid-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.mid-cta p {
    color: var(--color-lavender);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Outcomes Section */
.outcomes {
    padding: 100px 0;
    background: var(--color-white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.outcome-card {
    background: var(--gradient-soft);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-4px);
}

.outcome-icon {
    width: 64px;
    height: 64px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-soft);
}

.outcome-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-purple);
}

.outcome-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 0.9rem;
    color: var(--color-navy);
    opacity: 0.7;
}

/* Facilitators Section */
.facilitators {
    padding: 100px 0;
    background: var(--color-white);
}

.facilitator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.facilitator-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.facilitator-content {
    padding: 32px;
    text-align: center;
}

.facilitator-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.facilitator-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 20px;
}

.facilitator-card p {
    color: var(--color-navy);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.quote-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.quote-text span {
    color: var(--color-gold);
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 60%);
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta h2 span {
    color: var(--color-purple);
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--color-navy);
    opacity: 0.75;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.final-cta-note {
    font-size: 0.9rem;
    color: var(--color-navy);
    opacity: 0.6;
}

.final-cta-note svg {
    display: inline;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Footer */
footer {
    background: var(--color-navy);
    padding: 48px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--color-lavender);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copyright {
    color: var(--color-lavender);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-navy);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-card);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

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

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

    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    section {
        padding: 60px 0;
    }
}
