/* Home Page v2 Styles */

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.video-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.video-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* V2 Buttons */
.btn-v2-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--background-white);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-v2-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.btn-v2-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-green);
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-v2-secondary:hover {
    background: var(--primary-green);
    color: var(--background-white);
    transform: translateY(-2px);
}

/* V2 Hero Section */
.v2-hero {
    background: var(--background-white);
    padding: 80px 0;
}

.v2-hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.v2-hero-content {
    flex: 1;
}

.v2-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 28px;
    max-width: 600px;
}

.v2-hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 600px;
}

.v2-hero-actions {
    display: flex;
    gap: 16px;
}

.v2-hero-image {
    flex-shrink: 0;
    width: 550px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.v2-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* V2 Mission Section */
.v2-mission {
    background: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.v2-mission-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.v2-mission-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 auto 40px auto;
    max-width: 900px;
}

.v2-mission-text {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
}

/* V2 Values Section */
.v2-values {
    background: var(--background-white);
    padding: 80px 0;
}

.v2-values-header {
    text-align: center;
    margin-bottom: 56px;
}

.v2-values-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.v2-values-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.v2-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 32px;
    justify-content: center;
    max-width: 1266px;
    margin: 0 auto;
}

.v2-value-card {
    padding: 48px;
    border-radius: 20px;
    text-align: left;
}

.v2-value-compassion {
    background: var(--primary-green-light);
}

.v2-value-collaboration {
    background: var(--accent-yellow-light);
}

.v2-value-courage {
    background: #FFF4ED;
}

.v2-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.v2-value-compassion .v2-value-icon {
    background: var(--primary-green);
    color: var(--background-white);
}

.v2-value-collaboration .v2-value-icon {
    background: var(--accent-yellow);
    color: var(--background-white);
}

.v2-value-courage .v2-value-icon {
    background: var(--accent-orange);
    color: var(--background-white);
}

.v2-value-icon svg {
    width: 32px;
    height: 32px;
    color: inherit;
}

/* Fallback for font icons if needed */
.v2-value-icon i {
    font-size: 32px !important;
    width: 32px;
    height: 32px;
    display: inline-block;
    line-height: 1;
}

.v2-value-card h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.v2-value-card p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* V2 Programs Section */
.v2-programs {
    background: var(--background-light);
    padding: 80px 0;
}

.v2-programs-header {
    margin-bottom: 48px;
}

.v2-programs-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.v2-programs-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.v2-programs-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.v2-programs-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.v2-program-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.v2-program-image {
    height: 320px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.v2-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-program-content {
    padding: 24px 32px 32px 32px;
}

.v2-program-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.v2-program-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Program Card Colors */
.v2-program-health {
    background: var(--primary-green);
}

.v2-program-health .v2-program-content h3 {
    color: var(--background-white);
}

.v2-program-health .v2-program-content p {
    color: rgba(255, 255, 255, 0.75);
}

.v2-program-tutoring {
    background: var(--accent-orange);
}

.v2-program-tutoring .v2-program-content h3 {
    color: var(--background-white);
}

.v2-program-tutoring .v2-program-content p {
    color: rgba(255, 255, 255, 0.75);
}

.v2-program-scholarships {
    background: var(--primary-green-dark);
}

.v2-program-scholarships .v2-program-content h3 {
    color: var(--background-white);
}

.v2-program-scholarships .v2-program-content p {
    color: rgba(255, 255, 255, 0.75);
}

.v2-program-workshops {
    background: var(--accent-yellow);
}

.v2-program-workshops .v2-program-content h3 {
    color: var(--text-primary);
}

.v2-program-workshops .v2-program-content p {
    color: rgba(26, 25, 24, 0.75);
}

.v2-program-service {
    background: var(--primary-green-light);
}

.v2-program-service .v2-program-content h3 {
    color: var(--text-primary);
}

.v2-program-service .v2-program-content p {
    color: rgba(26, 25, 24, 0.75);
}

.v2-program-language {
    background: #E8F5E9;
}

.v2-program-language .v2-program-content h3 {
    color: var(--text-primary);
}

.v2-program-language .v2-program-content p {
    color: rgba(26, 25, 24, 0.75);
}

/* V2 Impact Section */
.v2-impact {
    background: var(--primary-green);
    padding: 80px 0;
    text-align: center;
}

.v2-impact-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--background-white);
    margin-bottom: 48px;
}

.v2-impact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.v2-impact-stat {
    text-align: center;
}

.v2-stat-number {
    font-size: 56px;
    font-weight: bold;
    color: var(--background-white);
    margin-bottom: 12px;
    line-height: 1;
}

.v2-stat-label {
    font-size: 18px;
    color: #E8F5E9;
    font-weight: 400;
}

/* V2 CTA Section */
.v2-cta {
    background: var(--background-white);
    padding: 100px 0;
    text-align: center;
}

.v2-cta-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.v2-cta-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.v2-cta-text {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.v2-cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .v2-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .v2-hero-title {
        font-size: 56px;
        max-width: none;
    }
    
    .v2-hero-image {
        width: 100%;
        height: 400px;
    }
    
    .v2-values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 24px;
    }
    
    .v2-value-card {
        padding: 40px;
    }
    
    .v2-programs-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v2-hero-title {
        font-size: 42px;
    }
    
    .v2-hero-subtitle {
        font-size: 18px;
    }
    
    .v2-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .v2-mission-title,
    .v2-values-title,
    .v2-programs-title,
    .v2-impact-title,
    .v2-cta-title {
        font-size: 36px;
    }
    
    .v2-mission-text,
    .v2-programs-subtitle,
    .v2-cta-text {
        font-size: 18px;
    }
    
    .v2-value-card h3 {
        font-size: 26px;
    }
    
    .v2-value-card p {
        font-size: 16px;
    }
    
    .v2-impact-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .v2-stat-number {
        font-size: 42px;
    }
    
    .v2-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}