@use '../utilities/colors' as *;
@use '../utilities/functions' as *;
@use '../utilities/mixins' as *;
@use '../utilities/helpers' as *;
@use '../base/merlin' as *;

.header {
	background-color: $menu-color;
	left: 0;
	width: 95%; 
	left: 50%;
    transform: translateX(-50%);
	bottom: -30px;
	align-items: center;
	border-radius: 6px;
	&.nav-fixed {
		// convert to fixed
		position: fixed;
		left: 0;
		width: 95%;
		left: 50%;
		top: 0;
		bottom: auto;
		transform: translateX(-50%);
	}
	nav {
		border-radius: 2rem;
		ul {
			gap: 1rem;
			align-items: center;
			li {
				a {
					color: $dark-blue;
					font-family: var(--primary-font);
					font-weight: 300;
					font-size: 1.2rem;
					&:hover {
						background-color: white;
						border-radius: 5px;
						color: $dark-blue;
					}
					&.active {
						background-color: white;
						border-radius: 5px;
						color: $dark-blue;
					}
					p {
						font-family: var(--primary-font);
					}
				}
			}
			&.menu-right {
				li {
					a {
						color: #575656;
					}
				}
			}
		}
	}
	.logo-content {
		position: relative;
		img {
			z-index: 10;
			position: relative;
		}
		.rounded-shape {
			position: absolute;
			bottom: -10px;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: $menu-color;
			z-index: 1;
			border-radius: 50%;
		}
	}
}
#menu_mobile {
	li {
		a {
			gap: .5rem;
			font-size: 1.2rem;
			font-weight: 300;
			span,i {
				color: #fff;
			}
		}
	}

}

.overlay-menu {
	backdrop-filter: blur(5px);
}
