:root {
  --ink: #172126;
  --muted: #5a6970;
  --paper: #DCDCDC;
  --surface: #ffffff;
  --line: #d9dedb;
  --red: #930F00;
  --gold: #c69436;
  --green: #24564d;
  --charcoal: #253036;
  --shadow: 0 20px 50px rgba(23, 33, 38, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;

}

img {
  display: block;
  width: 100%;
}

a:link {
  color: var(--red);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: var(--ink);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: var(--red);
  background-color: transparent;
  text-decoration: underline;
}



ul.bullet_list {
    color:#5a6970;
    line-height: 1.6;
    list-style-position: outside;
    list-style-type: square; 
}




.p-dark-bg a:link {
  color: var(--gold);
  text-decoration: none;
}

.p-dark-bg a:visited {
  color: var(--gold);
  text-decoration: none;
}

.p-dark-bg a:hover {
  color: var(--surface);
  text-decoration: underline;
}

.p-dark-bg a:active {
  color: var(--surface);
  text-decoration: underline;
}






.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: var(--red);
  border-bottom: 5px solid  var(--surface);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  flex: 0 0 auto;
  color: var(--paper);
}

.logo-img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  line-height: 1;
  color: var(--surface);
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--surface);
  margin-top: 4px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  background: var(--red);
  display: block;
  content: "";
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 22px;
}

.main-nav > a,
.dropdown > button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--surface);
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown:hover > button,
.dropdown > button:focus-visible {
  background: var(--gold);
  color: var(--red);
}

.dropdown {
  position: relative;
}

.dropdown > button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 218px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--charcoal);
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: rgba(36, 86, 77, 0.1);
}

main {
  padding-top: 72px;
}

.hero-carousel {
  position: relative;
  min-height: clamp(610px, 92vh, 820px);
  color: white;
  background: var(--charcoal);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 24, 0.88), rgba(15, 20, 24, 0.52) 48%, rgba(15, 20, 24, 0.18));
}

.slide-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  transform: translateY(-48%);
  width: min(610px, calc(100% - 48px));
}






.hero-carousel-static {
  position: relative;
  min-height: clamp(650px, 60vh, 850px);
  color: white;
  background: var(--charcoal);
  overflow: hidden;
}












.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: rgba(198, 148, 54, 0.95);
  color: #151515;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow a:link {
  color: #151515;
  text-decoration: none;
}

.eyebrow a:visited {
  color: var(--red);
  text-decoration: none;
}

.eyebrow a:hover {
  color: var(--surface);
  text-decoration: none;
}

.eyebrow a:active {
  color: var(--red);
  text-decoration: none;
}




h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  margin-top: 20px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.94;
  text-transform: uppercase;
  max-width: 10ch;
}

.slide-content p {
  margin: 22px 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--red);
  color: white;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
}

.btn.light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.carousel-controls {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: white;
  background: rgba(20, 27, 31, 0.54);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.3rem;
}

.dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
}

.dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--red);
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section.alt {
  background: var(--surface);
}

.wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}





.section-heading h2,
.page-hero-taekwondo h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p,
.page-hero-taekwondo p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}




.intro-grid,
.contact-grid,
.class-grid,
.timetable-grid {
  display: grid;
  gap: 24px;
}

.intro-grid {
  grid-template-columns: 1fr 1fr;
}

.feature,
.class-card,
.schedule-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  padding: 24px;
}

.feature strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature p,
.class-card p,
.schedule-item p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  margin-block: 20px;
}

.activity-carousel {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: white;
}

.activity-track {
  display: flex;
  transition: transform 500ms ease;
}

.activity-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: 520px;
}

.activity-slide img {
  height: 100%;
  object-fit: cover;
}

.activity-copy {
  padding: clamp(36px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: top;

}

.activity-copy h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.activity-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 1.05rem;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.activity-meta span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 800;
}

.activity-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 10px;
}

