/* TYPOGRAPHIES */
@font-face {
    font-family: 'Inter';
    src: url('../webassets/typographies/Inter-VariableFont_opsz\,wght.ttf');
}
@font-face {
    font-family: 'Inter-italic';
    src: url('../webassets/typographies/Inter-Italic-VariableFont_opsz\,wght.ttf');
}
@font-face {
    font-family: 'Intertight';
    src: url('../webassets/typographies/InterTight-VariableFont_wght.ttf');
}
@font-face {
    font-family: 'Intertight-italic';
    src: url('../webassets/typographies/InterTight-Italic-VariableFont_wght.ttf');
}

* {
    --button-global-color: rgb(0, 65, 190);
    --global-white-1: rgb(250, 250, 252);
    --global-white-2: rgb(245, 245, 247);
    --global-transparent-white-1: rgba(255, 255, 255, 0.9);
    --global-transparent-white-2: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    box-sizing: border-box;
    list-style: none;
}
html, body {
    min-height: 100vh;
    height: 100%;
    margin: 0;
    padding: 0;
}

nav, ul, li{
    user-select: none;
}
:any-link {
    color: inherit;
    text-decoration: none;
}
.hide {
    visibility: hidden;
}
.standard-block {
    background-image:linear-gradient(170deg, var(--global-white-1), var(--global-white-2));
    width: 80%;
    max-width: 1000px;
    height: auto;
    padding: 18px 40px 22px 40px;
    border: 1px solid white;
    border-radius: 7px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 5px;
}
.menu-divider-gradient {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 12px;
    margin-bottom: 12px;
    filter: saturate(0);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
}
.menu-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 12px;
    margin-bottom: 12px;
    background-color: black;
}

