/* ============================================
   SCHEDULE PAGE — Divided Sky Scheduler Embed
   ============================================ */

/* --- Hero --- */
.sch-hero {
  position: relative;
  background: #1a1a1a;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.sch-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.sch-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.55);
  z-index: 1;
}
.sch-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sch-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.6;
}

/* Push content below hero (no need for nav margin now) */
.sch-embed-section {
  width: 100%;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 80px);
}

.sch-iframe {
  width: 100%;
  min-height: 700px;
  height: calc(100vh - 80px);
  border: none;
  background: #1a1a2e;
}

/* Hide footer on this page — scheduler is the whole experience */
.ds-footer {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .sch-embed-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
  }
  
  .sch-iframe {
    min-height: 600px;
    height: calc(100vh - 70px);
  }
}

/* Active nav link highlight */
.ds-nav-link-active {
  color: #77E806 !important;
}

@media (max-width: 768px) {
  .sch-hero-overlay {
    background: rgba(25, 25, 25, 0.45);
  }
}
