:root {
    /* Hide scrollbar for all browsers globally */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari, etc.) */
:root::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    left: 0;
    top:0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Page Transition Bands */
.transition-band {
    position: fixed;
    background: #fff;
    z-index: 105;
    pointer-events: none;
    top: 0; /* Start from the very top */
    height: 25vh; /* Each band takes 1/4 of the full viewport height */
}

/* Landing Bands for Initial Site Load */
.landing-band {
    position: fixed;
    background: #fff;
    z-index: 104;
    pointer-events: none;
    top: 0; /* Start from the very top */
    height: 25vh; /* Each band takes 1/4 of the full viewport height */
}

.centerSection {
    z-index: 3;
    padding: 20px;
    padding-top: 65px;
    width: calc(100% - 40px);
    scroll-behavior: smooth;
}

/* ---------- TOP PANNEL ----------*/
.topPannel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
    width: calc(96vw - 40px);
    height: 45px;
    background-color: #ffffff80 !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    left: 2vw;
    top: 5px;
    border-radius: 10px;
    border-bottom: 1px solid rgb(186, 186, 186);
    box-shadow: rgba(0, 0, 0, 0.1) 0.95px 0.95px 1.6px;
    /* Initial state for landing animation - will be overridden by JS on first load */
    transform: translateY(-100%);
    opacity: 0;
}

.middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.topPannelDescription span,
.HambergMenu i,
.rightTopPannel i,
.rightTopPannel .vl {
    color: rgba(21,21,21);
}

.topPannelDescription {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    gap: 30px;
}

.topPannelDescription a {
    font-size: 1em;
    cursor: default;
    user-select: none;
    text-wrap: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.cursorCoordinates {
    font-size: 0.8em;
    color: rgba(21,21,21,0.5)!important;
    cursor: default;
    user-select: none;
}

.HambergMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

/* Ensure HambergMenu is always visible on all screen sizes */
@media (min-width: 768px) {
    .HambergMenu {
        display: flex !important;
    }
}

.HambergMenu i {
    font-size: 1.1em;
    padding: 6px 10px;
    color: #000;
    border-radius: 5px;
}

.HambergMenu i:hover {
    background-color: #ffffff33;
    cursor: pointer;
}

.rightTopPannel {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    text-align: right;
}

.rightTopPannel a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: rgba(21,21,21);
    cursor: pointer;
    transition: all 0.5s ease-out;
}

.rightTopPannel a:hover {
    background-color: #ffffff33;
}

.rightTopPannel a i {
    font-size: 1.1em;
}

.rightTopPannel a span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    margin-left: 0;
    transition: all 0.5s ease;
}

.rightTopPannel a:hover span {
    max-width: 200px;
    margin-left: 15px;
}

.vl {
    border-left: thin solid #000;
    height: 15px;
}














/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    /* Remove .middle class styling on mobile */
    .HambergMenu.middle {
        /* Override any .middle class styles */
        position: static;
        left: auto;
        transform: none;
    }

    .topPannelDescription {
        display: none;
    }
}

/* Remove old conflicting styles */
.hamburgerMenu {
    display: none; /* Hide the old class */
}

