/* =====================
   HERO (Schedule Page Only)
   ===================== */

.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--light-gray);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--light-gray);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* =====================
   STUDIO SELECTOR
   ===================== */

.studio-selector {
  background: white;
  border-radius: var(--radius);
  padding: 8px;
  display: inline-flex;
  gap: 8px;
  margin: 60px 0 80px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.studio-btn {
  background: transparent;
  color: var(--charcoal);
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.studio-btn:hover {
  background: var(--cream);
  color: var(--burgundy);
}

.studio-btn.active {
  background: var(--burgundy);
  color: white;
  box-shadow: 0 2px 8px rgba(114, 67, 69, 0.2);
}

/* =====================
   SCHEDULE WRAPPER
   ===================== */

.schedule-wrapper {
  text-align: center;
  margin-bottom: 100px;
}

.schedule-section {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}

.schedule-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   LOCATION BADGE
   ===================== */

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 48px;
  box-shadow: 0 4px 16px rgba(129, 83, 85, 0.25);
}

/* =====================
   WEEK GRID
   ===================== */

.week-grid {
  display: grid;
  gap: 24px;
}

.day-card {
  background: linear-gradient(135deg, white, #FFF9F5);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(151, 110, 109, 0.15);
  transition: all 0.3s ease;
}

.day-card:hover {
  box-shadow: 0 8px 24px rgba(129, 83, 85, 0.12);
  transform: translateY(-2px);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(234, 186, 29, 0.2);
}

.day-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 1px;
}

.class-count {
  background: var(--gold);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =====================
   CLASSES
   ===================== */

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.class-item {
  background: rgba(151, 110, 109, 0.08);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--rose);
  transition: all 0.2s ease;
}

.class-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(129, 83, 85, 0.15);
  border-left-color: var(--gold);
}

.class-item.postural {
  background: #FFE8E8;
  border-left-color: #ff6b6b;
}

.class-time {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 8px;
}

.class-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.class-teacher {
  font-size: 0.9rem;
  color: var(--mauve);
}

/* =====================
   EMPTY STATE
   ===================== */

.empty-day {
  text-align: center;
  color: var(--mauve);
  font-style: italic;
  padding: 40px 0;
}

/* =====================
   RESPONSIVE
   ===================== */

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

  .studio-selector {
    flex-direction: column;
    width: 100%;
  }

  .studio-btn {
    width: 100%;
  }

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

  .day-card {
    padding: 24px;
  }
}
