body {
    font-family: 'Poppins', sans-serif;
}

.font-display {
    font-family: 'Fredoka', sans-serif;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

.shape-circle {
    border-radius: 50%;
}

.shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.about-card,
.program-card,
.teacher-card,
.testimonial-card,
.gallery-item,
.schedule-item,
.about-header,
.programs-header,
.teachers-header,
.testimonials-header,
.gallery-header,
.schedule-header {
    opacity: 1 !important;
}

.gallery-item {
    cursor: pointer;
}

#lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

#lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #FF8A3D;
    transform: rotate(90deg);
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 138, 61, 0.8);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #FF8A3D !important;
}

.gallery-swiper .swiper-pagination-bullet {
    background: #FF8A3D !important;
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Fix hero h1 line-height to prevent letter cutoff */
.hero-text h1 {
    line-height: 1.2 !important;
}