/* ====== Hero ====== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero.full-height {
  height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 0;
}
.hero.small {
  padding: 60px 0 50px;
}
.hero-inner { text-align: center; }
.hero-title { letter-spacing: -0.02em; }
.hero-title .accent { color: #e6f0ff; }
.hero-subtitle { color: #e6eaf6; margin: 10px auto 24px; max-width: 700px; }

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 25%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 20%;
  animation-delay: 1s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  bottom: 40%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-15px) rotate(180deg); 
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stripe {
  position: absolute; inset: auto -20% -40px -20%;
  height: 140px; background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 10px, transparent 10px 20px);
  transform: skewY(-6deg);
  pointer-events: none;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn.primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn.secondary:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,.5);
}

/* ====== Cards / Grid ====== */
.card {
  background: var(--white);
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.link-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
}

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }

.person .tag {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; padding: 6px 10px; border-radius: 999px;
  font-weight: 700; letter-spacing: .5px; margin-bottom: 10px;
  background: var(--blue); color: var(--white);
}
.person .tag.badge { min-width: 40px; }

/* ====== Table ====== */
.table-wrap { overflow-x: auto; border-radius: 14px; box-shadow: var(--shadow); }
.schedule-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: 14px; overflow: hidden;
}
.schedule-table th, .schedule-table td {
  padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(2,6,23,.06);
}
.schedule-table thead th {
  font-size: .9rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
  background: #f8fafc;
}

/* ====== Toolbar / Inputs ====== */
.toolbar {
  display: flex; align-items: center; justify-content: flex-end;
  margin: 8px 0 16px;
}
.select {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--muted);
}
select {
  appearance: none;
  padding: 8px 12px; border-radius: 12px; border: 1px solid rgba(2,6,23,.12);
  background: var(--white);
  font: inherit;
}

/* ====== Footer ====== */
.site-footer {
  padding: 36px 0; border-top: 1px solid rgba(2,6,23,.06);
  background: #fafcff;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.to-top { text-decoration: none; font-weight: 700; color: var(--blue); }

/* ====== Notes ====== */
.note { color: var(--muted); font-size: .9rem; margin-top: 10px; }