.activity-controls button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.25rem;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.contact-panel {
  background: var(--red);
  color: white;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

.contact-list span {
  display: block;
  color: rgba(225, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-frame {
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dce4df;
}

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




.page-hero-taekwondo {
  padding: clamp(86px, 12vw, 150px) 0 clamp(44px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 1), rgba(170, 170, 170, 0.3)),
    url("../images/Taekwondo_03.jpg") center / cover;
  color: white;
}

.page-hero-taekwondo p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 20px;
}






.class-grid {
  grid-template-columns: repeat(3, 1fr);
}

.class-card img {
  height: 230px;
  object-fit: cover;
}

.class-card div {
  padding: 22px;
}

.class-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.timetable-grid {
  grid-template-columns: repeat(2, 1fr);
}

.schedule-item {
  padding: 22px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

.schedule-item time {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: var(--radius);
  background: rgba(185, 35, 47, 0.1);
  color: var(--red);
  font-weight: 900;
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  color: var(--surface);
  background: var(--red);
}



.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.affiliate-section {
  padding: clamp(42px, 6vw, 72px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.affiliate-section .wrap {
  display: flex;
  flex-direction: column;
}

.affiliate-heading {
  display: contents;
}

.affiliate-heading h2 {
  order: 1;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.affiliate-controls {
  order: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.affiliate-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 33, 38, 0.14);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
}

.affiliate-controls button:hover {
  border-color: var(--red);
  color: var(--red);
}

.affiliate-carousel {
  order: 2;
  overflow: hidden;
}

.affiliate-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.affiliate-track::-webkit-scrollbar {
  display: none;
}

.affiliate-logo {
  flex: 0 0 clamp(130px, 17vw, 180px);
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 8px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.affiliate-logo:hover,
.affiliate-logo:focus-visible {
  box-shadow: none;
  transform: translateY(-2px);
}

.affiliate-logo img {
  width: 100%;
  aspect-ratio: 360 / 170;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
}

.affiliate-logo:hover img,
.affiliate-logo:focus-visible img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}










.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 8px;
}

.active, .collapsible:hover {
  background-color: var(--red);
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  border-radius: 8px;
}

.social_logo {
  width: 20px;
  height:20px;
  display: inline;
}




.trial-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trial-form label,
.form-notes {
  display: grid;
  gap: 8px;
  color: var(--surface);
  font-weight: 800;
}

.trial-form span,
.trial-form legend {
  font-size: 0.86rem;
  text-transform: uppercase;
  color: var(--surface);
  font-weight: 900;
}

.trial-form input[type="text"],
.trial-form input[type="email"],
.trial-form input[type="tel"],
.trial-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.trial-form textarea {
  resize: vertical;
}

.trial-form input:focus,
.trial-form textarea:focus {
  outline: 3px solid rgba(185, 35, 47, 0.18);
  border-color: var(--red);
}

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

.trial-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trial-form legend {
  padding: 0 8px;
}

.trial-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
  font-weight: 800;
}

.trial-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex: 0 0 auto;
}

.trial-form .btn {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}


























@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
    background: var(--red);
    border-bottom: 4px solid var(--surface);
  }

  .main-nav > a,
  .dropdown > button {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    display: none;
    margin: 4px 0 8px;
  }

  .dropdown.open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .intro-grid,
  .class-grid,
  .timetable-grid,
  .contact-grid,
  .activity-slide {
    grid-template-columns: 1fr;
  }

  .activity-slide img {
    height: 330px;
  }

  .activity-slide {
    height: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: repeat(1, 1fr);

}

  .footer-shell{
  font-size: 0.78rem;
  }

}





@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 40px, 1180px);
  }

  .brand {
    gap: 9px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .logo-img {
    width: 80px;
    height: 60px;
  }

  .hero-carousel {
    min-height: 600px;
  }

  .hero-carousel-static {
  min-height: 600px;
}


  .slide::after {
    background: linear-gradient(180deg, rgba(15, 20, 24, 0.64), rgba(15, 20, 24, 0.88));
  }

  .slide-content {
    top: 48%;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.5rem);
  }


  h2 {
    font-size: clamp(1.5rem, 3vw, 1.5rem);
  }


  .footer-shell{
  font-size: 0.78rem;
  }


  .carousel-controls {
    bottom: 18px;
  }

  .carousel-controls button {
  width: 32px;
  height: 32px;
  }

  .dots button {
  width: 7px;
  height: 7px;
  }

  .dots button.active {
  width: 18px;
  }


  .hero-actions .btn {
    width: 45%;
    padding: 0 12px;
  }

  .activity-copy {
    padding: 34px 22px 80px;
  }

  .trial-form fieldset {
  grid-template-columns: repeat(1, 1fr);

}

 .form-grid {
 grid-template-columns: repeat(1, 1fr);

}

}