/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #111;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 45px;

    background: #111;
    border-bottom: 1px solid #222;

    z-index: 9999;
}


/* =========================================================
   BURGER MENU
========================================================= */

.burger-menu {
    justify-self: start;

    width: 38px;
    height: 38px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    gap: 5px;

    padding: 0;

    background: transparent;
    border: none;

    cursor: pointer;

    z-index: 10001;
}

.burger-menu span {
    display: block;

    width: 24px;
    height: 2px;

    background: #fff;

    transition: 0.3s ease;
}


/* BURGER → X */

.burger-menu.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.logo img {
    width: 100px;
    max-height: 48px;

    object-fit: contain;

    filter: brightness(0) invert(1);
}


/* =========================================================
   APPLY
========================================================= */

.nav-right {
    justify-self: end;
}

.apply-header {
    display: inline-block;

    padding: 12px 22px;

    background: #fff;

    color: #111 !important;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.2s ease;
}

.apply-header:hover {
    background: #ddd;
}


/* =========================================================
   BURGER MENU PANEL
========================================================= */

.mobile-nav {
    position: fixed;

    top: 82px;
    left: 0;

    width: 100%;

    background: #111;

    border-top: 1px solid #333;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 9998;
}

.mobile-nav.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.mobile-nav-inner {
    padding: 30px 45px 35px;
}


/* MENU ITEM */

.mobile-nav-inner > a,
.mobile-nav .menu-btn {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 18px 0;

    color: #fff;

    background: none;

    border: none;

    border-bottom: 1px solid #333;

    text-decoration: none;

    text-align: left;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;
}

.mobile-nav-inner > a:hover,
.mobile-nav .menu-btn:hover {
    opacity: 0.65;
}


/* =========================================================
   AUDITION SUBMENU
========================================================= */

.mobile-nav .dropdown {
    width: 100%;
}

.mobile-nav .dropdown-menu {
    position: static;

    display: none;

    min-width: 0;

    width: 100%;

    background: #181818;

    border: none;

    box-shadow: none;

    opacity: 1;

    visibility: visible;

    transform: none;
}

.mobile-nav .dropdown.open .dropdown-menu {
    display: block;
}

.mobile-nav .dropdown-menu a {
    display: block;

    padding: 15px 20px;

    color: #aaa !important;

    border-bottom: 1px solid #2c2c2c;

    font-size: 12px;

    text-decoration: none;
}

.mobile-nav .dropdown-menu a:hover {
    color: #fff !important;

    background: #222;

    opacity: 1;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    background: #111;
}

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.45)
        );

    pointer-events: none;
}


/* =========================================================
   SLIDER BUTTON
========================================================= */

.slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0, 0, 0, 0.25);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.6);

    font-size: 32px;

    cursor: pointer;

    z-index: 5;

    transition: 0.2s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.65);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.slider-dots {
    position: absolute;

    bottom: 45px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    z-index: 5;
}

.slider-dot {
    width: 7px;

    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.5);

    cursor: pointer;
}

.slider-dot.active {
    background: #fff;
}


/* =========================================================
   HERO APPLY
========================================================= */

.hero-apply {
    position: absolute;

    bottom: 70px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    padding: 15px 35px;

    background: #fff;

    color: #111;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: 0.2s ease;
}

.hero-apply:hover {
    background: #111;

    color: #fff;
}


/* =========================================================
   PAGE
========================================================= */

.page {
    max-width: 1400px;

    margin: auto;

    padding:
        150px
        7%
        100px;
}

.page-header {
    margin-bottom: 55px;
}

.page-label {
    margin-bottom: 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}

.page-header h1 {
    margin-bottom: 20px;

    font-size: clamp(42px, 7vw, 90px);

    line-height: 0.95;

    letter-spacing: -3px;
}

.page-header p:last-child {
    max-width: 600px;

    color: #777;

    line-height: 1.7;
}


/* =========================================================
   AUDITION FILTER
========================================================= */

.audition-filter {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;
}

.filter-btn {
    padding: 12px 20px;

    background: transparent;

    color: #111;

    border: 1px solid #ddd;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #111;

    color: #fff;

    border-color: #111;
}


/* =========================================================
   AUDITION LIST
========================================================= */

.audition-list {
    border-top: 1px solid #111;
}

