/* As We Rise - Sunrise & Elevation Theme */
:root {
    --sunrise-orange: #FF6B35;
    --warm-yellow: #FFD23F;
    --soft-peach: #FFE5D9;
    --deep-purple: #2D1B69;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--warm-yellow) 50%, var(--sunrise-orange) 100%);
    overflow: hidden;
}

.sunrise-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--warm-yellow) 0%, transparent 50%);
    animation: sunrise-glow 8s ease-in-out infinite;
}

@keyframes sunrise-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.rise-text {
    display: block;
    color: var(--deep-purple);
    animation: rise-up 2s ease-out;
}

.together-text {
    display: block;
    color: var(--sunrise-orange);
    animation: rise-up 2s ease-out 0.5s both;
}

@keyframes rise-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--charcoal);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--deep-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sunrise-orange);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--deep-purple);
    color: var(--white);
}

.elevation-indicator {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.step {
    width: 60px;
    height: 8px;
    background: var(--deep-purple);
    border-radius: 4px;
    opacity: 0.3;
    animation: step-rise 3s ease-in-out infinite;
}

.step-1 { animation-delay: 0s; }
.step-2 { animation-delay: 1s; }
.step-3 { animation-delay: 2s; }

@keyframes step-rise {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--deep-purple);
}

/* Programs Section */
.programs {
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.program-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--deep-purple);
}

.program-card p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--sunrise-orange) 100%);
    color: var(--white);
}

.impact .section-title {
    color: var(--white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--warm-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
}

/* About Section */
.about {
    background: var(--light-gray);
}

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

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.join-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--deep-purple);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form .btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
    
    .elevation-indicator {
        right: 1rem;
        bottom: 1rem;
    }
    
    .step {
        width: 40px;
        height: 6px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
} 