button {
    letter-spacing: 0.03em;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid var(--button-global-color);
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    color: var(--button-global-color);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
button:hover {
    background-color: var(--button-global-color);
    color: white;
    border: 2px solid var(--button-global-color);
}
.link-button {
    letter-spacing: 0.03em;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid var(--button-global-color);
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    color: var(--button-global-color);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.2s ease, font-weight 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.link-button:hover {
    background-color: var(--button-global-color);
    color: white;
    border: 2px solid var(--button-global-color);
}
.link-dark-button {
    padding: 6px 12px;
    color: rgb(230, 230, 255);
    border: 2px solid rgb(230, 230, 255);
    box-shadow: 0 0 10px rgb(0, 0, 255);
    text-shadow: 0 0 6px rgb(0, 0, 255);
}
.link-dark-button:hover {
    color: var(--button-global-color);
    background-color: rgb(230, 230, 255);
    border: 2px solid rgb(230, 230, 255);
    box-shadow: 0 0 5px rgb(0, 0, 255);
    text-shadow: 0 0 5px rgba(0, 0, 255, 0);
}



/*=========================
   GLOW BUTTON
=========================*/
:root {
    --glow-hue: 222deg;
    --shadow-hue: 180deg;
    --spring-easing: linear(
    0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
    1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
    1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
    0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
    0.998 84%, 1
  );
    --spring-duration: 1.33s;
}
@property --shimmer {
    syntax: "<angle>";
    inherits: false;
    initial-value: 33deg;
}

@keyframes shimmer {
    0% {
        --shimmer: 0deg;
    }
    100% {
        --shimmer: 360deg;
    }
}

@keyframes shine {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes text {
    0% {
        background-position: 100% center;
    }    
    100% {
        background-position: -100% center;
    }    
}

.glow-button {
    
    --inset: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: var(--bg);
    font-weight: 600;
    padding: .8em 1.4em;
    position: relative;
    isolation: isolate;
    box-shadow: 0 0 10px hsl(var(--glow-hue) 10% 30% / 20%), inset 0 -10px 20px -10px hsla(var(--shadow-hue),10%,90%,95%);
    border-radius: 0.66em;
    scale: 1;
    transition: all var(--spring-duration) var(--spring-easing);
}

.glow-button:hover:not(:active),
.glow-button.active {
    transition-duration: calc(var(--spring-duration)*0.5);
    scale: 1;
    box-shadow: 0 4px 8px -2px hsl(var(--glow-hue) 50% 20% / 50%), inset 0 0 0 transparent;
}
.glow-button:active {
    scale: 1;
    transition-duration: calc(var(--spring-duration)*0.5);
}

.shimmer {
    position: absolute;
    inset: calc(var(--inset) * -1);
    border-radius: inherit;
    pointer-events: none;
    mask-image: conic-gradient(
        from var(--shimmer, 0deg),
        transparent 0%,
        transparent 20%,
        black 36%,
        black 45%,
        transparent 50%,
        transparent 70%,
        black 85%,
        black 95%,
        transparent 100%
    );
    mask-size: cover;
    mix-blend-mode: plus-lighter;
    animation: shimmer 1s linear infinite both;
}
.glow-button:hover .shimmer::before,
.glow-button:hover .shimmer::after,
.glow-button.active .shimmer::before,
.glow-button.active .shimmer::after {
    opacity: 1;
    animation: shine 1.2s ease-in 1 forwards;
}
.shimmer::before,
.shimmer::after {
    transition: all 0.5s ease;
    opacity: 0;
    content: "";
    border-radius: inherit;
    position: absolute;
    mix-blend-mode: color;
    inset: var(--inset);
    pointer-events: none;
}
.shimmer::before {
    box-shadow: 0 0 calc(var(--inset) * 0.1)  2px hsl(var(--glow-hue) 20% 95%),
        0 0 calc(var(--inset) * 0.18)  4px hsl(var(--glow-hue) 20% 80%),
        0 0 calc(var(--inset) * 0.33)  4px hsl(var(--glow-hue) 50% 70%),
        0 0 calc(var(--inset) * 0.66) 5px hsl(var(--glow-hue) 100% 70%);
    z-index: -1;
}

.shimmer::after {
    box-shadow: inset 0 0 0 1px hsl(var(--glow-hue) 70% 95%),
        inset 0 0 2px 1px hsl(var(--glow-hue) 100% 80%),
        inset 0 0 5px 2px hsl(var(--glow-hue) 100% 70%);
    z-index: 2;
}

.glow-button .glow-button-text {
    color: transparent;
    background-clip: text;
    background-color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    font-size: 1rem;

    background-image: linear-gradient(120deg, transparent, hsla(var(--glow-hue),100%,80%,0.66) 40%, hsla(var(--glow-hue),100%,90%,.9) 50%, transparent 52%);
    background-repeat: no-repeat;
    background-size: 300% 300%;
    background-position: center 200%;
}

.glow-button:hover .glow-button-text,
.glow-button.active .glow-button-text {
    animation: text .66s ease-in 1 both;
}



















/* =========================
   GLOBAL HEADER NAV
========================= */
.logo {
    user-select: none;
    opacity: 0.85;
    height: 20px;
    transition: opacity 220ms ease;
}
.logo:hover {
    cursor: pointer;
    opacity: 0.95;
    transition: opacity 220ms ease;
}
.glass-nav {
    --bg-color: rgba(245, 245, 247, 0.9);
    --highlight: rgba(255, 255, 255, 0.75);
    --text: rgba(0, 0, 0, 0.95);
    position: relative;
    width: 100%;
    z-index: 10;
    overflow: visible; 
    background: transparent;
    border-bottom: 1px solid var(--global-transparent-white-1);
}
.glass-filter,
.glass-overlay,
.glass-specular {
    position: absolute;
    inset: 0;
}
.glass-filter {
    z-index: 1;
    backdrop-filter: blur(4px);
    filter: url(#glass-distortion) saturate(120%) brightness(1.15);
}
.glass-overlay {
    z-index: 2;
    background: rgba(255, 255, 255, 0.274);
}
.glass-specular {
    z-index: 3;
    box-shadow: inset 1px 1px 1px var(--highlight);
}
.glass-content {
    position: relative;
    z-index: 4;
    padding: 7px 14px 7px 14px;
}
.nav-list {
    background-color: var(--global-white-2);
    max-height: 50px;
    height: auto;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid var(--global-transparent-white-1);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: 200ms background-color ease;
}
.nav-list:hover {
    background-color: var(--global-white-1);
}
.nav-list-content {
    display: flex;
    box-sizing: border-box;
    min-width: 530px;
    width: 80vw;
    max-width: 1000px;
    height: 54px;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 32px;
}
.nav-item {
    position: relative;
    display: inline-block;
    align-items: center;
    text-align: center;
    align-content: center;
    padding-top: 14px;
    height: 73px;
    width: auto;
    border: 2px solid rgba(0, 0, 0, 0);
    color: var(--text);
    letter-spacing: 0.01em;
    text-shadow: 0 0 13px rgba(0, 0, 0, 0.075);
    text-decoration: none;
    font-weight: 350;
    font-size: 0.9rem;
    transition: color 220ms ease, opacity 220ms ease;
}
.nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 2px;
    background: rgb(255, 49, 49);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms ease;
    opacity: 0.9;
}
.nav-item::after {
    content: attr(data-text);
    font-weight: 500;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.nav-item:hover {
    width: 100%;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
}
.nav-item:hover::before {
    transform: scaleX(1);
}

/* Dark mode styles */
.nav-item.is-active {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
}
.nav-item.is-active::before {
    transform: scaleX(1);
}
@media (prefers-color-scheme: dark) {
  .glass-nav {
    --bg-color: rgba(0, 0, 0, 0.25);
    --highlight: rgba(255, 255, 255, 0.15);
  }
}
@keyframes nav-item-hover {
    0% {
        font-weight: 400;
        border-bottom: 2px solid rgba(212, 42, 42, 0);
    }
    100% {
        font-weight: 500;
        border-bottom: 2px solid rgb(212, 42, 42);
    }
}


/*=========================
   MOBILE MENU - Burger
=========================*/
.mobile-controls {
    display: none;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.search-mobile {
    display: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 220ms ease;
}
.search-mobile:hover {
    opacity: 1;
}

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}
.burger-btn:hover {
    background: transparent;
    border: none;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Burger animation - open state (cross) */
.burger-btn.is-open .burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
}
.burger-btn.is-open .burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--global-white-1);
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.is-open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 100px 24px 40px 24px;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Navigation Accordion */
.mobile-nav-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    text-align: left;
    transition: color 0.2s ease;
}
.mobile-nav-header:hover {
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.7);
}

.mobile-nav-link {
    text-decoration: none;
}

.mobile-nav-icon {
    position: relative;
    width: 12px;
    height: 12px;
}
.mobile-nav-icon::before,
.mobile-nav-icon::after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.mobile-nav-icon::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Mobile nav accordion open state */
.mobile-nav-item.is-open .mobile-nav-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 0 16px;
}

