/*--------------------------------------------------------------
# Stopsito Header Styles
--------------------------------------------------------------*/

/* Navbar Base */
.site-header {
	overflow: visible;
}

.stopsito-navbar {
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: relative;
	z-index: 100;
}

/* Desktop Navigation Wrapper: Logo | Site Title | | Menu */
.stopsito-nav-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* Brand: Logo + Site Title */
.stopsito-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

/* Logo */
.stopsito-logo-link {
	display: block;
	text-decoration: none;
	flex-shrink: 0;
}

.stopsito-logo-img {
	height: 56px;
	width: auto;
	display: block;
}

/* Site Title */
.stopsito-site-title {
	font-family: 'Noto Serif', serif;
	font-size: 1.75rem;
	font-weight: 600;
	color: #333333;
	text-decoration: none;
	line-height: 1.1;
	white-space: nowrap;
}

.stopsito-site-title:hover {
	color: #28605d;
}

/* Navigation Menu */
.stopsito-nav-menu {
	display: flex;
	justify-content: flex-end;
}

.stopsito-nav-menu .navbar-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.stopsito-nav-menu .navbar-nav li {
	margin: 0;
}

.stopsito-nav-menu .navbar-nav a {
	color: #333;
	text-decoration: none;
	font-family: 'Sora', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.5px;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.stopsito-nav-menu .navbar-nav a:hover {
	color: #28605d;
}

.stopsito-nav-menu .navbar-nav .current-menu-item > a,
.stopsito-nav-menu .navbar-nav .current_page_item > a,
.stopsito-nav-menu .navbar-nav .current-menu-ancestor > a {
	color: #28605d;
	font-weight: 600;
}

/* CTA Button — unique overrides only; base styles from .cta-btn */
.stopsito-cta-btn {
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
	background: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0.5rem;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 1001;
}

.hamburger-line {
	width: 30px;
	height: 3px;
	background-color: #333;
	border-radius: 3px;
	transition: all 0.3s ease;
}

/* Mobile Offcanvas */
.mobile-offcanvas {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background-color: #ffffff;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	z-index: 1002;
	transition: right 0.3s ease;
	overflow-y: auto;
}

.mobile-offcanvas.active {
	right: 0;
}

.mobile-offcanvas-header {
	padding: 1.5rem;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-offcanvas-logo {
	max-height: 50px;
	width: auto;
}

.mobile-close-btn {
	background: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
}

.mobile-offcanvas-body {
	padding: 1.5rem;
}

.mobile-nav-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.mobile-nav-list li {
	margin-bottom: 1rem;
}

.mobile-nav-list a {
	color: #333;
	text-decoration: none;
	font-family: 'Sora', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	display: block;
	padding: 0.5rem 0;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
	color: #28605d;
}

.mobile-nav-list .current-menu-item > a,
.mobile-nav-list .current_page_item > a,
.mobile-nav-list .current-menu-ancestor > a {
	color: #28605d;
	font-weight: 600;
}

.mobile-offcanvas-cta {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 1.5rem;
}

.mobile-contact-info {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #eee;
}

.mobile-contact-text {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.mobile-contact-item {
	margin-bottom: 0;
}

.mobile-contact-item:last-of-type {
	margin-bottom: 1.5rem;
}

.mobile-contact-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #333;
	text-decoration: none;
	font-weight: 400;
	font-size: 0.85rem;
	padding: 0.5rem 0;
}

.mobile-contact-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Mobile Overlay */
.mobile-offcanvas-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-offcanvas-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
	.stopsito-navbar {
		padding: 0.75rem 0;
	}
}
