/* Header & Navbar */
header {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px !important;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: var(--color-text);
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 250px;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-actions {
    display: none; /* Can be moved inside nav-links for mobile if needed */
  }
  
  /* Add actions to mobile menu if needed, or keep separate */
}

/* Footer */
footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--color-accent);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
}

.footer-col ul li a:hover {
  color: var(--color-white);
  padding-right: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}
