/* Root (optional if unused) */
:root {
    /* Define your variables if needed */
    /* Example: --the-blue: #123456; */
}

/* Menu trigger (hamburger button) - visible only on mobile */
.menu-trigger {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-left: 15px;
	background: var(--the-blue);
	padding: 12px;
	position: absolute;
	height: 51px;
	margin-top: -28px;
	z-index: 10;
}
.menu-trigger:hover {
	background: transparent;
}

.menu-icon {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
}
.menu-icon span::before {
	content: '\e809';
	position: absolute;
	font-family: 'globe';
	font-size: 3em;
	left: -57px;
	top: -26px;
}
.menu-icon span {
	position: relative;
}
/* Menu overlay background and animation */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--the-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
}

/* Show menu when active */
.menu-overlay.active {
    transform: translateY(0);
}

/* Menu items */
.overlay-menu {
    text-align: center;
}

.overlay-menu .site-menu {
    list-style: none;
    padding: 0;
}

.overlay-menu .site-menu li {
    margin: 20px 0;
}

.overlay-menu .site-menu li a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.overlay-menu .site-menu li a:hover {
    color: #ffcc00;
}

/* Close button */
.close-menu {
    position: absolute;
    top: 55px;
    right: 65px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

/* Header styling */
.header-container {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-container.transparent {
    background-color: transparent;
}

.header-container.scrolled {
    background-color: #F4F4F4;
}

/* Default logo size */
.main-logo img {
    transition: all 0.3s ease;
    width: 200px;
}

/* Shrunk logo when scrolled */
.header-container.scrolled .main-logo img {
    width: 120px;
}

.header-container.scrolled {
	background-color: var(--the-main);
	z-index: 999;
}

/* Menu styles */
#menu-primary-menu-1 {
    display: flex;
    gap: 1em;
}

#menu-primary-menu-1 li a {
    color: var(--the-white);
    font-weight: 600;
    transition: 500ms;
}

.the-one {
	display: flex;
	gap: 3em;
	align-items: center;
	position: relative;
	top: 10px;
}

/* ------------------------------ */
/* RESPONSIVE BREAKPOINT HANDLING */
/* ------------------------------ */

/* Hide mobile menu by default on large screens */
.menu-trigger,
.menu-overlay {
    display: none;
}

/* Show mobile menu from 1260px and below */
@media (max-width: 1260px) {
    .menu-trigger {
        display: flex;
    }

    .menu-overlay {
        display: flex;
    }

    .desktop-menu {
        display: none !important;
    }
	.the-one {
	display: flex;
	gap: 100px;
}
}

/* Show desktop menu from 1261px and above */
@media (min-width: 1261px) {
    .desktop-menu {
        display: block;
    }

    .menu-trigger,
    .menu-overlay {
        display: none !important;
    }
}
