/* Custom Section Styles for Flowery Grove Montessori */

/* Hero Section Custom Styles */
.hero-section.custom-hero {
    background: linear-gradient(135deg, #FEF4DE 0%, #FFE8C5 100%);
    position: relative;
    overflow: hidden;
}

.hero-section.custom-hero .hero-content {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section Custom Styles */
.about-section.custom-about {
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
    position: relative;
}

.about-section.custom-about .about-content {
    padding: 20px 0;
}

.about-section.custom-about .about-text {
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Programs Section Custom Styles */
.program-section.custom-programs {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F9FF 100%);
}

.program-section.custom-programs .program-box-items {
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.program-section.custom-programs .program-box-items:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section Custom Styles */
.choose-us-section.custom-choose {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
    position: relative;
}

.choose-us-section.custom-choose .choose-us-content {
    padding: 30px 0;
}

.choose-us-section.custom-choose .about-list-items ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #385469;
    font-weight: 500;
}

/* Footer Section Custom Styles */
.footer-section.custom-footer {
    background: linear-gradient(180deg, #3d5a6c 0%, #2d4a5c 100%);
    position: relative;
}

.footer-section.custom-footer .footer-content p {
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.footer-section.custom-footer .footer-widget-items h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section.custom-footer .gt-list-area li a {
    color: #FFFFFF;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section.custom-footer .gt-list-area li a i {
    color: #F39F5F;
    font-size: 12px;
}

.footer-section.custom-footer .gt-list-area li a:hover {
    color: #F39F5F;
    opacity: 1;
    padding-left: 5px;
}

.footer-section.custom-footer .footer-widget-items .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.custom-footer .footer-widget-items .contact-info li {
    color: #FFFFFF;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-section.custom-footer .footer-widget-items .contact-info li i {
    color: #F39F5F;
    margin-top: 3px;
    font-size: 16px;
}

.footer-section.custom-footer .footer-widget-items .contact-info li a {
    color: #FFFFFF;
    opacity: 0.9;
    word-break: break-word;
}

.footer-section.custom-footer .footer-widget-items .contact-info li a:hover {
    color: #F39F5F;
    opacity: 1;
}

.footer-section.custom-footer .social-icon a {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.footer-section.custom-footer .social-icon a:hover {
    background: #F39F5F;
    color: #FFFFFF;
}

.footer-section.custom-footer .footer-text {
    color: #FFFFFF;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section.custom-hero .hero-title {
        font-size: 32px;
    }
    
    .about-section.custom-about .about-content {
        padding: 10px 0;
    }
    
    .program-section.custom-programs .program-box-items {
        margin-bottom: 20px;
    }
}

/* Additional Animation Effects */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Button Hover Effects */
.theme-btn.custom-btn {
    position: relative;
    overflow: hidden;
}

.theme-btn.custom-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.theme-btn.custom-btn:hover::before {
    width: 300px;
    height: 300px;
}
