.header {
  background: var(--white);
  padding: 0.3rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Buttons */
.auth-buttons {
  display: flex;
  gap: 1rem;
}

/* Hide mobile menu buttons on desktop */
#mobile-menu-btn {
  display: none;
}

.nav-content .close-btn {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .nav-content {
    gap: 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 1rem 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-content.active {
    transform: translateX(0);
    visibility: visible;
  }


  .nav-content .close-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    z-index: 1004;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
  }

  .nav-content .close-btn:hover {
    background-color: #cc0000;
    transform: scale(1.1);
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    text-align: left;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.25rem;
  }

  .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .auth-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  #mobile-menu-btn {
    display: block;
    z-index: 1000;
    position: relative;
  }
}

/* Responsive adjustments for showcase */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}
