/* Joyful Youth Foundation - Vibrant Playful Design */
:root {
    --electric-blue: #4ECDC4;
    --hot-pink: #FF6B9D;
    --sunshine-yellow: #FFE66D;
    --lime-green: #95E1D3;
    --pure-white: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
}

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

body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--electric-blue) 100%);
}

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

/* Animated Background Shapes */
.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--hot-pink);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--sunshine-yellow);
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--electric-blue);
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--lime-green);
    top: 30%;
    right: 30%;
    animation-delay: 3s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: var(--hot-pink);
    top: 70%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--hot-pink);
}

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

.nav-logo h2 {
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: var(--sunshine-yellow);
    color: var(--text-primary);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--electric-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--hot-pink), var(--electric-blue), var(--sunshine-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* Joy Meter */
.joy-meter {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 25px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--sunshine-yellow);
}

.joy-meter h3 {
    color: var(--hot-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.meter-container {
    position: relative;
    background: #f0f0f0;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lime-green), var(--electric-blue), var(--hot-pink));
    border-radius: 15px;
    transition: width 2s ease-in-out;
    animation: pulse 2s ease-in-out infinite;
}

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

.meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-button.primary {
    background: var(--hot-pink);
    color: var(--pure-white);
}

.cta-button.secondary {
    background: var(--sunshine-yellow);
    color: var(--text-primary);
    border: 3px solid var(--hot-pink);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 3rem;
    animation: bounce 3s ease-in-out infinite;
}

.floating-item:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-item:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.floating-item:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.floating-item:nth-child(4) { top: 70%; right: 25%; animation-delay: 1.5s; }
.floating-item:nth-child(5) { top: 80%; left: 30%; animation-delay: 2s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: var(--pure-white);
}

.programs h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--electric-blue);
    font-weight: 700;
}

.program-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    padding: 1rem;
}

.program-card {
    min-width: 280px;
    background: linear-gradient(135deg, var(--lime-green), var(--electric-blue));
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(0.9);
    opacity: 0.7;
}

.program-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.program-card h3 {
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.enroll-btn {
    background: var(--sunshine-yellow);
    color: var(--text-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.enroll-btn:hover {
    background: var(--hot-pink);
    color: var(--pure-white);
    transform: scale(1.05);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--electric-blue);
    color: var(--pure-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--hot-pink);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lime-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--hot-pink);
    transform: scale(1.2);
}

/* Youth Voices */
.youth-voices {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sunshine-yellow), var(--lime-green));
}

.youth-voices h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.voice-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.voice-card:hover {
    transform: translateY(-5px);
    border-color: var(--hot-pink);
}

.voice-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.voice-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.voice-card cite {
    color: var(--electric-blue);
    font-weight: 700;
}

/* Activity Timeline */
.activity-timeline {
    padding: 5rem 0;
    background: var(--pure-white);
}

.activity-timeline h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--electric-blue);
}

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

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--lime-green), var(--electric-blue));
    border-radius: 15px;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-day {
    background: var(--hot-pink);
    color: var(--pure-white);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    margin-right: 1rem;
    min-width: 100px;
    text-align: center;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content .time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Enrollment Section */
.enrollment {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--hot-pink), var(--electric-blue));
    color: var(--pure-white);
}

.enrollment h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.enrollment-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enrollment-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    background: var(--sunshine-yellow);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.step-content h4 {
    color: var(--sunshine-yellow);
    margin-bottom: 0.5rem;
}

.enrollment-form {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 25px;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--electric-blue);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--lime-green);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--hot-pink);
    transform: scale(1.02);
}

.submit-btn {
    background: var(--hot-pink);
    color: var(--pure-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--sunshine-yellow);
    color: var(--text-primary);
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--pure-white);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--electric-blue);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    background: linear-gradient(135deg, var(--lime-green), var(--electric-blue));
    padding: 2rem;
    border-radius: 25px;
    color: var(--pure-white);
}

.contact-item h3 {
    color: var(--sunshine-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Social Share */
.social-share {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.share-btn {
    background: var(--hot-pink);
    color: var(--pure-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.share-btn:hover {
    background: var(--sunshine-yellow);
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .enrollment-content {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        flex-direction: column;
    }
    
    .program-card {
        min-width: auto;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-day {
        margin-right: 0;
        margin-bottom: 1rem;
    }
} 