/* Main Website Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
    color: #333;
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-slider .carousel-item {
    height: 400px;
    background-color: #555;
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-slider .carousel-caption {
    bottom: 20%;
    background-color: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 5px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.teacher-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.notice-item {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.notice-item:hover {
    background-color: #f8f9fa;
}

.badge-academic {
    background-color: var(--primary-color);
}

.badge-exam {
    background-color: var(--danger-color);
}

.badge-event {
    background-color: var(--success-color);
}

.footer {
    background-color: var(--dark-color);
    color: white;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 300px;
    }
    
    .hero-slider .carousel-caption {
        bottom: 10%;
    }
}