
/* Header Styles */
.header {
	background: var(--background);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.header-content {
	display: flex;
	flex-direction: column;
}

.logo {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.logo div {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	background: var(--primary);
	border-radius: 4px;
}

.logo-text {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--foreground);
}

/* Hamburger Button */
.hamburger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.hamburger i {
	transition: transform 0.3s ease;
}

.hamburger.active i {
	transform: rotate(90deg);
}

/* Mobile Menu Transition */
.nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease, padding 0.3s ease;
	flex-wrap: nowrap;
}

.nav a {
	text-decoration: none;
	color: var(--foreground);
	font-weight: 500;
}

.nav a:hover,
.nav a.active {
	color: var(--accent);
}

/* Show menu on mobile when toggled */
.nav.show {
	max-height: 500px;
	padding-top: 1rem;
}

/* Desktop Layout */
@media (min-width: 768px) {
	.header-content {
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
	}

	.nav {
		display: flex !important;
		flex-direction: row;
		align-items: center;
		gap: 2rem;
		max-height: none;
		padding: 0;
		flex-wrap: wrap;
	}

	.hamburger {
		display: none;
	}
}

/* Button Style */
.btn {
	padding: 0.5rem 1.5rem;
	border: none;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	cursor: pointer;
	font-size: 0.875rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--accent-foreground);
}

.btn-primary:hover {
	background-color: var(--accent)!important;
	transform: translateY(-1px);
}

.btn-primary:active {
	background-color: var(--accent)!important;
	transform: translateY(-1px);
}
