/* ----------------------------------------------------------
   PAGE-WIDE FONT RESET — MATCH ORIGINAL SBK FONT
---------------------------------------------------------- */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ----------------------------------------------------------
   NAVIGATION (shared look, page‑specific file)
---------------------------------------------------------- */
.sbk-nav {
  background: #111;
  padding: 12px 0;
}

.sbk-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.sbk-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.sbk-nav a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */
.sbk-header {
  padding: 0;
  height: 230px;              /* reduced height */
  position: relative;
  color: white;
}

/* Outer box with dancers visible even at smaller height */
.sbk-header-outer {
  width: 100%;
  height: 100%;
  background-image: url("header-image.png");
  background-size: cover;
  background-position: center top;   /* keeps dancers visible */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* Wider black box for readability */
.sbk-header-inner-black {
  background: #000;
  padding: 16px 26px;
  display: inline-block;
  border: 3px solid #D4AF37;
  max-width: 90%;
}

/* Logo + text side-by-side */
.sbk-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}

/* Logo */
.sbk-header-logo {
  width: 85px;                /* slightly smaller to fit reduced height */
  height: auto;
  margin: 0;
}

/* Title + tagline stacked */
.sbk-header-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}

/* Title */
.sbk-title {
  font-size: 26px;
  font-weight: bold;
  color: #D4AF37;
  margin: 0;
}

/* Tagline */
.sbk-header-tagline {
  display: block;
  font-size: 15px;
  opacity: 0.95;
  margin-top: 4px;
}

/* ----------------------------------------------------------
   RESPONSIVE — stays readable + dancers visible on mobile
---------------------------------------------------------- */
@media (max-width: 600px) {

  .sbk-header {
    height: 200px;            /* reduced mobile height */
  }

  .sbk-header-inner {
    flex-direction: row;
    gap: 14px;
  }

  .sbk-header-inner-black {
    padding: 14px 20px;
    max-width: 95%;
  }

  .sbk-title {
    font-size: 22px;
  }

  .sbk-header-tagline {
    font-size: 14px;
  }

  .sbk-header-logo {
    width: 70px;
  }
}


/* ----------------------------------------------------------
   FILTER CARDS
---------------------------------------------------------- */
#filters {
  display: flex;
  gap: 15px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-width: 180px;
}

.filter-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.filter-card select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ----------------------------------------------------------
   MAP
---------------------------------------------------------- */
#map-container {
  width: 100%;
  height: 500px;
  margin: 0 auto;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

/* ----------------------------------------------------------
   SEARCH BAR
---------------------------------------------------------- */
#tableSearch {
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
  display: block;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ----------------------------------------------------------
   TABLE
---------------------------------------------------------- */
#table-container {
  width: 95%;
  max-width: 900px;
  margin: 20px auto 40px auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


#table-headers,
#table-body > div {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 0.7fr 0.7fr;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

#table-headers {
  background: #333;
  color: white;
  font-weight: bold;
}

#table-body > div:nth-child(even) {
  background: #fafafa;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.sbk-footer-divider {
  height: 2px;
  background: #e5e7eb;
  margin-top: 40px;
}

.sbk-footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  color: #ffffff;
}

.sbk-footer-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #D4AF37;
}

.sbk-footer-tagline {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
}

.sbk-submit-wrapper {
  margin-bottom: 8px;
}

.sbk-footer-links {
  margin-top: 20px;
  font-size: 13px;
}

.sbk-footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 6px;
}

.sbk-footer-links a:hover {
  text-decoration: underline;
}
.sbk-footer-addclass {
  margin: 12px 0 18px;
  text-align: center;
}

.sbk-btn-gold,
.sbk-btn-gold:visited,
.sbk-btn-gold:active,
.sbk-btn-gold:focus {
  display: inline-block;
  padding: 10px 20px;
  background: #D4AF37; /* gold fill */
  color: #000; /* black text */
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s ease;
}

.sbk-btn-gold:hover {
  background: #B8962F; /* darker gold on hover */
  color: #000;
}

/* ----------------------------------------------------------
   COOKIE BANNER
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  z-index: 1000;
  display: none;
}

#cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cookie-banner-text p {
  margin: 4px 0 6px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
}

/* GOLD BUTTON — Accept All */
.cookie-btn.primary {
  background: #d4af37;
  color: #000;
}

.cookie-btn.primary:hover {
  background: #b8962f;
}

.cookie-btn.secondary {
  background: #fff;
  color: #222;
}

.cookie-btn.secondary:hover {
  background: #e5e5e5;
}

.cookie-link-button {
  background: none;
  border: none;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 13px;
}

/* ----------------------------------------------------------
   COOKIE PANEL
---------------------------------------------------------- */
.cookie-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 25px;
  border-top: 3px solid #ff0066;
  display: none;
  z-index: 999999;
}

.cookie-panel-content {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-group {
  margin: 20px 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-toggle.disabled {
  opacity: 0.6;
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 700px) {
  #table-headers,
  #table-body > div {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 0.7fr 0.7fr;
    font-size: 13px;
  }

  #filters {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-inner {
    flex-direction: column;
  }
}

/* ----------------------------------------------------------
   MOBILE FIX — REMOVE WHITE BORDER ON MAPS PAGE
---------------------------------------------------------- */
@media (max-width: 600px) {

  #filters {
    padding: 0;
  }

  #map-container {
    margin: 0;
  }

  #tableSearch {
    margin: 10px auto;
  }

  #table-container {
    width: 100%;
    margin: 10px 0 30px 0;
    border-radius: 0;
  }
}

