/* ==========================================================================
   CSS KHUSUS HALAMAN PROGRAM STUDI / JENJANG PEMBELAJARAN
   ========================================================================== */

/* Banner Hero Halaman */
.prodi-hero {
   background: linear-gradient(to bottom, rgba(13, 92, 58, 0.541), rgba(8, 59, 37, 0.849)),
                url('../../berkas/SQT.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white, #ffffff);
    text-align: center;
    padding: 4.5rem 1rem;
}

.prodi-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
}

.prodi-hero p {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Judul Section Utama */
.section-title-box {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title-box h2 {
    color: #0D5C3A;
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
}

.section-title-box p {
    color: #64748B;
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Layout Grid Level Card */
.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.level-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(13, 92, 58, 0.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 92, 58, 0.12);
    border-color: #D95D39;
}

.level-card.highlight {
    border: 2px solid #D95D39;
    background: linear-gradient(to bottom, #ffffff, #fffaf8);
}

.level-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.level-badge {
    background: #0D5C3A;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.level-badge.gold {
    background: #D95D39;
}

.level-card h3 {
    color: #0D5C3A;
    font-size: 1.3rem;
    margin: 0;
}

.level-desc {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.focus-title {
    font-weight: 700;
    color: #0D5C3A;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.focus-list li {
    font-size: 0.88rem;
    color: #334155;
    position: relative;
    padding-left: 18px;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.focus-list li::before {
    content: "•";
    color: #D95D39;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.target-box {
    background: #F8FAFC;
    border-left: 4px solid #0D5C3A;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}

.target-box strong {
    color: #0D5C3A;
}

/* SECTION MATERI PEMBELAJARAN */
.materi-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
}

.materi-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.2rem;
    border: 1px solid rgba(13, 92, 58, 0.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.materi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.materi-header i {
    font-size: 1.8rem;
    color: #0D5C3A;
}

.materi-header h3 {
    color: #0D5C3A;
    font-size: 1.4rem;
    margin: 0;
}

.materi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.materi-list li {
    font-size: 0.92rem;
    color: #334155;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.materi-list li i {
    color: #25D366;
    font-size: 0.9rem;
}

.materi-subtitle {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    background: #F1F5F9;
    color: #0D5C3A;
    border: 1px solid rgba(13, 92, 58, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: 0.2s;
}

.tag-item:hover {
    background: #0D5C3A;
    color: #ffffff;
}
/* Styling Logo di Navbar Header */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antara gambar logo dan teks */
}
.nav-logo {
    height: 45px; /* Tinggi logo di navbar */
    width: auto;
}
.logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0D5C3A;
    font-family: 'Cinzel', serif;
}
.logo span i {
    color: #D95D39;
    font-style: normal;
}
/* ==========================================================================
   STYLING TARGET MUTU SANTRI (RESULT/OUTCOME SECTION)
   ========================================================================== */
.target-mutu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.mutu-card {
    background: #ffffff;
    border: 1px solid rgba(13, 92, 58, 0.12);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mutu-card:hover {
    transform: translateY(-3px);
    border-color: #0D5C3A;
}

.mutu-icon {
    font-size: 1.3rem;
    color: #D95D39;
    background: #FFF5F2;
    padding: 0.6rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mutu-content h4 {
    color: #0D5C3A;
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    font-weight: 700;
}

.mutu-content p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
}

/* Penyesuaian Responsif Mobile (<768px) */
@media (max-width: 768px) {
    .section-title-box h2 {
        font-size: 1.4rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.5rem !important;
    }

    .target-mutu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mutu-card {
        padding: 1rem;
    }

    .mutu-content h4 {
        font-size: 0.95rem;
    }

    .mutu-content p {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   RESPONSIVE MOBILE PENYESUAIAN H2
   ========================================================================== */
@media (max-width: 768px) {
    .prodi-hero {
        padding: 3rem 1rem;
    }

    .prodi-hero h1 {
        font-size: 1.8rem;
    }

    .prodi-hero p {
        font-size: 0.92rem;
    }

    /* Penyesuaian H2 Ukuran Mobile */
    .section-title-box h2 {
        font-size: 1.4rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.5rem !important;
    }

    .section-title-box {
        margin-bottom: 1.8rem !important;
    }

    .level-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .materi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .materi-card {
        padding: 1.5rem;
    }

    .level-card {
        padding: 1.5rem;
    }

    .logo span { 
        font-size: 1.1rem; 
    }
    
    .nav-logo { 
        height: 35px; 
    }
}