* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #8B7355 0%, #A0926B 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
}

/* Navigation Styles */
nav {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 0.5rem 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

nav a:hover, nav a.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/wind-dance-farm-entrance.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: -2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #8B7355, #A0926B);
    color: white;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #5A6B4F;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #5A6B4F;
    margin-bottom: 1rem;
}

/* Quick Links */
.quick-links {
    background: white;
    padding: 3rem 0;
    margin: 2rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-link {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #5A6B4F;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.quick-link:hover {
    background: linear-gradient(135deg, #8B7355 0%, #A0926B 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quick-link h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Photos Section */
.photos-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.no-photos {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.photo-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #5A6B4F;
}

/* News Section */
.news-section {
    background: white;
    padding: 4rem 0;
}

.no-news {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-article {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #8B7355;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.news-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.news-article.featured {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #f8f9fa 100%);
}

.news-photo {
    flex-shrink: 0;
}

.news-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #dee2e6;
}

.news-content {
    flex: 1;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.news-date {
    color: #8B7355;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-article h3 {
    color: #5A6B4F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-article p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.read-more {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #5A6B4F;
}

/* Events Section */
.events-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.no-events {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-left: 4px solid #8B7355;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.event-date-badge {
    background: linear-gradient(135deg, #8B7355, #A0926B);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.event-date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.9;
}

.event-date-badge .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    margin: 0.25rem 0;
}

.event-date-badge .year {
    font-size: 0.8rem;
    opacity: 0.9;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    color: #5A6B4F;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.event-time, .event-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-info p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.event-info .read-more {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-info .read-more:hover {
    color: #5A6B4F;
}
.member-portal {
    background: linear-gradient(135deg, #5A6B4F 0%, #8B7355 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.member-portal h2 {
    margin-bottom: 1rem;
}

.member-portal p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #5A6B4F;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #A0926B;
}

.footer-section p, .footer-section a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

/* Login/Register Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5A6B4F;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5A6B4F;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8B7355;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(139, 115, 85, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0;
        padding: 1rem;
        margin-top: 10px;
        z-index: 1001;
    }

    nav.mobile-active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    nav a {
        display: block;
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* Hero Section Mobile */
    .hero {
        height: 60vh;
        background-position: center 30%;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        margin-top: 1rem !important;
        margin-bottom: -1rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-top: 8rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem;
    }

    /* Quick Links Mobile */
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .quick-link {
        padding: 1rem;
    }

    /* Feature Grid Mobile */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Content Section Mobile */
    .content-section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Photos, News, and Events Mobile */
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .event-date-badge {
        align-self: center;
        min-width: 100px;
    }

    /* News Articles Mobile */
    .news-article {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-photo img {
        width: 100%;
        height: 200px;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    /* Modal Mobile */
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
}