:root {
    /* Palet Granodiorit Lebak - sama dengan profil */
    --agenda-primary: #6B7280;   /* Granodiorit Grey */
    --agenda-secondary: #3B5E4A; /* Moss Green Geosite */
    --agenda-bg: #F2F4F5;       /* Quartz White */
    --text-dark: #1F2937;       /* Biotite Black */
    --text-muted: #6B7280;      /* Granodiorit Grey */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--agenda-bg);
    color: var(--text-dark);
}

.agenda-nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
    backdrop-filter: blur(8px);
}

.agenda-nav .container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--agenda-primary), var(--agenda-secondary));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Hero menggunakan styling dari profil.css */
.hero-agenda {
    /* Background gambar hero dari assets/images */
    background-image: url('../images/gambar-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-agenda::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Overlay gelap untuk kontras teks - menggunakan Biotite Black */
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.75) 0%, rgba(107, 114, 128, 0.65) 100%);
    z-index: 1;
}

.hero-agenda .container {
    max-width: var(--saphira-content-width, calc(100vw - 400px));
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.section-card {
    background: var(--agenda-bg);
    border-radius: 0;
    padding: 32px;
    border: 1px solid rgba(107, 114, 128, 0.15);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.08);
    margin-bottom: 28px;
}

.section-card h2 {
    margin-top: 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--agenda-secondary);
}

.section-card h2 i {
    color: var(--agenda-primary);
}

.agenda-list {
    display: grid;
    gap: 16px;
}

.agenda-card {
    border: 1px solid rgba(107, 114, 128, 0.15);
    border-radius: 0;
    background: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.15);
    border-color: var(--agenda-secondary);
}

.agenda-card h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.agenda-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.agenda-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.agenda-meta i {
    color: var(--agenda-primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 0;
    background: rgba(59, 94, 74, 0.1);
    color: var(--agenda-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 94, 74, 0.3);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.calendar-card {
    background: #ffffff;
    border-radius: 0;
    padding: 20px;
    border: 1px solid rgba(107, 114, 128, 0.15);
    text-align: center;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.1);
    border-color: var(--agenda-secondary);
}

.calendar-card strong {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--agenda-secondary);
    font-weight: 700;
}

.calendar-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 40px;
    background: #ffffff;
    border: 1px solid rgba(107, 114, 128, 0.15);
    border-radius: 0;
}

@media (max-width: 1200px) {
    .hero-agenda .container,
    .profil-content {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    /* Hero layout jadi column di mobile */
    .hero-agenda .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-content {
        width: 100%;
    }

    .section-card {
        padding: 24px;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-card strong {
        font-size: 1.8rem;
    }
    
    .agenda-card {
        padding: 20px;
    }
    
    .agenda-meta {
        flex-direction: column;
        gap: 8px;
    }
}

