/* =========================================
   MOBILE.CSS – style responsywne
   ========================================= */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 72px;
  }

  .artist-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* HERO */
  .hero {
    padding: 56px 0 32px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
  }

  .hero-date {
    font-size: 20px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* LINEUP */
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .artist-card h3 {
    font-size: 16px;
  }

  /* HARMONOGRAM */
  .day-tabs {
    gap: 8px;
  }

  .day-tab {
    padding: 12px 18px;
    font-size: 13px;
    flex: 1;
    text-align: center;
  }

  .schedule-table-wrap {
    display: none;
  }

  .schedule-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .schedule-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: 0 4px 24px rgba(16, 24, 40, 0.06);
  }

  .schedule-card .info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .schedule-card .info .genre {
    color: var(--color-orange);
    font-weight: 600;
    font-size: 13px;
  }

  .schedule-card .info .scene {
    color: var(--color-gray);
    font-size: 13px;
  }

  .schedule-card .time-badge {
    background-color: var(--color-teal);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    text-align: center;
  }

  /* LOKALIZACJA */
  .location h2 {
    font-size: 28px;
  }

  .location-map {
    height: 200px;
  }

  .ticket-card {
    padding: 24px;
  }

  /* PARTNERZY */
  .partners-row {
    gap: 12px;
  }

  .partner-badge {
    height: 52px;
    flex: 1 1 40%;
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    font-size: 15px;
    padding: 18px 0;
  }

  /* FOOTER */
  .footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 36px;
  }

  .partner-badge {
    flex: 1 1 100%;
  }
}
