/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Quicksand:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.25rem;
}

.tagline {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background-color: white;
    color: #333;
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2d5016;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #f4a261;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.cta-button:hover {
    background-color: #e89450;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

/* Park Image Section */
.park-image {
    padding: 3rem 0;
    background-color: white;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.photo-credit {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: italic;
}

.photo-credit a {
    color: #4a7c2c;
    text-decoration: none;
}

.photo-credit a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2d5016;
}

.feature p {
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d5016;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2d5016;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Join Section */
.join {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: white;
    text-align: center;
}

.join h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.join p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-options {
    margin-top: 2rem;
}

.contact-options p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.contact-options a {
    color: #ffd89b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-options a:hover {
    color: #fff;
}

/* Footer */
footer {
    background-color: #1a2f0d;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        padding: 3rem 0;
    }

    header h1 {
        font-size: 1.6rem;
    }

    .about h2,
    .faq h2,
    .join h2 {
        font-size: 1.8rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

    header h1 {
        font-size: 1.4rem;
    }
}
