/* ============================================
   SCHEDULE PAGE — Modern Art Jiu-Jitsu
   ============================================ */

/* Page Header (compact variant) */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-header--compact {
  min-height: auto;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 48px;
}

.page-header__bg-solid {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gray-950) 0%, var(--black) 100%);
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.page-header__subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  font-weight: 300;
}

/* ============================================
   Schedule Main
   ============================================ */

.schedule-main {
  padding: 60px 0 120px;
}

@media (max-width: 768px) {
  .schedule-main { padding: 40px 0 80px; }
}

/* Day Strip */
.day-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .day-strip {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.day-strip__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.day-strip__days {
  display: flex;
  gap: 6px;
}

.day-strip__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--duration-base) var(--ease-out);
}

.day-strip__day--active {
  background: rgba(104, 146, 105, 0.15);
  color: var(--green);
  border: 1px solid rgba(104, 146, 105, 0.25);
}

.day-strip__day--off {
  background: var(--gray-900);
  color: var(--gray-600);
  border: 1px solid var(--gray-800);
}

/* ============================================
   Schedule Blocks
   ============================================ */

.schedule-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.schedule-block {
  display: grid;
  grid-template-columns: 100px 1fr 4px;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .schedule-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}

.schedule-block:hover {
  border-color: rgba(104, 146, 105, 0.25);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
}

.schedule-block__indicator {
  width: 4px;
  border-radius: 4px;
  background: var(--green);
  opacity: 0.3;
  transition: opacity var(--duration-base) var(--ease-out);
}

@media (max-width: 600px) {
  .schedule-block__indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px 3px 0 0;
  }
}

.schedule-block:hover .schedule-block__indicator {
  opacity: 1;
}

.schedule-block__time-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 600px) {
  .schedule-block__time-col {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
}

.schedule-block__time {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.schedule-block__time span {
  font-size: 0.875rem;
  color: var(--green);
  margin-left: 2px;
}

.schedule-block__duration {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.schedule-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.schedule-block__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.schedule-block__badge {
  padding: 4px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(104, 146, 105, 0.12);
  border: 1px solid rgba(104, 146, 105, 0.2);
  border-radius: 100px;
}

.schedule-block__badge--kids {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.15);
}

.schedule-block__badge--new {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.15);
}

.schedule-block__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.schedule-block__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.schedule-tag {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-300);
  background: var(--gray-800);
  border-radius: 6px;
}

/* ============================================
   Schedule Info
   ============================================ */

.schedule-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .schedule-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.schedule-info__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--gray-950);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
}

.schedule-info__icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.schedule-info__item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.schedule-info__item p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* CTA Section reuse */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

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

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.9) 100%
  );
}

.cta-section__content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.cta-section__text {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  font-weight: 300;
}
