:root {
    --primary-color: #016016;
    --secondary-color: #f8b739;
    --accent-color: #e63946;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    bottom: 20%;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.notice-board {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.notice-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.notice-item:last-child {
    border-bottom: none;
}

.board-member {
    text-align: center;
    margin-bottom: 30px;
}

.board-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

.download-item {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--light-color);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.download-item:hover {
    background-color: #e9ecef;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-item img {
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.link-item {
    padding: 10px 15px;
    background-color: var(--light-color);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.link-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.badge-new {
    background-color: var(--accent-color);
}

.quick-links {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
}

.quick-link-item {
    text-align: center;
    padding: 10px;
    transition: all 0.3s;
}

.quick-link-item:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.quick-link-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .hero-section, .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        bottom: 10%;
        padding: 15px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}