/* Shared site styles */
:root {--brand-navy:#0f2148;--brand-red:#d21c23;}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.two-col .col-left, .two-col .col-right { min-width: 0; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col .classes-offered ul { margin-left: 1rem; }
.two-col .class-addons ol { margin-left: 1rem; }
.two-col .cta { margin-top: 1rem; }

.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.class-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}
.class-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.class-icon {
  margin-right: 0.4rem;
  font-size: 1.2rem;
}
.class-card p {
  margin: 0.25rem 0;
}
.class-price {
  font-weight: 600;
}
.class-tag {
  font-size: 0.9rem;
  color: #6b7280;
}
.classes-footnote {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* Classes & Booking layout polish */
#classes.classes-offered h2 { margin-bottom: 0.35rem; }
#classes.classes-offered p strong { display: block; margin-bottom: 0.05rem; }
#classes.classes-offered p em { display: block; margin-top: 0.05rem; font-size: 0.9rem; color: #6b7280; }
#classes .class-grid { margin-top: 1.25rem; }
.two-col .col-right #addons { margin-top: 0.5rem; }

.site-footer {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: #0f172a;
  color: #e5e7eb;
}
.site-footer a { color: #e5e7eb; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  height: 64px;
  width: auto;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  display: inline-block;
}
.footer-tagline { margin: 0; font-size: 0.95rem; color: #cbd5f5; }
.footer-contact h4,
.footer-links h4 { margin: 0 0 0.5rem 0; font-size: 1rem; }
.footer-contact p { margin: 0; font-size: 0.95rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.25rem; }
.footer-bottom {
  max-width: 1000px;
  margin: 1.5rem auto 0 auto;
  border-top: 1px solid #1f2937;
  padding-top: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  color: #9ca3af;
}
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
