* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c8102e;
    --secondary-color: #1e7d34;
    --dark-color: #1f2d3d;
    --light-color: #f8fafc;
    --accent-color: #f39c12;
    --text-color: #2c2c2c;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.header-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-btn {
    color: white;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.header-btn:hover {
    transform: translateY(-1px);
}

.header-facebook {
    background-color: #3b5998;
}

.header-instagram {
    background: radial-gradient(circle at 30% 30%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.12) 0%, rgba(30, 125, 52, 0.12) 100%);
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
}
.hero-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.12;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.tagline {
    font-size: 1.5rem;
    color: #f7f3e6;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: white;
}

.btn-facebook {
    background-color: #3b5998;
    box-shadow: 0 6px 18px rgba(59, 89, 152, 0.24);
}

.btn-instagram {
    background: radial-gradient(circle at 30% 30%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 18px rgba(204, 35, 102, 0.24);
}

.btn-facebook:hover,
.btn-instagram:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: auto;
    max-width: 100%;
    /* max-height: 520px; */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.12;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Mission Section */
.mission {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.mission h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/* Activities Section */
.activities {
    padding: 80px 20px;
    background-color: white;
}

.activities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
    cursor: pointer;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-overlay p {
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
}

.facebook-feed-section {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
}

.facebook-feed-section h2 {
    margin-bottom: 10px;
    font-size: 2.4rem;
    color: var(--dark-color);
}

.section-subtitle {
    margin: 0 auto 30px;
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    line-height: 1.7;
}

.facebook-feed {
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.facebook-feed iframe {
    width: 100%;
    max-width: 520px;
    border: none;
    min-height: 700px;
}

@media (max-width: 600px) {
    .facebook-feed-section {
        padding: 40px 10px;
    }

    .facebook-feed-section h2 {
        font-size: 2rem;
    }

    .facebook-feed iframe {
        min-height: 650px;
    }
}

/* News Section */
.news {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-card p {
    color: #666;
    line-height: 1.8;
}

/* Info Section */
.info {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn i {
    font-size: 2rem;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.facebook:hover {
    background-color: #2d4373;
    transform: scale(1.1);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.instagram:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    margin: 5px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Headings */
    .mission h2,
    .activities h2,
    .news h2,
    .info h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    /* Mission Cards */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Activities Grid */
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .activity-card {
        height: 200px;
    }

    /* News Cards */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .social-links {
        width: 100%;
    }

    .social-btn {
        flex: 1;
        min-width: 150px;
    }

    /* Info Section */
    .info-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .mission-card,
    .news-card,
    .info-box {
        padding: 20px;
    }

    .mission-icon {
        font-size: 2.5rem;
    }

    .social-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .social-btn i {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-card,
.news-card,
.activity-card {
    animation: slideIn 0.6s ease-out;
}
