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

/* CSS Variables */
:root {
    --forest-green: #264025;
    --forest-green-dark: #1d3019;
    --light-cream: #f5f2eb;
    --gold-accent: #e3b23c;
    --white: #ffffff;
    --off-white: #fafafa;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #eeeeee;
}

/* Base Styles */
body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    color: var(--dark-gray);
    background: var(--off-white);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--forest-green);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light-cream);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.accent-underline {
    height: 3px;
    width: 80px;
    background-color: var(--gold-accent);
    margin: 20px auto;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--forest-green);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-accent);
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 64, 37, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--white);
}

/* Introduction Section */
.introduction-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 16px;
}

/* Threats Section */
.threat-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--light-cream);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.threat-content h3 {
    margin-bottom: 20px;
}

.threat-impacts {
    list-style: none;
    margin-top: 20px;
}

.threat-impacts li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.threat-impacts li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 50%;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.news-more {
    text-align: center;
}

/* Call to Action Section */
.cta {
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* Buttons */
.btn-primary {
    background: var(--forest-green);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(38, 64, 37, 0.1);
    transform: translateY(-2px);
}

/* Images */
img {
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.image-loading {
    opacity: 0.75;
    filter: blur(6px);
    background: linear-gradient(90deg, #ececec 25%, #f6f6f6 37%, #ececec 63%);
    background-size: 400% 100%;
    animation: imageSkeletonShimmer 1.2s ease-in-out infinite;
}

.image-loaded {
    opacity: 1;
    filter: blur(0);
    animation: none;
}

@keyframes imageSkeletonShimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.img-feature {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.img-gallery {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.img-gallery:hover {
    transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
    .image-loading {
        animation: none;
    }
}

/* Footer */
.footer {
    background: var(--forest-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-item i {
    color: var(--white);
    font-size: 20px;
}

.footer-contact .contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-contact .contact-link:hover {
    color: var(--gold-accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
}

.footer-bottom p:last-child {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .threat-card {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        z-index: 1001;
    }

    .hamburger-menu.active {
        color: var(--gold-accent);
    }

    .hamburger-menu i {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* Territory Content Styles */
.territory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.territory-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.territory-text p {
    margin-bottom: 20px;
}

/* Subsection Styles */
.subsection {
    margin-bottom: 40px;
}

.subsection h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: var(--forest-green);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.subsection h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 50%;
}

.subsection-content {
    padding: 30px;
    border-radius: 4px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 50%;
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Territory Page */
@media (max-width: 1023px) {
    .territory-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .subsection-content {
        padding: 20px;
    }

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

    .territory-text {
        font-size: 16px;
    }
}

/* Threat Content Styles */
.threat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.threat-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.threat-text p {
    margin-bottom: 20px;
}

/* Impact List Styles */
.impact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.impact-item {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-item i {
    font-size: 32px;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.impact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.impact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* Solutions Grid Styles */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card i {
    font-size: 40px;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.solution-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background: var(--forest-green);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design for Threats Page */
@media (max-width: 1023px) {
    .threat-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-list {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .impact-item, .solution-card {
        padding: 20px;
    }
}

/* Join Page Styles */
.join-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.join-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.join-option:hover {
    transform: translateY(-5px);
}

.join-option i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.join-option h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.join-option p {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

/* Registration Form Styles */
.registration-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Volunteer Section Styles */
.volunteer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.volunteer-text {
    padding-right: 2rem;
}

.volunteer-list {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

.volunteer-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.volunteer-list li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.volunteer-image {
    border-radius: 8px;
    overflow: hidden;
}

.volunteer-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Donation Section Styles */
.donation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.donation-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.donation-option h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.donation-option p {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .join-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .volunteer-info {
        grid-template-columns: 1fr;
    }
    
    .volunteer-text {
        padding-right: 0;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .join-options {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        flex-direction: column;
    }
    
    .donation-amounts .btn {
        width: 100%;
    }
}

/* Global CTA Section */
.global-cta {
    background: var(--forest-green);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.global-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.global-cta p {
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.global-cta .btn {
    background: var(--gold-accent);
    color: var(--forest-green);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.global-cta .btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gold-accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: calc(50% - 2rem);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-color-light);
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 767px) {
    .timeline:before {
        left: 0;
    }

    .timeline-date {
        left: 0;
        transform: none;
    }

    .timeline-content {
        width: calc(100% - 2rem);
        margin-left: 2rem !important;
    }
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--forest-green);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-line1, .logo-line2 {
    display: block;
    line-height: 1.2;
}

.logo-line1 {
    margin-bottom: 0.1rem;
}

/* Features Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* Responsive Design for Features Grid */
@media (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
} 