/* HEADER */

.header {
  background: var(--primary-color);
  color: var(--text-color);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-wrap img {
  height: 36px;
  width: auto;
  max-width: 100%;
}

.site-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-color);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.nav-menu a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .nav-menu.active {
    display: flex;
  }
}
/* FOOTER */
.footer {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 40px 0 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 16px 0;
}

.footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 4px;
}

.footer-nav a:hover,
.footer-nav a:focus {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  opacity: 0.9;
}

.footer p {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

/* Optional: Add a top divider */
.footer::before {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
/* Mobile Centered Layout */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}