﻿/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: #f9fafb;
    line-height: 1.5;
    color: #1f2937;
}

/* Section Container */
.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f0f4f8 100%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Content Styles */
.subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2b7e3a;
    background: #e8f5e9;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
}

.title-highlight {
    display: block;
    color: #c47a2e;
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2d3e3b;
    text-align: justify;
}

.highlight-text {
    background: #fef9e6;
    padding: 1rem;
    border-left: 4px solid #c47a2e;
    border-radius: 12px;
    font-weight: 500;
}

.mission-text {
    font-weight: 600;
    color: #1e5631;
    font-style: italic;
    margin-top: 1rem;
}

.wish-box {
    background: #e6f7ec;
    padding: 1rem;
    text-align: center;
    border-radius: 40px;
    font-weight: bold;
    color: #2b6e3c;
    margin-top: 1.5rem;
}

/* View More Button */
.view-more-btn {
    background: #2b7e3a;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(43, 126, 58, 0.3);
}

    .view-more-btn:hover {
        background: #1e5a2e;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(43, 126, 58, 0.4);
    }

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.view-more-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Gallery Styles */
.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

    .gallery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    }

        .gallery-card:hover .gallery-img {
            transform: scale(1.02);
        }

.img-caption {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    background: white;
    color: #2d5a3b;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Expanded Content */
.expanded-content {
    background: #ffffff;
    padding: 2rem 1rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 0;
}

.expanded-inner h3 {
    font-size: 1.8rem;
    color: #1e3a2f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expanded-inner p {
    margin-bottom: 1rem;
    color: #2c3e2f;
    font-size: 1rem;
}

.expanded-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background: #f0fdf4;
    padding: 0.75rem 1.5rem;
    border-radius: 60px;
    font-weight: 500;
    color: #2c6e3a;
}

    .stat span {
        font-weight: 800;
        font-size: 1.4rem;
        color: #1d4d2a;
        margin-right: 0.3rem;
    }

/* Mobile Responsive */
@media screen and (max-width: 992px) {
    .about-grid {
        gap: 2rem;
    }

    .about-title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expanded-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .view-more-btn {
        width: 100%;
        justify-content: center;
    }
}
