        
        /* Header styling */
        .site-header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
            background-color: transparent;
        }
        
        .site-header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .site-header.scrolled .logo {
            transform: scale(0.9);
        }

        /* Keep the fixed header below the WordPress admin bar for logged-in users */
        .admin-bar .site-header {
            top: 32px;
        }

        @media screen and (max-width: 782px) {
            .admin-bar .site-header {
                top: 46px;
            }
        }

        /* Inner pages: solid header so the centered menu is readable over light content.
           The front page keeps the transparent-over-hero look until scrolled. */
        body:not(.front-page) .site-header {
            background-color: rgba(255, 255, 255, 0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        body:not(.front-page) .menu-items li a {
            color: var(--secondary-color);
        }

        body:not(.front-page) .hamburger span {
            background: var(--secondary-color);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            height: 50px;
            transition: var(--transition);
        }
        
        .logo img {
            height: 100%;
            width: auto;
        }
        
        /* Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .menu-items {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .menu-items li {
            margin: 0 15px;
            position: relative;
        }
        
        .menu-items li a {
            color: var(--white-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            display: block;
            transition: var(--transition);
            position: relative;
        }
        
        .scrolled .menu-items li a {
            color: var(--secondary-color);
        }
        
        .menu-items li a:hover {
            color: var(--primary-color);
        }
        
        .menu-items li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 0;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .menu-items li a:hover::after {
            width: 100%;
        }
        
        /* Social icons */
        .site-header .social-icons {
            display: flex;
            margin-left: 30px;
        }
        
        .site-header .social-icons a {
            color: var(--white-color);
            margin-left: 15px;
            font-size: 18px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid transparent;
        }
        
        .site-header.scrolled .social-icons a {
            color: var(--secondary-color);
        }
        
        .site-header .social-icons a:hover {
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            margin-left: 20px;
        }
        
        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--white-color);
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: var(--transition);
        }
        
        .scrolled .hamburger span {
            background: var(--secondary-color);
        }
        
        .hamburger span:nth-child(1) {
            top: 0px;
        }
        
        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 9px;
        }
        
        .hamburger span:nth-child(4) {
            top: 18px;
        }
        
        .hamburger.open span:nth-child(1), .hamburger.open span:nth-child(4) {
            top: 9px;
            width: 0%;
            left: 50%;
        }
        
        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }
        
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        /* Language Selector */
        .lang-selector {
            margin-left: 20px;
            position: relative;
        }
        
        .lang-selector button {
            background: transparent;
            border: none;
            color: var(--white-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 500;
            padding: 5px;
            transition: var(--transition);
        }
        
        .scrolled .lang-selector button {
            color: var(--secondary-color);
        }
        
        .lang-selector button:hover {
            color: var(--primary-color);
        }
        
        .lang-selector button i {
            margin-left: 5px;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hamburger {
                display: block;
                z-index: 1002;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -300px;
                height: 100vh;
                width: 300px;
                background-color: var(--white-color);
                flex: none;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 80px 30px 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1001;
                overflow-y: auto;
            }
            
            .main-nav.open {
                right: 0;
            }
            
            .menu-items {
                flex-direction: column;
                width: 100%;
            }
            
            .menu-items li {
                margin: 0;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .menu-items li a {
                color: var(--secondary-color);
                padding: 15px 0;
                font-size: 16px;
            }
            
            .site-header .social-icons {
                margin: 20px 0 0;
                width: 100%;
                justify-content: center;
            }
            
            .site-header .social-icons a {
                color: var(--secondary-color);
                margin: 0 10px;
            }
            
            .lang-selector {
                margin: 20px auto 0;
            }
            
            .lang-selector button {
                color: var(--secondary-color);
            }
            
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 1000;
            }
            
            .overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }
        
        /* Animation for menu items */
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .main-nav.open .menu-items li {
            animation: fadeInRight 0.3s forwards;
            opacity: 0;
        }
        
        .main-nav.open .menu-items li:nth-child(1) { animation-delay: 0.1s; }
        .main-nav.open .menu-items li:nth-child(2) { animation-delay: 0.2s; }
        .main-nav.open .menu-items li:nth-child(3) { animation-delay: 0.3s; }
        .main-nav.open .menu-items li:nth-child(4) { animation-delay: 0.4s; }
        .main-nav.open .menu-items li:nth-child(5) { animation-delay: 0.5s; }
        .main-nav.open .menu-items li:nth-child(6) { animation-delay: 0.6s; }
        
        .main-nav.open .social-icons {
            animation: fadeInRight 0.3s forwards;
            animation-delay: 0.7s;
            opacity: 0;
        }
        
        .main-nav.open .lang-selector {
            animation: fadeInRight 0.3s forwards;
            animation-delay: 0.8s;
            opacity: 0;
        }
