/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */
/* Glyh Entertainment Public Website                                                                                                                                            */
/* • Page:            	        Navbar Stylesheet (navbar.css)                                                                                                                  */
/* • Description:               Horizontal navigation bar with fixed 350px left/right margins (matches branding + body exactly), labels underneath icons, same icon sizes       */
/* • Location:                  /modules/navbar/css/navbar.css                                                                                                                  */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* • DEFAULT TARGET RESOLUTION: 1920x1080p                                                                                                                                      */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* • Version:                   v0.0.12 α                                                                                                                                       */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* • Project Start Date:        2026-04-07                                                                                                                                      */
/* • α Release Date:            2026-04-XX                                                                                                                                      */
/* • β Release Date:            2026-04-XX                                                                                                                                      */
/* • Last updated:              2026-05-08 @ 0945 EDT                                                                                                                          	*/
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* • Author:                    by Conner Rhoads                                                                                                                                */
/* • Official Site:             www.glyphentertainment.com                                                                                                                      */
/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */
/* CHANGE LOG                                                                                                                                                                   */
/* 2026-04-13:  Original File                                                                                                                                                   */
/* 2026-05-06:  Made tab-item 50% bigger in all resolutions while updating new menu. Icons were way too small.                                                                  */
/* 2026-05-08:  Switched to fixed 350px left/right margins (no max-width) to perfectly match branding + body modules at 1920x1080                                             */
/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */

/* ============================================================================================================================================================================ */
/*  NAVBAR CONTAINER — Fixed 350px left + right margins (matches branding + body exactly)                                                                                       */
/* ============================================================================================================================================================================ */

#navbar-container
{
    position: absolute;
    top: 265px;                    /* Cleanly below branding image, above white band */
    left: 350px;
    right: 350px;
    z-index: 5;
    margin-bottom: 0px;
}

/* ============================================================================================================================================================================ */
/*  TOP TABS CONTAINER                                                                                                                                                          */
/* ============================================================================================================================================================================ */

#top-tabs
{
    display: flex;
    align-items: center;
    height: 68px;
    background-color: #3e3e3e;
    color: #e0e0e0;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* ============================================================================================================================================================================ */
/*  BUTTON / TAB STYLES + LABELS UNDER ICONS                                                                                                                                    */
/* ============================================================================================================================================================================ */

.tab-item,
.tab-home
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 4px;
    height: 100%;
}

/* All icons exactly the same size */
#top-tabs img
{
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.4s ease, transform 0.4s ease;
}

/* Labels underneath icons */
.tab-label
{
    font-size: 10px;
    color: #e0e0e0;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

/* Home button */
.tab-home
{
    background-color: #000000;
    min-width: 56px;
    padding: 8px 12px;
}

/* Main menu items */
.tab-item
{
    min-width: 84px;
    padding: 8px 12px;
    color: #e0e0e0;
}

/* Hover glow */
#top-tabs a:hover img,
.tab-item:hover img
{
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9)) 
            drop-shadow(0 0 24px rgba(255, 255, 255, 0.6));
    transform: scale(1.1);
}

/* Active / pressed effect */
#top-tabs a:active img,
.tab-item:active img
{
    filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.9)) 
            drop-shadow(0 0 24px rgba(255, 255, 255, 0.6));
}

/* ============================================================================================================================================================================ */
/*  MAIN MENU AREA                                                                                                                                                              */
/* ============================================================================================================================================================================ */

#tab-menu
{
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0 20px 0 0;
    background-color: #3e3e3e;
}

#tab-main-menu
{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    gap: 40px;
}

/* ============================================================================================================================================================================ */
/*  MOBILE RESPONSIVENESS + SCROLLABLE WITH INDICATORS                                                                                                                          */
/* ============================================================================================================================================================================ */

/* Scroll indicators (left/right gradients) */
#tab-main-menu
{
    position: relative;
}

#tab-main-menu::before,
#tab-main-menu::after
{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
}

#tab-main-menu::before
{
    left: 0;
    background: linear-gradient(to right, #3e3e3e, transparent);
}

#tab-main-menu::after
{
    right: 0;
    background: linear-gradient(to left, #3e3e3e, transparent);
}

/* Hide indicators on desktop */
@media (min-width: 769px)
{
    #tab-main-menu::before,
    #tab-main-menu::after
    {
        display: none;
    }
}

/* ============================================================================================================================================================================ */
/*  MOBILE RESOLUTIONS (Portrait Mode)                                                                                                                                          */
/* ============================================================================================================================================================================ */

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE LDPI         | 240x320   | 3:4   |               		                                                                                                                */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 0px)    and (max-width: 240px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE MDPI         | 240x320   | 3:4   |               		                                                                                                                */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 241px)  and (max-width: 320px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE HDPI         | 320x480   | 2:3   |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 321px)  and (max-width: 480px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE XHDPI        | 480x800   | 3:5   |               		                                                                                                                */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 641px)  and (max-width: 720px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE XXHDPI       | 720x1280  | 9:16  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 641px)  and (max-width: 720px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE XXXHDPI      | 1080x1920 | 9:16  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 801px)  and (max-width: 1023px), (min-width: 1025px) and (max-width: 1080px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE DEFAULT      | 1080x1920 | 9:16  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE DEFAULT      | 1080x1920 | 9:16  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 768px)
{
    #navbar-container
    {
        position: absolute !important;
        top: 56px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: 415px !important;
        width: 100% !important;
        z-index: 5 !important;
    }

    #top-tabs
    {
        height: 64px !important;
    }

    #tab-main-menu
    {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 18px !important;
        padding: 0 12px 0 12px !important;
    }

    #tab-main-menu::-webkit-scrollbar
    {
        display: none !important;
    }

    .tab-item
    {
        flex-shrink: 0 !important;
        min-width: 64px !important;
        padding: 6px 8px !important;
        scroll-snap-align: center !important;
    }

    .tab-home
    {
        min-width: 52px !important;
        padding: 6px 8px !important;
    }

    .tab-label
    {
        font-size: 9px !important;
    }

    #top-tabs img
    {
        width: 26px !important;
        height: 26px !important;
    }
}

/* ============================================================================================================================================================================ */
/*  LEGACY RESOLUTIONS	                                                                                                                                                        */
/* ============================================================================================================================================================================ */

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* LEGACY VGA          | 640x480   | 4:3   |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 481px)  and (max-width: 640px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* LEGACY SVGA         | 800x600   | 4:3   |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 800px)  and (max-width: 800px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* LEGACY XVGA         | 1024x768  | 4:3   |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1024px) and (max-width: 1024px)
{
/* FOR FUTURE ADDITIONS */
}

