/* assets/css/header.css */

/* 1. Basis Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 3. Header Styling */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* 4. Logo */
header .logo{
	padding: 0.25rem 0;
}
header .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}

header .logo a img {
  max-height: 80px;       
  width: auto;
  display: block;
  vertical-align: middle;	
}

/* 5. Main Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

nav ul li a:hover {
  color: #007bff;
}

/* 6. Hamburger Button (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333333;
  transition: background-color 0.2s ease-in-out;
}

/* 7. Mobile Navigation */
@media (max-width: 768px) {
  nav ul {
	position: absolute;
	top: 100%;
	right: 0;
	width: 200px;
	flex-direction: column;
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	display: none;
	padding: 1rem;
  }
  nav ul.active {
	display: flex;
  }
  .hamburger {
	display: flex;
  }
}

/* 8. Utility */
.hidden {
  display: none !important;
}