.audition-card {
    display: grid;

    grid-template-columns:
        80px
        1fr
        auto;

    align-items: center;

    gap: 25px;

    padding: 30px 0;

    color: #111;

    text-decoration: none;

    border-bottom: 1px solid #ddd;

    transition: 0.25s ease;
}

.audition-card:hover {
    padding-left: 15px;
}

.audition-number {
    color: #888;

    font-size: 12px;
}

.audition-category {
    color: #888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.audition-info h2 {
    margin: 8px 0 12px;

    font-size: 28px;
}

.audition-deadline {
    color: #777;

    font-size: 12px;
}

.audition-deadline strong {
    color: #111;
}

.audition-arrow {
    font-size: 25px;
}


/* =========================================================
   NOTICE
========================================================= */

.notice-search {
    position: relative;

    margin-bottom: 35px;
}

.notice-search input {
    width: 100%;

    padding:
        18px
        55px
        18px
        20px;

    outline: none;

    border: 1px solid #ddd;

    font-size: 14px;
}

.notice-search input:focus {
    border-color: #111;
}

.clear-search {
    position: absolute;

    right: 15px;

    top: 50%;

    width: 30px;

    height: 30px;

    transform: translateY(-50%);

    background: transparent;

    color: #777;

    border: none;

    font-size: 25px;

    cursor: pointer;
}

.notice-list {
    border-top: 1px solid #111;
}

.notice-item {
    display: grid;

    grid-template-columns:
        80px
        1fr;

    gap: 30px;

    padding: 35px 0;

    color: #111;

    text-decoration: none;

    border-bottom: 1px solid #ddd;
}

.notice-number {
    color: #888;

    font-size: 12px;
}

.notice-content h2 {
    margin-bottom: 10px;

    font-size: 25px;
}

.notice-content p {
    margin-bottom: 15px;

    color: #777;

    line-height: 1.6;
}

.notice-content time {
    color: #999;

    font-size: 11px;

    letter-spacing: 1px;
}

.no-result {
    display: none;

    padding: 40px 0;

    color: #888;
}


/* =========================================================
   QnA
========================================================= */

.faq-list {
    border-top: 1px solid #111;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px 0;

    background: transparent;

    color: #111;

    border: none;

    text-align: left;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;
}

.faq-question span {
    font-size: 25px;

    transition: 0.25s ease;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    color: #777;

    line-height: 1.7;

    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;

    padding-bottom: 25px;
}


/* =========================================================
   CALENDAR
========================================================= */

.calendar {
    width: 100%;

    margin-top: 20px;
}

.calendar-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}

.calendar-top h2 {
    font-size: 28px;

    font-weight: 600;

    letter-spacing: -1px;
}

.calendar-top button {
    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    color: #111;

    border: 1px solid #ddd;

    font-size: 25px;

    cursor: pointer;

    transition: 0.2s ease;
}

.calendar-top button:hover {
    background: #111;

    color: #fff;

    border-color: #111;
}

.calendar-week {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    border-top: 1px solid #111;

    border-left: 1px solid #ddd;
}

.calendar-week span,
.calendar-week div {
    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-right: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    color: #777;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.calendar-grid {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    border-left: 1px solid #ddd;
}

.calendar-day {
    min-height: 125px;

    padding: 12px;

    background: #fff;

    border-right: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    cursor: pointer;

    transition: 0.2s ease;
}

.calendar-day:hover {
    background: #f5f5f5;
}

.calendar-day.empty {
    background: #fafafa;

    cursor: default;
}

.calendar-day-number {
    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 8px;

    color: #111;

    font-size: 13px;

    font-weight: 600;
}

.calendar-day.today .calendar-day-number {
    background: #111;

    color: #fff;

    border-radius: 50%;
}