/* ============================================================================================================================================================================ */
/* MODERN RESOLUTIONS                                                                                                                                                           */
/* ============================================================================================================================================================================ */

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN 720p         | 1280x720  | 16:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1081px)  and (max-width: 1280px)
{
    #navbar-container
    {
        position: absolute;
        top: 265px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 820px;
        width: 100%;
        z-index: 5;
        margin-bottom: 0px;
    }

    .tab-item
    {
        min-width: 78px;
        padding: 8px 11px;
    }

    .tab-label
    {
        font-size: 9.5px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN 1080p        | 1920x1080 | 16:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1281px)  and (max-width: 1920px)
{
/* INTENDED DEFAULT RESOLUTION, SHOULD NOT NEED TO BE UPDATED */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN 2k           | 2560x1280 | 16:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1921px)  and (max-width: 2559px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN 4k           | 3840x1400 | 16:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 2562px)  and (max-width: 3439px), (min-width: 3442px)  and (max-width: 3839px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN 6k           | 6144x3456 | 16:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 3841px)  and (max-width: 5119px), (min-width: 5121px)  and (max-width: 6144px) 
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN 8k           | 7680x4320 | 16:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 6145px)  and (max-width: 7680px)
{
/* FOR FUTURE ADDITIONS */
}

/* ============================================================================================================================================================================ */
/* MODERN HALF SCREEN RESOLUTIONS                                                                                                                                               */
/* ============================================================================================================================================================================ */

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN HALF 720p    | 640x720 (1280x720)     | 16:9  |      		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1081px)  and (max-width: 1280px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN HALF 1080p    | 960x1080 (1920x1080)   | 16:9  |     		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 900px) and (max-width: 960px)
{
    #navbar-container
    {
        position: absolute;
        top: 265px;
        left: 40px;
        right: 40px;
        max-width: none;
        transform: none;
        z-index: 5;
    }

    #top-tabs
    {
        height: 62px;
    }

    #tab-main-menu
    {
        gap: 22px;
        padding: 0 10px 0 10px;
    }

    .tab-item
    {
        min-width: 66px;
        padding: 6px 9px;
    }

    .tab-home
    {
        min-width: 54px;
        padding: 6px 9px;
    }

    .tab-label
    {
        font-size: 9px;
    }

    #top-tabs img
    {
        width: 26px;
        height: 26px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN HALF 2k       | 1280x1280 2560x1280    | 16:9  |    		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1921px)  and (max-width: 2559px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN HALF 4k      | 1920x1400 (3840x1400)  | 16:9  |      		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 2562px)  and (max-width: 3439px), (min-width: 3442px)  and (max-width: 3839px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN HALF 6k       | 3072x3456 (6144x3456)  | 16:9  |     		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 3841px)  and (max-width: 5119px), (min-width: 5121px)  and (max-width: 6144px) 
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* MODERN HALF 8k       | 3840x4320 (7680x4320)\ | 16:9  |      		                                                                                                        */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 6145px)  and (max-width: 7680px)
{
/* FOR FUTURE ADDITIONS */
}

/* ============================================================================================================================================================================ */
/*  ULTRAWIDE RESOLUTIONS                                                                                                                                                       */
/* ============================================================================================================================================================================ */

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ULTRAWIDE WFHD       | 2560x1080 | 21:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 2560px)  and (max-width: 2560px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ULTRAWIDE FHD        | 4608x1920 | 21:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 4608px)  and (max-width: 4608px) 
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ULTRAWIDE UWQHD      | 3440x1440 | 21:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 3440px)  and (max-width: 3440px)
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ULTRAWIDE WQHD+      | 3840x1600 | 21:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 3840px)  and (max-width: 3840px) 
{
/* FOR FUTURE ADDITIONS */
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ULTRAWIDE UW5K       | 5120x2160 | 21:9  |                		                                                                                                            */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 5120px)  and (max-width: 5120px)
{
/* FOR FUTURE ADDITIONS */
}

/* ============================================================================================================================================================================ */
/*  END STYLESHEET                                                                                                                                                              */
/* ============================================================================================================================================================================ */