/* Hero Section Styling */
.hero-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(126, 154, 176, 0.1) 100%);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-primary:hover {
    background-color: var(--accent-color);
}

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

/* Programs Section */
.program-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.program-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-card h3 {
    padding: 15px;
    color: var(--primary-color);
}

.program-card p {
    padding: 0 15px 15px;
    color: var(--text-secondary);
}

/* Community Section */
.community-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
}

.community-stats {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-secondary);
}

.community-image {
    flex: 1;
}

.community-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .hero-section .container,
    .community-showcase {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, 
    .hero-image,
    .community-image {
        width: 100%;
        padding: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .program-grid {
        flex-direction: column;
    }
}