/* ===== MOBILE FIXES FOR SCREEN ≤ 768px ===== */
@media (max-width: 768px) {

  /* --- NAVIGATION MENU --- */
  .site-header {
    padding: 0.5rem 1rem;
    border-bottom: none;
  }

  .site-header .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    height: auto;
    flex-wrap: wrap; /* allow wrapping to second line */
  }

  .logo {
    max-height: 40px;
  }

  .menu {
    display: flex;
    flex-wrap: nowrap;       /* prevent wrapping */
    justify-content: space-between;  /* spread links evenly */
    align-items: center;
    gap: 0.3rem;
  }

  .menu a {
    color: white;
    Font-size: 0.85rem;      /* slightly smaller text */
    padding: 0.25rem 0.4rem;  /* smaller padding */
    white-space: nowrap;      /* prevent breaking into two lines */
  }

  .menu .cta {
    flex: 0 0 auto;  
    background:var(--gold); color:#3d2a16;
    padding: 0.2rem 0.45rem;
    border-radius: 14px;
    font-size: 0.8rem;
  }

  /* Special case: very narrow screens (e.g., iPhone SE/mini) */
@media (max-width: 380px) {
  .menu {
    flex-wrap: wrap;   /* allow wrapping if it’s too tight */
    justify-content: center;
  }
  
  .menu .cta {
    width: 100%;       /* button takes full row */
    text-align: center;
    margin-top: 0.3rem;
  }
}

  /* --- HERO SECTION --- */
  .hero {
    clip-path: none !important;
    min-height: auto !important;
    padding: 2rem 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .container {
    margin-top: 0 !important;
  }

  .hero img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  /* --- CTA BUTTON ROW --- */
  .cta-row {
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
  }

  .cta-row .btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-row .btn:hover,
  .cta-row .btn:focus {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* --- ABOUT SECTION --- */
  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    margin: 0;
  }

  .about-image {
    position: static;
    max-width: 80%;
    margin: 1rem auto 0;
  }

  /* --- FOOTER --- */
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  /* ===== CONCERTS TABLE RESPONSIVE ===== */
  .concerts-table {
    width: 100%;
    border-collapse: collapse;
  }

  /* Hide headers */
  .concerts-table thead {
    display: none;
  }

  /* Each row becomes a card */
  .concerts-table tr {
    display: block;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Cells become flex rows with label */
  .concerts-table td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    text-align: left;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .concerts-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
    margin-right: 0.5rem;
    width: 90px;
    flex-shrink: 0;
  }

  .concerts-table td:last-child {
    border-bottom: none;
  }

  /* Alternating row colors */
  .concerts-table tbody tr:nth-child(5n+1) { background: #fef6f6; }
  .concerts-table tbody tr:nth-child(5n+2) { background: #f6fef9; }
  .concerts-table tbody tr:nth-child(5n+3) { background: #f6f9fe; }
  .concerts-table tbody tr:nth-child(5n+4) { background: #fff8e6; }
  .concerts-table tbody tr:nth-child(5n+5) { background: #f5f5ff; }
}
