/* =====================================================
   APPLE MOBILE MENU — FULLSCREEN
   FINAL VERSION — Fully Polished + Documented
   ===================================================== */

/* PANEL MENU UTAMA (FULLSCREEN) */
.mobile-apple-menu {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: #000;             /* Apple black */
    color: white;

    z-index: 3000;
    
    /* ruang untuk header + tombol X */
    padding-top: 70px;
    padding-left: 24px;
    padding-right: 24px;
    
    display: none;                /* default: sembunyi */

    overflow-y: auto;
    
    /* Animasi muncul */
    transition: opacity .25s ease, transform .25s ease;
    opacity: 0;
    transform: translateY(-10px);
}

/* STATE AKTIF (saat menu dibuka) */
.mobile-apple-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CLOSE BUTTON (X) — Perbesar agar mudah diklik
   ===================================================== */
.apple-menu-close {
    position: absolute;
    top: 0px;
    right: 3px;
    
    background: transparent;
    border: none;
    color: #fff;
    
    font-size: 33px;   /* PERBESAR */
    font-weight: 300;
    cursor: pointer;
    opacity: .75;

    transition: opacity .20s ease;
}

.apple-menu-close:hover {
    opacity: 1;
}

/* =====================================================
   LEVEL 1 MENU LIST (Profil, Akademik, dst.)
   ===================================================== */

.apple-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;

    transition: opacity .28s ease, transform .28s ease;
}

.apple-mobile-list li {
    margin-bottom: 26px;
}

/* TOMBOL MENU LEVEL 1 */
.apple-mobile-btn {
    width: 100%;
    
    background: transparent;
    border: none;
    outline: none;
    
    color: rgba(255,255,255,0.80);
    font-size: 30px;          /* Font Profile, Akademik, Ekrakurikuler, Informasi */
    font-weight: 640;
    
    padding: 3px 0;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    cursor: pointer;
    transition: color .2s ease;
}

/* Hover → putih terang */
.apple-mobile-btn:hover,
.apple-submenu a:hover {
  color: #ffffff;
}

/* Hover lebih terang */
.apple-submenu a:hover,
.apple-submenu .submenu-back:hover {
    color: #ffffff;
}

/* Chevron › */
.apple-mobile-btn i {
    font-size: 20px;
    opacity: 0.8;
    transition: color .2s ease;
}

/* =====================================================
   SUBMENU CONTAINER
   ===================================================== */
.apple-submenu {
    display: none;
    
    padding-top: 10px;
    
    /* animasi muncul */
    animation: fadeSlide .25s ease;

    transition:
        transform .38s cubic-bezier(.25,.95,.32,1),
        opacity .28s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* SUBMENU ACTIVE */
.apple-submenu.active {
    display: block;
}

/* =====================================================
   BACK BUTTON (<)
   ===================================================== */
.submenu-back {
    font-size: 17px;       /* BESAR */
    font-weight: 530;
    
    padding: 14px 0 18px 0;   /* sejajarkan dengan menu level-1 */
    
    background: transparent;
    border: none;
    
    color: #fff;
    
    display: flex;
    align-items: center;
    gap: 8px;
    
    cursor: pointer;
    transition: color .2s ease;
    margin-bottom: 10px;
}

.submenu-back:hover {
    color: #fff;
}

.submenu-back i {
    font-size: 22px;         /* ikon besar */
}

/* =====================================================
   SUBMENU LINK LIST
   ===================================================== */

.apple-submenu a {
    display: block;

    padding: 10px 0;
    margin-left: 30px;        /* rapikan align */

    font-size: 24px;        /* BESAR (sama seperti Apple) */
    font-weight: 500;       /* TEKST BOLD — Apple style */
    
    letter-spacing: -0.3px; /* Apple tightening effect */
    line-height: 1.4;
    text-decoration: none;

    transition: color .2s ease;
}

/* Hover submenu → terang putih */
.apple-submenu a:hover {
    color: #fff;
}

/* =====================================================
   ANIMASI SLIDE PANEL
   ===================================================== */
   .apple-submenu {
  transition:
    transform .38s cubic-bezier(.25,.95,.32,1),
    opacity .28s ease;
}

.apple-mobile-list {
  transition: opacity .28s ease, transform .28s ease;
}

.submenu-back i {
    font-size: 17px;       /* ICON < BESAR */
}

/* ============================================
   FIX ALIGNMENT SUBMENU LEVEL 2 (Apple Style)
   ============================================ */

/* WRAPPER SUBMENU */
.apple-submenu {
    padding-left: 24px;      /* sejajarkan dengan menu level-1 */
    padding-right: 24px;
    margin-top: 10px;
}