.calendar-event {
    display: block;

    width: 100%;

    margin-top: 5px;

    padding: 7px 8px;

    background: #111;

    color: #fff;

    font-size: 9px;

    line-height: 1.3;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.schedule-detail {
    margin-top: 30px;

    padding: 30px;

    background: #f7f7f7;

    border: 1px solid #ddd;
}

.schedule-detail h3 {
    margin-bottom: 10px;

    font-size: 20px;
}

.schedule-detail p {
    color: #777;

    line-height: 1.7;
}


/* =========================================================
   APPLICATION
========================================================= */

.audition-form,
.status-box {
    max-width: 700px;
}

.audition-form label,
.status-box label {
    display: block;

    margin-bottom: 25px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

.audition-form input,
.audition-form select,
.status-box input {
    display: block;

    width: 100%;

    margin-top: 10px;

    padding: 16px;

    background: #fff;

    border: 1px solid #ddd;

    outline: none;

    font-size: 14px;
}

.audition-form input:focus,
.audition-form select:focus,
.status-box input:focus {
    border-color: #111;
}

.audition-form button,
.status-box button {
    padding: 16px 25px;

    background: #111;

    color: #fff;

    border: none;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.2s ease;
}

.audition-form button:hover,
.status-box button:hover {
    background: #333;
}

.status-box button {
    margin-top: 15px;
}


/* =========================================================
   APPLICATION RESULT
========================================================= */

/* PENTING:
   JANGAN display:none
   karena Checking Application harus terlihat.
*/

#applicationResult {
    display: block;

    width: 100%;

    margin-top: 25px;
}


/* =========================================================
   CHECKING APPLICATION
========================================================= */

.application-checking {
    width: 100%;

    padding: 22px 20px;

    background: #f5f5f5;

    border: 1px solid #ddd;

    color: #111;

    text-align: center;
}

.application-checking p {
    margin: 0;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   APPLICATION SUCCESS
========================================================= */

.application-success {
    width: 100%;

    background: #fff;

    border: 1px solid #ddd;

    overflow: hidden;
}

.application-header {
    padding: 18px 20px;

    background: #111;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.application-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 20px;

    border-bottom: 1px solid #eee;

    font-size: 13px;
}

.application-row:last-child {
    border-bottom: none;
}

.application-label {
    color: #888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.application-row strong {
    font-weight: 700;
}

.application-row a {
    color: #111;

    font-weight: 700;

    text-decoration: underline;
}


/* =========================================================
   APPLICATION NOT FOUND
========================================================= */

.application-not-found {
    width: 100%;

    padding: 25px 20px;

    background: #f7f7f7;

    border: 1px solid #ddd;

    text-align: center;
}

.application-not-found h3 {
    margin-bottom: 10px;

    font-size: 16px;
}

.application-not-found p {
    color: #777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   APPLICATION ERROR
========================================================= */

.application-error {
    width: 100%;

    padding: 25px 20px;

    background: #f7f7f7;

    border: 1px solid #ccc;

    text-align: center;
}

.application-error h3 {
    margin-bottom: 10px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}

.application-error p {
    color: #666;

    font-size: 12px;

    line-height: 1.6;

    word-break: break-word;
}

.application-error small {
    display: block;

    margin-top: 8px;

    color: #999;

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .header {
        height: 70px;

        padding: 0 18px;

        grid-template-columns:
            1fr
            auto
            1fr;
    }


    .mobile-nav {
        top: 70px;
    }


    .mobile-nav-inner {
        padding: 20px;
    }


    .logo img {
        width: 75px;
    }


    .apply-header {
        padding: 9px 12px;

        font-size: 9px;
    }


    .hero {
        height: 85vh;
    }


    .slider-btn {
        width: 40px;

        height: 40px;
    }


    .slider-prev {
        left: 12px;
    }


    .slider-next {
        right: 12px;
    }


    .hero-apply {
        bottom: 65px;
    }


    .page {
        padding:
            120px
            20px
            70px;
    }


    .page-header h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .audition-card {
        grid-template-columns:
            40px
            1fr
            auto;

        gap: 12px;
    }


    .audition-info h2 {
        font-size: 20px;
    }


    .notice-item {
        grid-template-columns:
            45px
            1fr;

        gap: 15px;
    }


    .notice-content h2 {
        font-size: 19px;
    }


    .calendar-top h2 {
        font-size: 20px;
    }


    .calendar-top button {
        width: 38px;

        height: 38px;

        font-size: 20px;
    }


    .calendar-week span,
    .calendar-week div {
        min-height: 38px;

        font-size: 8px;

        letter-spacing: 0;
    }


    .calendar-day {
        min-height: 80px;

        padding: 7px;
    }


    .calendar-day-number {
        width: 23px;

        height: 23px;

        font-size: 10px;
    }


    .calendar-event {
        padding: 4px;

        font-size: 7px;
    }


    .schedule-detail {
        padding: 20px;
    }


    /* APPLICATION MOBILE */

    .status-box {
        width: 100%;
    }


    .status-box button {
        width: 100%;
    }


    .application-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }


    .application-header {
        padding: 16px;
    }

}