/* School Website Styles */
:root {
    --primary: #1a237e; /* Dark Blue */
    --secondary: #ffc107; /* Amber/Yellow */
    --accent: #d32f2f; /* Red */
    --text-dark: #333;
    --text-light: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 24px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-admission {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

/* Hero Slider */
.hero-slider .carousel-item {
    height: 85vh;
    background-size: cover;
    background-position: center;
}

.hero-slider .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
}

.hero-slider h1 {
    font-size: 72px;
    font-weight: 800;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.hero-slider p {
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-slider .carousel-item { height: 60vh; }
    .hero-slider h1 { font-size: 36px; }
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Admission Section */
.admission-banner {
    padding: 100px 0;
    background: #f9f9f9;
}

.banner-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
}

.banner-content {
    flex: 1;
    padding: 60px;
    min-width: 300px;
}

.banner-image {
    flex: 1;
    min-width: 300px;
    background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
}

.badge-2026 {
    background: var(--accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

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

.gallery-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #111;
    color: #999;
    padding: 80px 0 30px;
}

footer h4 {
    color: #fff;
    margin-bottom: 25px;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #fff;
}
