/* About Page Styles */
:root {
    --swamp-green: #4a5d23;
    --swamp-green-light: #6b7d3a;
    --swamp-green-dark: #2d3a15;
    --brown: #6b4423;
    --brown-light: #8b5a3c;
    --brown-dark: #4a2f1a;
    --accent-frog: #7a9a4a;
    --accent-drop: #5a8a7a;
    --text-light: #e8e5d8;
    --text-dark: #2d2a1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--swamp-green-dark) 0%, var(--brown-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 93, 35, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 68, 35, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(90, 138, 122, 0.2) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: waveMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes waveMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(122, 154, 74, 0.03) 100px, rgba(122, 154, 74, 0.03) 102px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(90, 138, 122, 0.03) 100px, rgba(90, 138, 122, 0.03) 102px);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

main {
    position: relative;
    z-index: 1;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 4rem 20px;
    text-align: center;
    background: rgba(45, 58, 21, 0.3);
}

.hero-image {
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--accent-frog);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:first-of-type {
    padding-top: 6rem;
}

.alt-section {
    background: rgba(45, 58, 21, 0.3);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-frog);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h3 {
    font-size: 1.8rem;
    color: var(--accent-frog);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    background: rgba(45, 58, 21, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 2px solid rgba(122, 154, 74, 0.3);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-family: inherit;
}

.accordion-header:hover {
    background: rgba(122, 154, 74, 0.2);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent-frog);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-text h3 {
        font-size: 1.5rem;
    }

    .content-text p {
        font-size: 1rem;
        text-align: left;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-content p {
        font-size: 1rem;
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-hero {
        padding: 2rem 20px;
    }
}

