/* Container Utama Logo */
#logo {
    display: flex;
    align-items: center; /* Membuat gambar & teks sejajar tengah secara vertikal */
    gap: 12px; /* Jarak antara gambar logo dan teks */
    margin: 20px 0 0;
}

/* Ukuran Gambar Logo (Opsional, sesuaikan kebutuhan) */
#logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Container Teks Logo */
.text-lgo {
    display: flex;
    flex-direction: column; /* Menyusun H2 dan SMALL ke atas-bawah */
    justify-content: center;
    line-height: 1.2; /* Menjaga jarak antar baris teks tetap rapat */
}

/* Judul Utama (H2) */
.text-lgo h2 {
    margin: 0;
    padding: 0;
    font-size: 1.25rem; /* Ukuran font judul (~20px) */
    font-weight: 700;
    color: #1e293b; /* Warna teks utama (bisa disesuaikan) */
    letter-spacing: -0.02em;
    text-transform: uppercase; /* Ubah ke capitalize jika tidak ingin huruf kapital semua */
}

/* Subtitle / Teks Sekunder (SMALL) */
.text-lgo small {
    margin-top: 2px;
    font-size: 0.8rem; /* Ukuran font subtitle (~12.8px) */
    font-weight: 500;
    color: #64748b; /* Warna teks sekunder/agak redup */
    display: block;
    letter-spacing: 0.01em;
}

nav ul{
    margin:0;
}

.sticky-top{
    padding: 0 20px;
}

.dropdown-menu{
    padding:0;
}

nav ul ul li a{
    line-height: 45px;
}

/* ==========================================
   1. VIDEO EMBED CONTAINER (RESPONSIF 16:9)
   ========================================== */
.video-container {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 24px !important;
    background-color: #000 !important;
}

.video-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    border-radius: 12px !important;
}

/* ==========================================
   2. TABEL PROFIL SEKOLAH (TANPA BORDER)
   ========================================== */
.table-profile-wrap {
    width: 100% !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 24px !important;
    overflow-x: auto !important;
}

.table-profile {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    font-size: 0.95rem !important;
    color: #334155 !important;
}

.table-profile tbody{
    border-color:transparent;
}

.table-profile tr {
    border: none !important;
    background: none !important;
}

.table-profile tr:hover {
    background-color: #f8fafc !important;
}

.table-profile td {
    padding: 10px 8px !important;
    vertical-align: top !important;
    line-height: 1.6 !important;
    border: none !important; /* Hapus border sel */
}

/* Kolom Label */
.table-profile td:first-child {
    font-weight: 600 !important;
    color: #1e293b !important;
    width: 180px !important;
    white-space: nowrap !important;
}

/* Kolom Titik Dua (:) */
.table-profile td:nth-child(2) {
    width: 20px !important;
    text-align: center !important;
    color: #94a3b8 !important;
}

/* Kolom Isi/Nilai */
.table-profile td:last-child {
    color: #475569 !important;
}

/* ==========================================
   3. SECTION TENTANG SEKOLAH (TANPA BORDER)
   ========================================== */
.about-school {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 24px !important;
    border: none !important;
    box-shadow: none !important;
    color: #334155 !important;
    line-height: 1.8 !important;
}

.about-school h6 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    padding-bottom: 0 !important;
    border: none !important; /* Hapus border garis bawah judul */
}

.about-school p {
    margin-bottom: 12px !important;
    font-size: 0.95rem !important;
    color: #475569 !important;
}

.about-school p:last-child {
    margin-bottom: 0 !important;
}

/* ==========================================
   4. RESPONSIVE DESIGN (MOBILE)
   ========================================== */
@media (max-width: 576px) {
    .table-profile-wrap,
    .about-school {
        padding: 16px !important;
    }

    .table-profile td:first-child {
        width: 120px !important;
        font-size: 0.9rem !important;
    }

    .table-profile td {
        padding: 8px 4px !important;
        font-size: 0.9rem !important;
    }
}