/* Applied to every page except the home page */
body.not-home {
    padding-top: 9rem !important;
}

.info-navbar-parent-container * {
	color:#ffd200 !important;
	    /*text-shadow: rgb(0, 0, 0) 0px 0px 3px;*/
}

.info-navbar-parent-container .badge {
    color: #fff !important;
	background-color: black !important;
}

.info-navbar-parent-container {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding-top: 0.5rem;
    padding-right: 6%;
    padding-left: 6%;
    background-color: transparent !important;
	
}

/* The parent container acts only as a transparent wrapper that keeps the navbar fixed */
.navbar-parent-container {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding-top: 3rem; /* Space from the top edge of the viewport */
    background-color: transparent !important;
}

/* Defines the floating pill with a permanent glassmorphism effect */
.navbar-container {
    margin: 0 auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Pill styling and glassmorphism effect */
    background-color: rgba(255, 255, 255, 0.7) !important; /* Translucent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    width: 90% !important;
    max-width: 1250px;
    border-radius: 100px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 5px 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Forces the navbar content to remain on a single row without wrapping */
.navbar-class {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
}

/* Keeps the utility icons aligned to the right */
.navbar-nav-utils-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    background: transparent !important;
    min-width: fit-content;
}

/* Prevents the logo section from taking more space than necessary */
.navbar-logo-section {
    flex: 0 1 auto !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .navbar-parent-container {
        padding-top: 4rem !important;
    }
}