/* header-new.css — custom isolated header styles */

.custom-header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background-color: #f9f9f9;
	border-bottom: 1px solid #e0e0e0;
}

.custom-header-logo {
	font-size: 1.75rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
}

.custom-header-nav {
	display: flex;
	gap: 1.5rem;
}

.custom-header-nav a {
	color: #555;
	text-decoration: none;
	transition: color 0.3s ease;
}

.custom-header-nav a:hover {
	color: #111;
}

.custom-header-wrapper {
    background: transparent !important;
    width: 100% !important;
    z-index: 99;
    position: relative;
    border: 0;
    padding: 0;
}

.custom-header-wrapper .wrapper.wrapper-header {
    width: 100% !important;
}

.custom-header-wrapper .nav .menu-item a, .custom-header-wrapper nav#primary-nav {
    background: transparent;
}

.custom-header-wrapper .nav .menu-item a {
    font-family: "Roboto", sans-serif;
    font-size: 16px !important;
    color: #fff;
    font-weight: 500 !important;
    text-transform: capitalize;
}

/* responsive styling */

@media only screen and (min-width: 1700px) {
    .header .header-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media only screen and (min-width: 1160px) {
    .header .header-container {
        padding: 0 !important;
        min-height: 0 !important;
    }

    .header-container .nav {
        margin-right: 0 !important;
    }
}