.mobile-nav-item.is-open .mobile-nav-panel {
    max-height: 500px;
    padding: 0 0 20px 16px;
}

.mobile-nav-panel a {
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-nav-panel a:last-child {
    border-bottom: none;
}
.mobile-nav-panel a:hover {
    color: rgba(0, 0, 0, 0.95);
}

/* Lock body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}


/*=========================
   MOBILE SEARCH OVERLAY
=========================*/
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--global-white-1);
    z-index: 999; /* Same level as mobile menu */
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-search-overlay.is-open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-search-content {
    padding: 100px 24px 40px 24px; /* Top padding for navbar space */
    max-width: 600px;
    margin: 0 auto;
}

.mobile-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    margin-bottom: 20px;
}

.mobile-search-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    flex-shrink: 0;
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-family: inherit;
    color: rgba(0, 0, 0, 0.9);
    outline: none;
}
.mobile-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.mobile-search-results {
    padding: 0;
}

.mobile-search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.mobile-search-item:active {
    opacity: 0.6;
}

.mobile-search-item-icon {
    width: 16px;
    height: 16px;
    opacity: 0.4;
    flex-shrink: 0;
}

.mobile-search-item-content {
    flex: 1;
}

.mobile-search-item-meta {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-search-item-title {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    margin-top: 2px;
}

.mobile-search-empty {
    padding: 40px 20px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
}

.mobile-search-tips {
    margin-top: 30px;
    padding: 0;
}
.mobile-search-tips h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 8px 0;
}
.mobile-search-tips p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 20px 0;
    line-height: 1.5;
}
.mobile-search-tips h2 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 10px 0;
}

