/* Index/Home Page Specific Styles */

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: heroFadeIn 1s ease forwards;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: heroFadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summary Sections */
.profil-summary,
.contact-summary {
    padding: 5rem 0;
}

.kegiatan-summary {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.summary-text {
    font-size: 1.1rem;
}

.summary-text p {
    margin-bottom: 2rem;
}

.summary-text .cta-button {
    margin-left: 0;
}

.summary-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.summary-image:hover {
    transform: scale(1.02);
}

.contact-teaser {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
}

.contact-teaser h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.bg-light {
    background: #f8f9fa;
}

/* Recent Kegiatan Teaser */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    border: 1px solid #fca5a5;
}

.card-date i {
    font-size: 0.75rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .summary-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .summary-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .summary-text p {
        text-align: center;
    }

    .summary-text .cta-button {
        margin: 0 auto;
    }

    .contact-teaser {
        text-align: center;
    }

    .profil-summary,
    .contact-summary,
    .kegiatan-summary {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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