
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


.site-header,
.main-header,
.header-wrapper,
#header,
header,
.header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1000;
}

.site-logo,
.logo,
.brand-logo,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.site-logo::before,
.logo::before,
.brand-logo::before,
.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.2), transparent);
    transition: left 0.6s ease;
}

.site-logo:hover::before,
.logo:hover::before,
.brand-logo:hover::before,
.navbar-brand:hover::before {
    left: 100%;
}

.site-logo:hover,
.logo:hover,
.brand-logo:hover,
.navbar-brand:hover {
    color: #DDBE58;
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(221, 190, 88, 0.3);
}

.main-navigation,
.primary-navigation,
.nav-menu,
.navbar-nav,
.nav {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navigation a,
.primary-navigation a,
.nav-menu a,
.menu-item a,
.navbar-nav a,
.nav a,
.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navigation a::before,
.primary-navigation a::before,
.nav-menu a::before,
.menu-item a::before,
.navbar-nav a::before,
.nav a::before,
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.1) 0%, rgba(221, 190, 88, 0.05) 100%);
    border: 1px solid rgba(221, 190, 88, 0.2);
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation a:hover::before,
.primary-navigation a:hover::before,
.nav-menu a:hover::before,
.menu-item a:hover::before,
.navbar-nav a:hover::before,
.nav a:hover::before,
.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.main-navigation a:hover,
.primary-navigation a:hover,
.nav-menu a:hover,
.menu-item a:hover,
.navbar-nav a:hover,
.nav a:hover,
.nav-link:hover {
    color: #DDBE58;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.3);
}

.main-navigation a::after,
.primary-navigation a::after,
.nav-menu a::after,
.menu-item a::after,
.navbar-nav a::after,
.nav a::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DDBE58, #f0c14b);
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(221, 190, 88, 0.4);
}

.main-navigation a:hover::after,
.primary-navigation a:hover::after,
.nav-menu a:hover::after,
.menu-item a:hover::after,
.navbar-nav a:hover::after,
.nav a:hover::after,
.nav-link:hover::after {
    width: 70%;
}

.main-navigation .current-menu-item a,
.primary-navigation .current-menu-item a,
.nav-menu .current-menu-item a,
.menu-item.current-menu-item a,
.navbar-nav .active a,
.nav .active a,
.nav-link.active {
    color: #DDBE58;
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.15) 0%, rgba(221, 190, 88, 0.08) 100%);
    border: 1px solid rgba(221, 190, 88, 0.3);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.3);
}

#mobile_nav_icon,
.mobile-menu-toggle,
.hamburger-menu,
.navbar-toggler {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.1) 0%, rgba(221, 190, 88, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile_nav_icon::before,
.mobile-menu-toggle::before,
.hamburger-menu::before,
.navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.2), transparent);
    transition: left 0.6s ease;
}

#mobile_nav_icon:hover::before,
.mobile-menu-toggle:hover::before,
.hamburger-menu:hover::before,
.navbar-toggler:hover::before {
    left: 100%;
}

#mobile_nav_icon:hover,
.mobile-menu-toggle:hover,
.hamburger-menu:hover,
.navbar-toggler:hover {
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.2) 0%, rgba(221, 190, 88, 0.1) 100%);
    border-color: #DDBE58;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(221, 190, 88, 0.2);
}

.mobile_menu_wrapper {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

#mobile_menu_close.button {
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.1) 0%, rgba(221, 190, 88, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#mobile_menu_close.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.2), transparent);
    transition: left 0.6s ease;
    border-radius: 50%;
}

#mobile_menu_close.button:hover::before {
    left: 100%;
}

#mobile_menu_close.button:hover {
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.2) 0%, rgba(221, 190, 88, 0.1) 100%);
    border-color: #DDBE58;
    color: #DDBE58;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(221, 190, 88, 0.2);
}

.mobile_main_nav,
#sub_menu {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.mobile_main_nav li a,
#sub_menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
}

.mobile_main_nav li a::before,
#sub_menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile_main_nav li a:hover::before,
#sub_menu li a:hover::before {
    left: 100%;
}

.mobile_main_nav li a:hover,
#sub_menu li a:hover {
    color: #DDBE58;
    background: rgba(221, 190, 88, 0.08);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.3);
}

/* Logo dans le menu mobile */
.mobile_menu_wrapper .logo_container {
    margin-bottom: 40px;
}

.mobile_menu_wrapper .logo_container img {
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.mobile_menu_wrapper .logo_container:hover img {
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(221, 190, 88, 0.3));
}

/* === AMÉLIORATIONS RESPONSIVES === */

@media (max-width: 768px) {
    .site-logo,
    .logo,
    .brand-logo,
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .main-navigation a,
    .primary-navigation a,
    .nav-menu a,
    .menu-item a,
    .navbar-nav a,
    .nav a,
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .site-logo,
    .logo,
    .brand-logo,
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .main-navigation a,
    .primary-navigation a,
    .nav-menu a,
    .menu-item a,
    .navbar-nav a,
    .nav a,
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

.site-header,
.main-header,
.header-wrapper,
#header,
header,
.header {
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-navigation a:focus,
.primary-navigation a:focus,
.nav-menu a:focus,
.menu-item a:focus,
.navbar-nav a:focus,
.nav a:focus,
.nav-link:focus {
    outline: 2px solid #DDBE58;
    outline-offset: 2px;
    border-radius: 12px;
    box-shadow: 0 0 0 4px rgba(221, 190, 88, 0.1);
}

.site-logo,
.logo,
.brand-logo,
.navbar-brand {
    background: linear-gradient(135deg, #ffffff 0%, #DDBE58 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-navigation,
.primary-navigation,
.nav-menu,
.navbar-nav,
.nav {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-navigation a,
.primary-navigation a,
.nav-menu a,
.menu-item a,
.navbar-nav a,
.nav a,
.nav-link {
    position: relative;
}

.main-navigation a::before,
.primary-navigation a::before,
.nav-menu a::before,
.menu-item a::before,
.navbar-nav a::before,
.nav a::before,
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.main-navigation a:hover::before,
.primary-navigation a:hover::before,
.nav-menu a:hover::before,
.menu-item a:hover::before,
.navbar-nav a:hover::before,
.nav a:hover::before,
.nav-link:hover::before {
    left: 100%;
} 