/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    text-align: left;
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

/* Enhanced Navigation with Dropdowns */
.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    display: block;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    color: #2d5016;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: #f8f9fa;
    border-left-color: #4a7c59;
    transform: translateX(3px);
}

.dropdown-link.active {
    background: #e8f5e8;
    border-left-color: #4a7c59;
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation Responsive */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    background: white;
    padding: 3rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #7fb069);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Current Campaign Section */
.current-campaign {
    background: linear-gradient(135deg, #d73027 0%, #fc8d59 100%);
    padding: 3rem 0;
    color: white;
}

.campaign-alert {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.campaign-alert h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.campaign-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.campaign-actions {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.campaign-actions h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.action-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.action-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.action-list li:last-child {
    border-bottom: none;
}

.campaign-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.campaign-buttons .btn {
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #d73027;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.campaign-buttons .btn-primary:hover {
    background: white;
    color: #d73027;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.campaign-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.campaign-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Membership Info Section */
.membership-info {
    padding: 3rem 0;
    background: white;
}

.membership-info h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.membership-details {
    text-align: center;
    margin-bottom: 3rem;
}

.membership-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.membership-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4a7c59, #7fb069);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3d6b4c, #6ca055);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.btn-secondary:hover {
    background: #4a7c59;
    color: white;
}

.mission-statement {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.mission-statement h4 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-statement p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.explore-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.explore-link:hover {
    text-decoration: underline;
}

/* Public Resources Section */
.public-resources {
    padding: 3rem 0;
    background: #f8f9fa;
}

.public-resources h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.resource-card h4 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-card p {
    color: #666;
    line-height: 1.5;
}

/* Educational Resources Section */
.educational-resources {
    padding: 3rem 0;
    background: white;
}

.educational-resources h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: center;
}

.educational-resources > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.education-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

.education-card h4 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.education-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.learn-link:hover {
    text-decoration: underline;
}

/* Action Resources Section */
.action-resources {
    padding: 3rem 0;
    background: #f8f9fa;
}

.action-resources h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #7fb069;
}

.action-card h4 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.action-link:hover {
    text-decoration: underline;
}

/* Team Section */
.team {
    padding: 3rem 0;
    background: white;
}

.team h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Collaboration Tools Section */
.collaboration-tools {
    padding: 3rem 0;
    background: #f8f9fa;
}

.collaboration-tools h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tool-card h4 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tool-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.tool-link:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {
    padding: 3rem 0;
    background: white;
}

.contact-form h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form > div > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
footer {
    background: #2d5016;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-note {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-section {
        text-align: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .main-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .logo-section h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .membership-links {
        flex-direction: column;
        align-items: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid,
    .action-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .feature,
    .cta-section,
    .mission-statement {
        padding: 1.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
