/* Program Page Styles */

.programs-section {
    padding: 6rem 0;
    background: var(--secondary-black);
}

.programs-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--accent-gold);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--primary-black);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.program-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.program-card:hover .program-icon {
    transform: scale(1.1);
    animation: glow 2s ease-in-out infinite;
}

.program-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
}

.program-schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.day {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.time {
    color: var(--text-gray);
    font-size: 1rem;
}

.program-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-features span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.program-leader {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.program-leader strong {
    color: var(--accent-gold);
}

/* Join Section */
.join-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.join-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.join-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;

}

.step {
    background: var(--secondary-black);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    animation: glow 2s ease-in-out infinite;
}

.step h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.join-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .join-steps {
        grid-template-columns: 1fr;
    }

    .program-features {
        flex-direction: column;
        align-items: center;
    }

    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .programs-section {
        padding: 4rem 0;
    }

    .join-section {
        padding: 4rem 0;
    }

    .program-card {
        padding: 2rem 1.5rem;
    }

    .step {
        padding: 2rem 1.5rem;
    }

    .program-schedule {
        flex-direction: column;
        gap: 0.5rem;
    }

    .programs-section h2 {
        font-size: 2.5rem;
    }

    .join-content h2 {
        font-size: 2.5rem;
    }
}