﻿body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar-custom {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    transition: background 0.3s;
}

    .navbar-custom.scrolled {
        background: rgba(255,255,255,0.95);
    }

.navbar-logo {
    height: 50px;
}

/* Hero */
.hero-section {
    background: linear-gradient(rgba(30,126,52,.9), rgba(20,90,50,.9)), url('/images/fallback.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    margin-top: 70px;
    text-align: center;
}

/* Cards */
.news-card, .event-card, .gallery-item, .stat-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform .3s;
}

    .news-card:hover,
    .event-card:hover,
    .gallery-item:hover,
    .stat-box:hover {
        transform: translateY(-5px);
    }

    .news-image, .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

/* Sections */
.news-section,
.photo-gallery,
.member-section {
    padding: 60px 0;
}

.events-section,
.about-section {
    padding: 60px 0;
    background: #fff;
}

/* Titles */
.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 80px;
        height: 3px;
        background: #1e7e34;
        transform: translateX(-50%);
    }

/* Footer */
footer {
    background: #212529;
    color: #fff;
}
