.menu-container {
    background-color: #1f1b2e;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-container .logo a {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
}

.menu-container nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.menu-container nav a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.menu-container nav a.logout {
    color: red;
}

.menu-container nav a:hover {
    color: white;
}

.burger {
    display: none;
    font-size: 28px;
    color: #ffd700;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-container nav {
        display: none;
        flex-direction: column;
        background-color: #1f1b2e;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        padding: 1rem 0;
        text-align: center;
    }

    .menu-container nav.active {
        display: flex;
    }

    .burger {
        display: block;
    }
}

footer {
  background-color: #1f1b2e;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: white;
}

footer p {
  margin: 0.3rem 0;
}



/* === Responsive additions === */
@media screen and (max-width: 768px) {
  body {
    padding: 1rem;
  }
  main.form-wrapper,
  .form-wrapper,
  .artist-card {
    width: 100% !important;
    margin: 0 auto;
  }
  .artist-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  form label {
    width: 100%;
  }
  input, select, button {
    width: 100%;
    font-size: 1rem;
  }
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
