/* ParentYog — Waiver & Participation Terms page styles */

/* === Waiver Nav === */
.waiver-nav {
  background: rgba(15,23,42,.97);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.waiver-nav-brand {
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
}

.waiver-nav-brand span {
  color: #F97316;
}

.waiver-nav-back {
  color: rgba(255,255,255,.65);
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.waiver-nav-back:hover {
  color: white;
}

/* === Waiver Hero === */
.waiver-hero {
  background: linear-gradient(135deg, #3B0764 0%, #1E1B4B 50%, #0F172A 100%);
  padding: 120px 0 64px;
  text-align: center;
}

.waiver-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.waiver-hero .subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-top: 12px;
}

.attorney-banner {
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 32px;
  color: #FB923C;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* === Waiver Body === */
.waiver-body {
  background: white;
  padding: 72px 0;
}

.waiver-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Waiver Sections === */
.waiver-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E8F0;
}

.waiver-section:last-child {
  border-bottom: none;
}

.waiver-section h2 {
  font-size: 1.05rem;
  color: #0F172A;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.waiver-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #6D28D9;
  color: white;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.waiver-section p {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.8;
}

/* === Attorney Note (inline in sections) === */
.attorney-note {
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #92400E;
  line-height: 1.6;
}

/* === Waiver Acceptance Box === */
.waiver-acceptance {
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}

.waiver-acceptance h2 {
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 12px;
}

.waiver-acceptance p {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* === Back Button === */
.waiver-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6D28D9;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 32px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.waiver-back-btn:hover {
  background: #5B21B6;
  transform: translateY(-2px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .waiver-hero {
    padding: 100px 0 48px;
  }

  .waiver-body {
    padding: 48px 0;
  }

  .waiver-nav {
    padding: 0 16px;
  }

  .waiver-section h2 {
    font-size: 0.98rem;
  }
}