.mobile-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mobile-search-tags a {
    display: inline-block;
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.mobile-search-tags a:hover {
    border-color: rgba(0, 0, 0, 0.4);
    color: rgba(0, 0, 0, 0.9);
}

/* Lock body scroll when mobile search is open */
body.mobile-search-open {
    overflow: hidden;
}

/* Hide mobile menu when search is open */
body.mobile-search-open .mobile-menu-overlay {
    display: none !important;
}


/*=========================
   MOBILE RESPONSIVE - 800px
=========================*/
@media (max-width: 800px) {
    .nav-list-content {
        min-width: unset;
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }
    
    /* Hide desktop nav items */
    .nav-list-content > li:not(:first-child):not(.mobile-controls) {
        display: none;
    }
    
    /* Hide desktop search */
    .nav-list-content .search {
        display: none;
    }
    
    /* Show mobile controls */
    .mobile-controls {
        display: flex;
    }
    .search-mobile {
        display: block;
    }
    .burger-btn {
        display: flex;
    }
    
    /* Show mobile menu overlay container */
    .mobile-menu-overlay {
        display: block;
    }
    
    /* Show mobile search overlay container */
    .mobile-search-overlay {
        display: block;
    }
    
    /* Hide dropdown menu on mobile */
    .dropdown-menu {
        display: none !important;
    }
    
    /* Adjust nav-list padding */
    .nav-list {
        padding: 8px 12px;
    }
    
    .glass-content {
        padding: 7px 10px;
    }
}


/* Dropdown Menu */
.ddmv-1, .ddmv-2, .ddmv-3 {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 220ms ease, transform 260ms ease;
}
.ddm-visible {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    z-index: 20;
    visibility: hidden;
    border: 1px solid var(--global-transparent-white-1);
    border-radius: 7px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    position: absolute; 
    left: 14px;
    top: 59px;
    width: calc(100% - 28px);
    height: 0px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--global-white-1);
    padding: 3vh 0 12vh 0;
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
    transition: opacity 260ms ease, transform 320ms ease, height 420ms ease;
    pointer-events: none;
    will-change: opacity, transform, height;
}
.dropdown-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.dropdown-menu.is-switching {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dropdown-menu-content {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: start;
    gap: 2vw;
    justify-content: start;
    min-width: 530px;
    width: 80vw;
    max-width: 1000px;
    height: auto;
    box-sizing: border-box;
    padding: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 280ms ease, transform 360ms ease;
    transition-delay: 120ms;
}
.dropdown-menu.is-open .dropdown-menu-content {
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu.is-switching .dropdown-menu-content {
    transition-delay: 80ms;
}
.dropdown-menu.is-search .dropdown-menu-content {
    transition-delay: 120ms;
}
.dropdown-menu.is-search .dropdown-menu-description,
.dropdown-menu.is-search .dropdown-menu-items {
    display: none;
}
.dropdown-menu-minititle {
    opacity: 0.5;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 300;
    margin: 0;
    padding-top: 4px;
    bottom: 0;
    filter: blur(6px);
    transform: none;
    transition: opacity 220ms ease, filter 260ms ease;
}
.dropdown-menu-minititle.ddm-visible {
    opacity: 0.5;
    filter: blur(0px);
}
.dropdown-menu-divider {
    width: 100%;
    height: 1px;
    margin-top: 2px;
    margin-bottom: 7px;
    background-color: rgba(0, 0, 0, 0.2);
    transform: none;
    filter: none;
}
.dropdown-menu-divider.ddm-visible {
    transform: none;
}
.dropdown-menu-description {
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    width: 30%;
    min-width: 250px;
    max-width: 290px;
    text-align: left;
}
.dropdown-menu-description-text {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: translateY(6px);
    transition: transform 380ms ease;
}
.dropdown-menu-description-text.ddm-reveal {
    transform: translateY(0);
}
.dropdown-menu-items {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.dropdown-menu-search {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.search {
    width: 17px;
    height: 17px;
    cursor: pointer;
    opacity: 1;
    transition: opacity 180ms ease;
}
.dropdown-menu.is-search .dropdown-menu-search {
    display: flex;
}
.dropdown-search-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dropdown-search-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}
.dropdown-search-input {
    width: 100%;
    flex: 1;
    padding: 6px 10px;
    background: var(--global-white-1);
    border: none;
    font-size: 1.3rem;
    font-weight: 400;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.dropdown-search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dropdown-search-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 2px 0px 2px 2px;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.7);
    transition: background-color 180ms ease, transform 180ms ease;
}
.dropdown-search-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: rgba(0, 0, 0, 1);
}
.dropdown-search-item-icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    flex-shrink: 0;
}
.dropdown-search-item-title {
    font-weight: 500;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.dropdown-search-item-meta {
    font-size: 0.8rem;
    opacity: 0.7;
    white-space: nowrap;
}
.dropdown-search-empty {
    padding: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
}
.search-tips {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 1vw;

}
.search-tips div {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%
}
.search-tips h2,
.search-tips h3 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color:rgba(0, 0, 0, 0.5);
}
.search-tips p,
.search-tips li {
    margin: 0.8rem 0 0 0;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 400;
}
.search-tips p strong {
    font-weight: 600;

}
.search-tips li a {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.2) ;
    border-radius: 99px;
    margin-bottom: 4px;
    padding: 1px 6px;
    transition: border-color 120ms ease, color 120ms ease;
}
.search-tips li a:hover {
    border: 1px solid black ;
    color: black;
    transition: border-color 180ms ease, color 180ms ease;
}


