@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@400;600;700;800&display=swap");

body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #09090b;
  color: #f8f8fb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-top: 0;
}

.topbar {
  background: #040404;
  color: #f8f8fb;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 180px;
  max-width: 45vw;
  height: auto;
  display: block;
}

.brand-text {
  color: #94e51f;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar nav a {
  color: #94e51f;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
}

.topbar nav a.active {
  color: #ff4aa2;
  text-decoration: underline;
  opacity: 1;
}

.container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 16px;
}

.card {
  background: #111117;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(255, 41, 148, 0.12);
  border: 1px solid rgba(148, 229, 31, 0.3);
  padding: 16px;
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.stat p {
  margin: 6px 0 0;
  font-size: 2rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.compact-select {
  width: min(320px, 100%);
}

input,
select,
textarea,
button {
  border: 1px solid #2f3646;
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 0.95rem;
  background: #0c0f15;
  color: #f8f8fb;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
}

button {
  background: #ff2c93;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button:hover {
  background: #e91581;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #262c39;
}

.classes-table td {
  padding: 16px 8px;
}

.classes-table td:nth-child(3),
.classes-table th:nth-child(3),
.classes-table td:nth-child(4),
.classes-table th:nth-child(4) {
  text-align: right;
}

.status {
  margin-top: 12px;
  font-weight: 700;
  color: #94e51f;
}

.status-error {
  color: #ff7eb6;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 10px;
}

.checkbox-field label {
  display: block;
}

.checkbox-field a {
  color: #94e51f;
}

.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2f3646;
}

.map-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button-link {
  display: inline-block;
  background: #ff2c93;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 10px;
  text-decoration: none;
  transition: background 0.12s ease;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.button-link:hover {
  background: #e91581;
}

.table-book-btn {
  display: inline-block;
  text-decoration: none;
  background: #ff2c93;
  color: #fff;
  border-radius: 8px;
  padding: 9px 10px;
  font-weight: 700;
  min-width: 190px;
  text-align: center;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.table-book-btn:hover {
  background: #e91581;
}

@media (max-width: 700px) {
  .fees-table thead {
    display: none;
  }

  .fees-table,
  .fees-table tbody,
  .fees-table tr,
  .fees-table td {
    display: block;
    width: 100%;
  }

  .fees-table tr {
    padding: 12px 0;
    border-bottom: 1px solid #262c39;
  }

  .fees-table td {
    border-bottom: 0;
    padding: 6px 0;
    text-align: left !important;
  }

  .fees-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94e51f;
  }

  .fees-table td:last-child {
    padding-top: 10px;
  }

  .fees-table td:last-child::before {
    display: none;
  }

  .table-book-btn {
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 9px 14px;
  }
}

.nav-social {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8d8d95;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-icon:hover {
  color: #ffffff;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid rgba(148, 229, 31, 0.22);
  background: #040404;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding-top: 22px;
  padding-bottom: 24px;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer-bottom p {
  margin: 0;
  color: #8d8d95;
  font-size: 0.95rem;
  text-align: right;
}

.site-footer-heading {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
}

.site-footer-contact {
  justify-self: start;
  text-align: left;
}

.site-footer-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.site-footer-icon {
  color: #94e51f;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.site-footer-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer-n {
  color: #ff2c93;
}

@media (max-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer-bottom p {
    text-align: left;
  }
}

.site-footer a {
  color: #94e51f;
}

.site-footer-contact a {
  color: #f8f8fb;
  text-decoration: none;
}

.site-footer-contact a:hover {
  text-decoration: none;
}

.prose > :last-child {
  margin-bottom: 0;
}
