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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 3px solid #4a7c59;
    padding: 20px 0 0 0;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    padding: 20px 0;
}

.logo img {
    height: 150px;
    width: auto;
}

.facebook-link img {
    height: 50px;
    width: auto;
}

/* Navigation */
nav {
    width: 100%;
    padding: 15px 0;
    position: relative;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 3px;
    background: #4a7c59;
}

nav > ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #4a7c59;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav a:hover {
    color: #2d5038;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 2px solid #4a7c59;
    border-top: none;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #4a7c59;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f0f0f0;
    color: #2d5038;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 450px;
    overflow: hidden;
    background: #fff;
    margin: 0 auto;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Content */
main {
    min-height: 60vh;
    padding: 40px 0;
}

h1 {
    color: #4a7c59;
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    color: #4a7c59;
    margin: 30px 0 15px;
}

p {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #4a7c59;
    color: #fff;
    padding: 30px 0 10px;
    margin-top: 40px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
    text-align: center;
    font-size: 0.9em;
}

/* Calendar page */
.calendar-links {
    list-style: none;
    margin: 20px 0;
}

.calendar-links li {
    margin: 15px 0;
    padding: 15px;
    background: #f4f4f4;
    border-left: 4px solid #4a7c59;
}

.calendar-links a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

.calendar-links a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    nav > ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        border: none;
        border-top: 1px solid #4a7c59;
    }
    
    .logo img {
        height: 120px;
    }
    
    .facebook-link img {
        height: 35px;
    }
    
    .slideshow {
        height: 300px;
    }
}