.dropdown-item {
    position: relative;
    padding-bottom: 6px;
    filter: blur(6px);
    transition: opacity 220ms ease, transform 260ms ease, filter 260ms ease;
}
.dropdown-item.ddm-visible {
    filter: blur(0px);
}
.dropdown-item:hover {
    transition-duration: 150ms;
    color: rgba(255, 0, 0, 0.863);
}









/* =========================
   GLOBAL FOOTER
========================= */
.footer-container {
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: auto;
}
.global-footer {
    width: 100%;
    padding: 20px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.8);
    background-color: var(--global-white-2);
    border-top: 1px solid var(--global-transparent-white-1);
}
.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.footer-content p {
    margin: 0;
}








/* =========================
   PATH NAV - FIL D'ARIANE
========================= */
.path-nav {
    width: 100%;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.90);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 4;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.path-nav-content {
    width: 80vw;
    max-width: 1000px;
    min-width: 320px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.8rem;
}

.path-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.15s ease, font-weight 0.15s ease;
}

.path-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 0 8px rgb(255, 255, 255);

}

.path-nav-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 6px 12px;
    transition: background-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.path-nav-back svg {
    flex-shrink: 0;
}

.path-nav-back.disabled {
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    text-shadow: none;
    pointer-events: none;
}

.path-nav-back.disabled:hover {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-shadow: none;
}

.path-nav-separator {
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.path-nav-breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.path-nav-breadcrumb li {
    display: flex;
    align-items: center;
}

.path-nav-breadcrumb .path-divider {
    margin: 0 8px;
    color: rgb(255, 255, 255);
    font-weight: 900;
}

.path-nav-breadcrumb a {
    padding: 4px 0;
}

.path-nav-breadcrumb .active-location {
    color: white;
    font-weight: 600;
    text-shadow: 0 0 8px rgb(255, 255, 255);
    cursor: default;
    pointer-events: none;
}

/* Masquer le path-nav sur l'accueil */
body[data-page="accueil"] .path-nav {
    display: none;
}

/* =========================
   BLUR GLOBAL - DROPDOWN MENU
========================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0.08);
    opacity: 0;
    z-index: 50;
    pointer-events: none;
    transition: opacity 600ms ease, backdrop-filter 200ms ease, -webkit-backdrop-filter 200ms ease;
}

body.dropdown-open::before {
    opacity: 1;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    background-color: rgba(100, 100, 120, 0.1);
    transition-duration: 600ms;
}

.glass-nav,
.dropdown-menu {
    z-index: 60;
}




/* =========================
   PATH SUBNAV - NAVIGATION SŒURS
========================= */
.path-subnav {
    width: 100%;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--global-transparent-white-1);
    border-top: 1px solid var(--global-transparent-white-1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 44px;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.path-subnav-content {
    width: 80vw;
    max-width: 1000px;
    min-width: 320px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 0.75rem;
}

.path-subnav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    transition: color 0.15s ease;
}

.path-subnav a:hover {
    color: white;
    text-shadow: 0 0 6px rgb(255, 255, 255);
}

.path-subnav .subnav-divider {
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin: 0 6px;
    font-size: 0.7rem;
}

.path-subnav .subnav-active {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 6px rgb(255, 255, 255);
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

.path-subnav .subnav-section-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.path-subnav .subnav-section-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 6px;
}
