/* =========================================
   🔝 NAVBAR (BIG LOGO CENTERED)
========================================= */
.custom-navbar {
    background: #ffffff;
    padding: 15px 0;
    min-height: 150px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* CONTAINER */
.custom-navbar .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MENUS */
.left-menu,
.right-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.left-menu {
    justify-content: flex-start;
}

.right-menu {
    justify-content: flex-end;
}

/* NAV LINKS */
.nav-link {
    font-weight: 500;
    color: #111 !important;
    position: relative;
    text-decoration: none;
}

/* =========================================
   ✨ UNDERLINE (EXCLUDING DROPDOWN)
========================================= */
.nav-link:not(.custom-arrow)::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:not(.custom-arrow):hover::after {
    width: 100%;
}

/* =========================================
   ❌ REMOVE BOOTSTRAP CARET
========================================= */
.dropdown-toggle::after {
    display: none !important;
}

/* =========================================
   ⬇ CUSTOM ARROW
========================================= */
.custom-arrow i {
    font-size: 12px;
    margin-left: 6px;
    transition: 0.3s;
}

.show > .custom-arrow i {
    transform: rotate(180deg);
}

/* =========================================
   🧿 CENTER LOGO (FIXED)
========================================= */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-center img {
    height: 150px;
    width: auto;
    display: block;
}

/* =========================================
   📂 DROPDOWN
========================================= */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

/* =========================================
   ▶ YOUTUBE ICON
========================================= */
.youtube-icon {
    color: red;
    font-size: 18px;
}

/* =========================================
   📱 MOBILE HEADER FIX (IMPORTANT)
========================================= */
@media (max-width: 991px) {

    .custom-navbar {
        min-height: auto;
        padding: 10px 0;
    }

    /* STACK LAYOUT */
    .custom-navbar .container {
        flex-direction: column;
        align-items: center;
    }

    /* RESET LOGO (REMOVE ABSOLUTE) */
    .logo-center {
        position: static;
        transform: none;
        margin: 10px 0;
    }

    .logo-center img {
        height: 70px; /* 👈 controlled mobile size */
    }

    /* MENUS STACK */
    .left-menu,
    .right-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .left-menu {
        order: 1;
    }

    .logo-center {
        order: 2;
    }

    .right-menu {
        order: 3;
    }
}