/* classes-page.css — /pages/classes.php
   Reuses .cl-section / .cl-header / .cl-grid / .cl-card from style.css so the
   design is identical to the homepage classes section. */

/* Adds top breathing room so the section header isn't tucked under the navbar */
.clp-section {
  padding-top: 100px;
}

/* Empty state (when no active classes exist) */
.clp-empty-wrap {
  padding: 130px 24px 80px;
  background: linear-gradient(160deg, #fdfaf2 0%, #f9f2e3 45%, #f5ead4 100%);
  text-align: center;
}
.clp-empty-inner { max-width: 460px; margin: 0 auto; }
.clp-empty-icon {
  font-size: 2.8rem;
  color: #c8960a;
  opacity: 0.55;
  margin-bottom: 16px;
}
.clp-empty-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #0d0d0d;
}
.clp-empty-wrap p {
  font-family: 'Poppins', sans-serif;
  color: rgba(0,0,0,0.62);
  margin: 0 0 22px;
}
.clp-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #c8860a 0%, #e8b84b 50%, #c8860a 100%);
  filter: brightness(1.05);
  color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .clp-section { padding-top: 84px; }
  .clp-empty-wrap { padding: 110px 18px 64px; }
}
