:root {
    --primary-green: #2d5a27;
    --light-green: #e9f5e8;
    --accent-flower: #e94e77;
    --text-dark: #333;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    vertical-align: middle;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-left: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
}

/* Layout */
.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Sections */
section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

h3.section-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-green);
    padding-left: 1rem;
}

.news-list {
    list-style: none;
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-weight: 600;
    color: var(--text-light);
    width: 120px;
}

.news-title {
    flex: 1;
}

.news-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-title a:hover {
    text-decoration: underline;
    color: var(--primary-green);
}

/* Sidebar */
aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.banner-box:hover {
    transform: translateY(-5px);
}

.banner-box a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--primary-green);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Member Page Styling */
.member-section {
    margin-bottom: 3rem;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin-top: 1.5rem;
}

.member-card {
    background: var(--bg-gray);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-green);
    font-size: 0.95rem;
    transition: var(--transition);
}

.member-card:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

.member-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 1.5rem;
}

.member-item-simple {
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact Page Styling */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-green);
}

.info-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
}

/* ============================
   Hamburger Menu
   ============================ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo img {
        height: 36px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.35s ease;
        z-index: 1050;
        padding-top: 80px;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 14px 10px;
        font-size: 1rem;
    }

    nav ul li a:hover {
        background: var(--light-green);
    }

    .hero {
        height: 300px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links li {
        margin: 0;
    }
}