body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #eaeaea;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.schedule-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.schedule-box h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 8px;
}

.schedule-note {
  color: #bdbdbd;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 18px;
}

.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-book {
  display: inline-block;
  padding: .75rem 1.2rem;
  border-radius: 10px;
  background: #ffd700;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: transform .2s ease;
}

.btn-book:hover {
  transform: translateY(-1px);
}

.payment-instructions h3 {
  color: #ffd700;
  margin-top: 12px;
  margin-bottom: 8px;
}

.payment-instructions a {
  color: #00bcd4;
  text-decoration: underline;
}

.payment-instructions ol {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 520px) {
  .schedule-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-book {
    width: 100%;
    text-align: center;
  }
}

/* Reminder Banner */
.site-banner {
  background: #141414;
  color: #eaeaea;
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95rem;
}
.site-banner a {
  color: #00bcd4;
  text-decoration: underline;
  font-weight: 600;
}
.site-banner a:hover {
  color: #ffd700;
}

/* Reminder Banner */
.site-banner {
  background: #141414;
  color: #eaeaea;
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95rem;
}
.site-banner a {
  color: #00bcd4;
  text-decoration: underline;
  font-weight: 600;
}
.site-banner a:hover {
  color: #ffd700;
}

/* Flashing "Reminder" text */
.flash-text {
  color: #ffd700;
  font-weight: 700;
  animation: flash 1.2s infinite;
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Header */
.navbar {
  background: #000;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #222;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo .brand-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  text-decoration: none;
}

.logo .brand-link:hover {
  color: #fff;
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.nav-links a.active,
.nav-links a:hover {
  background: #ffd700;
  color: #000;
}

/* Reminder Banner */
.site-banner {
  background: #141414;
  color: #eaeaea;
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95rem;
}
.site-banner a {
  color: #00bcd4;
  text-decoration: underline;
  font-weight: 600;
}
.site-banner a:hover {
  color: #ffd700;
}
.flash-text {
  color: #ffd700;
  font-weight: 700;
  animation: flash 1.2s infinite;
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ====== Mobile responsiveness ====== */
@media (max-width: 640px) {
  /* Header layout: stack & center on phones */
  .nav-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .logo .brand-link {
    font-size: 1.15rem;       /* slightly smaller on phones */
  }

  .nav-links ul {
    display: flex;
    gap: 0;
  }
  .nav-links a {
    display: inline-block;
    padding: 0.5rem 0.9rem;   /* bigger tap target */
  }

  /* Banner text wraps nicely */
  .site-banner {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.65rem 0.9rem;
  }
  .flash-text {
    display: inline-block;
    margin-bottom: 2px;
  }

  /* Schedule box spacing */
  .schedule-box {
    margin: 20px 12px;        /* side gutters */
    padding: 18px 14px;
  }

  /* Booking buttons: full width */
  .schedule-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .btn-book {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  /* Payment list spacing */
  .payment-instructions ol {
    padding-left: 18px;
  }
}

/* Ultra-small phones */
@media (max-width: 360px) {
  .logo .brand-link { font-size: 1.05rem; }
  .site-banner { font-size: 0.9rem; }
}




