/* ----------------------------------------------------------
   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;
}

@media (max-width: 600px) {
  .sbk-nav ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   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;
  }
}

/* ----------------------------------------------------------
   MAIN CONTENT
---------------------------------------------------------- */
/* Main body wrapper */
.sbk-main-body-with-image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
}

/* Main content */
.sbk-main-body-content {
  grid-column: 3; /* centre column */
  display: flex;
  justify-content: center;
  padding: 20px;
}


/* Inner content with black border, rounded corners + shadow */
.sbk-main-body-inner {
  width: 100%;
  max-width: 900px;
  border: none;
  border-radius: 0px;
  padding: 20px;
  background: white;
  color: black;
  box-sizing: border-box;
  box-shadow: none;
}

/* Mobile */
@media (max-width: 768px) {
  .sbk-main-body-with-image {
    display: block;
  }


  .sbk-main-body-content {
    padding: 0;
  }

  .sbk-main-body-inner {
    margin: 0;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: none;
  }
}


/* SPEECH BUBBLE SECTION */
.sbk-speech-section {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Each row: name left, bubble right */
.sbk-speech-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 20px;
}

/* Name column */
.sbk-speech-name {
  font-weight: bold;
  color: #D4AF37; /* SBK gold */
  text-align: right;
  padding-top: 10px;
}

.sbk-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sbk-section p {
  font-size: 16px;
  line-height: 1.6;
}

/* Buttons */
.sbk-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.sbk-btn {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #000;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: centre;
}

.sbk-btn:hover {
  background-color: #B8962F;
  border-color: #B8962F;
}

.sbk-links-block {
  text-align: center;
  margin-top: 40px;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.sbk-footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px 20px;
  margin-top: 60px;
}

.sbk-footer a {
  color: #fff;
  text-decoration: none;
}

.sbk-footer a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 600px) {
  .sbk-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .sbk-buttons {
    flex-direction: column;
  }
}


/* ----------------------------------------------------------
   HERO SECTION (ADDED WITHOUT CHANGING EXISTING STYLES)
---------------------------------------------------------- */

.sbk-hero {
  text-align: center;
  padding: 30px 20px 40px;
}

.sbk-hero-supporting {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  max-width: 750px;
  margin: 0 auto 25px;
}

/* Hero buttons */
.sbk-hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

/* Uses your existing .sbk-btn base style */
.sbk-btn-primary {
  background-color: #D4AF37;
  border: 2px solid #D4AF37;
  color: #000;
}

.sbk-btn-primary:hover {
  background-color: #B8962F;
  border-color: #B8962F;
}


/* Hero image */
.sbk-hero-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #D4AF37;
  box-shadow: 0 0 18px rgba(0,0,0,0.15);
}

.sbk-hero-image {
  width: 60%;
  height: auto;
  display: block;
  margin: 20px auto;
}


/* ----------------------------------------------------------
   TESTIMONIALS TITLE SECTION (ADDED)
---------------------------------------------------------- */

.sbk-testimonials {
  padding: 40px 20px 10px;
  text-align: center;
}

.sbk-testimonials-header {
  margin-bottom: 25px;
}

.sbk-testimonials-divider {
  width: 80px;
  height: 2px;
  background: #D4AF37;
  margin: 0 auto 10px;
}

.sbk-testimonials-title {
  font-size: 24px;
  font-weight: bold;
  color: #D4AF37;
  margin: 0;
}


/* ----------------------------------------------------------
   SPEECH BUBBLE LAYOUT ENHANCEMENT ONLY
   (Does NOT change your bubble styling)
---------------------------------------------------------- */

.sbk-bubble-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 20px;
}

.sbk-bubble-item {
  flex: 1 1 260px;
  max-width: 320px;
}

.sbk-speech-bubble {
  position: relative;
  background-color: #fff;
  border: 3px solid #D4AF37;   /* gold border */
  border-radius: 999px;        /* strong oval shape */
  padding: 16px 28px;          /* more horizontal padding = more oval */
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sbk-speech-bubble::after {
  content: "";
  position: absolute;
  left: -18px;          /* tail sits just outside the left edge */
  top: 50%;             /* vertically centred on the oval */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 10px 18px 10px 0;
  border-style: solid;
  border-color: transparent #D4AF37 transparent transparent;
}

/* ----------------------------------------------------------
   RESPONSIVE (HERO + TESTIMONIALS ONLY)
---------------------------------------------------------- */

@media (max-width: 700px) {
  .sbk-hero-supporting {
    font-size: 18px;
  }

  .sbk-btn {
    width: 100%;
    text-align: center;
  }

  .sbk-hero-buttons {
    flex-direction: column;
  }

  .sbk-hero-image-wrapper {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .sbk-testimonials-title {
    font-size: 20px;
  }
}