/* Modern School Website Styles */

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    font-family: var(--font-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-placeholder {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--color-primary);
    background-color: #f8f9fa !important;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card .card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
}

.service-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-arrow {
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Notice & Blog Section */
.notice-blog-section {
    padding: 80px 0;
}

.notice-card .card,
.blog-card .card {
    border-radius: 12px;
    overflow: hidden;
}

.notice-item,
.blog-item {
    transition: background-color 0.3s ease;
}

.notice-item:hover,
.blog-item:hover {
    background-color: #f8f9fa;
}

.notice-title a,
.blog-title a {
    transition: color 0.3s ease;
}

.notice-title a:hover,
.blog-title a:hover {
    color: var(--color-primary) !important;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-overlay {
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 80px 0;
}

.video-card .card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
    border-radius: 8px 8px 0 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card .card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-quote i {
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 162, 189, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 162, 189, 0.3);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

/* Clean Shadows */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-section,
    .services-section,
    .notice-blog-section,
    .gallery-section,
    .video-gallery-section,
    .testimonials-section {
        padding: 60px 0;
    }
}

/* Carousel Indicators (keeping slider as is but making indicators cleaner) */
#heroCarousel .carousel-indicators button {
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    border: none;
    margin: 0 4px;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14, 162, 189, 0.3);
}

/* Clean spacing for main layout */
#main {
    background-color: #ffffff !important;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-item img {
    border-radius: 8px;
}

/* Professional color adjustments */
.bg-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) !important;
}

.bg-success {
    background: linear-gradient(135deg, #28a745, #34ce57) !important;
}

/* Card header improvements */
.card-header {
    border-bottom: none !important;
    font-weight: 600;
}

/* Badge improvements */
.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
    border-radius: 6px;
}
