@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
  }

  .shows-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .shows-column {
    width: 90%;
  }

  .show-card {
    padding: 15px;
  }

  .artist-detail,
  .artist-detail:nth-child(even) {
    flex-direction: column;
  }

  .artist-detail {
    gap: 15px;
    border-bottom: solid 1px var(--accent-light);
    padding-bottom: 80px;
  }

  .artist-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-page {
    padding: 45px 0 0 0;
  }

  .contact-container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 77px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--bg-accent);
    flex-direction: column;
    transition: all 0.2s ease-in-out;
    box-shadow: -5px 0 15px var(--shadow);
    z-index: 100;
    display: flex;
  }

  .menu-toggle:checked ~ .nav-menu {
    right: 0;
  }

  .nav-menu li {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg-primary);
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 10px 0;
    color: var(--bg-secondary);
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content {
    gap: 25px;
  }

  .about-hero-section,
  .band-members {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .members-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  .shows-container,
  .shows-column {
    padding: 0;
  }

  .artist-info h2 {
    font-size: 2rem;
  }

  .artist-role {
    font-size: 1.1rem;
  }

  .contact-item {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .about-section {
    padding: 40px 0;
  }

  .show-event {
    font-size: 1rem;
  }

  .artists-page {
    padding: 60px 0 0 0;
  }

  .artist-info h2 {
    font-size: 1.8rem;
  }

  .influence-tags {
    gap: 8px;
  }

  .influence-tag {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .contact-item i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact-form {
    padding: 30px 15px;
  }

  .contact-image img {
    margin-bottom: 15px;
  }
}
