/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2C3E2F;
    background-color: #FDFBF7;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #2C3E2F;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5A7A5E;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-header {
    margin-bottom: 4rem;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 62, 47, 0.1);
}

#header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2C5F4F 0%, #5A7A5E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2C3E2F;
    font-weight: 600;
}

.nav-desktop {
    display: flex;
    gap: 2.5rem;
}

.nav-desktop a {
    color: #2C3E2F;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2C5F4F;
    transition: width 0.3s ease;
}

.nav-desktop a:hover {
    color: #2C5F4F;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.btn-primary {
    padding: 0.75rem 1.75rem;
    background: #2C5F4F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #2C5F4F;
}

.btn-primary:hover {
    background: transparent;
    color: #2C5F4F;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #2C3E2F;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-top: 1px solid rgba(44, 62, 47, 0.1);
}

.nav-mobile a {
    color: #2C3E2F;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 62, 47, 0.05);
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: #2C5F4F;
}

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

/* ========================================
   HERO SECTION
======================================== */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(44, 62, 47, 0.3), rgba(44, 62, 47, 0.4)), 
                url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(44, 62, 47, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2C5F4F;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ========================================
   MISSION SECTION (Replacing Stats)
======================================== */
#mission {
    padding: 6rem 0;
    background: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #5A7A5E;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.mission-value {
    padding: 2rem;
    background: #FDFBF7;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mission-value:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 62, 47, 0.1);
}

.mission-value h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C5F4F;
}

.mission-value p {
    font-size: 1rem;
    color: #5A7A5E;
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
======================================== */
#about {
    padding: 6rem 0;
    background: #FDFBF7;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5A7A5E;
    margin-bottom: 1.5rem;
}

/* ========================================
   GALLERY SECTION
======================================== */
#gallery {
    padding: 6rem 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(44, 62, 47, 0.1);
    transition: all 0.4s ease;
}

.gallery-large {
    grid-column: span 2;
    height: 450px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 47, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Gallery responsive */
@media (max-width: 968px) {
    .gallery-large {
        grid-column: span 1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-large {
        height: 300px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(44, 62, 47, 0.85), transparent);
    }
}

/* ========================================
   AMENITIES SECTION
======================================== */
#amenities {
    padding: 6rem 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: #FDFBF7;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 47, 0.05);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 47, 0.1);
    border-color: #2C5F4F;
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C5F4F;
}

.amenity-card p {
    font-size: 1rem;
    color: #5A7A5E;
    line-height: 1.6;
}

/* ========================================
   PROGRAMS SECTION
======================================== */
#programs {
    padding: 6rem 0;
    background: #FDFBF7;
}

.programs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2C5F4F;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(44, 62, 47, 0.1);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C5F4F;
}

.program-card p {
    font-size: 1rem;
    color: #5A7A5E;
    line-height: 1.6;
}

/* ========================================
   LOCATION SECTION
======================================== */
#location {
    padding: 6rem 0;
    background: white;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5A7A5E;
    margin-bottom: 1.5rem;
}

.location-features {
    list-style: none;
    margin: 2rem 0;
}

.location-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #5A7A5E;
    border-bottom: 1px solid rgba(44, 62, 47, 0.05);
}

.location-features li::before {
    content: '🌲';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ========================================
   DONATE SECTION
======================================== */
#donate {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2C5F4F 0%, #5A7A5E 100%);
    color: white;
}

#donate .section-title,
#donate .section-subtitle {
    color: white;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.donate-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.donate-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.donate-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-list li::before {
    content: '💚';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.donate-impact {
    font-size: 1.2rem !important;
    font-weight: 500;
    margin-top: 2rem !important;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid white;
}

.donate-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.donate-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.donate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C5F4F;
}

.donate-card p {
    font-size: 1rem;
    color: #5A7A5E;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-donate {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #2C5F4F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #2C5F4F;
}

.btn-donate:hover {
    background: #5A7A5E;
    border-color: #5A7A5E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 79, 0.4);
}

.donate-note {
    font-size: 0.85rem !important;
    color: #5A7A5E !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

.donate-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donate-info-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.donate-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.donate-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.donate-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.donate-info-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
#testimonials {
    padding: 6rem 0;
    background: #FDFBF7;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(44, 62, 47, 0.1);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2C3E2F;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    font-size: 1rem;
    color: #5A7A5E;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 95, 79, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #2C5F4F;
    transform: scale(1.2);
}

/* ========================================
   CONTACT SECTION
======================================== */
#contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C5F4F;
}

.contact-item p {
    font-size: 1rem;
    color: #5A7A5E;
}

.contact-item a {
    color: #2C5F4F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #5A7A5E;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(44, 62, 47, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C5F4F;
    box-shadow: 0 0 0 3px rgba(44, 95, 79, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2C5F4F;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5A7A5E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 62, 47, 0.2);
}

.form-privacy {
    font-size: 0.9rem;
    color: #5A7A5E;
    text-align: center;
    margin-top: -0.5rem;
}

.form-success {
    display: none;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: #E8F5E9;
    border-radius: 10px;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-success p {
    color: #2C5F4F;
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
======================================== */
#footer {
    padding: 3rem 0;
    background: #2C3E2F;
    color: white;
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-circle {
    background: white;
    color: #2C3E2F;
}

.footer-logo .logo-text {
    color: white;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #2C5F4F;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #5A7A5E;
    transform: translateY(-5px);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .btn-primary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .amenities-grid,
    .programs-content {
        grid-template-columns: 1fr;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
}
