/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F0F4F8;
  color: #243D59;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --clr-primary: #243D59;
  --clr-secondary: #E31E28;
  --clr-accent: #F0F4F8;
  --clr-link: #E31E28;
  --clr-bg: #F0F4F8;
  --clr-bg-dark: #243D59;
  --clr-bg-white: #ffffff;
  --clr-shadow: rgba(36,61,89,0.10);
  --clr-shadow-lg: rgba(36,61,89,0.20);
  --clr-shadow-card: rgba(36,61,89,0.13);
  --heading-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
  --container-max: 1120px;
  --transition: 0.22s cubic-bezier(.4,.8,.2,1);  
  --radius-card: 18px;
  --radius-btn: 28px;
  --shadow-card: 0 3px 16px var(--clr-shadow-card);
  --shadow-card-hover: 0 5px 22px var(--clr-shadow-lg);
  --btn-shine: 0 2px 10px 0 rgba(227,30,40,0.16);
}

body {
  font-family: var(--body-font);
  font-size: 1rem;
  background: var(--clr-bg);
  color: var(--clr-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 900;
  color: var(--clr-primary);
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin: 28px 0 18px 0; }
h3 { font-size: 1.4rem; margin: 18px 0 10px 0; }
h4 { font-size: 1.1rem; }
p, ul, ol { font-size: 1.08rem; margin-bottom: 16px; }

ul, ol {
  padding-left: 20px;
}

strong { font-weight: 700; }
subheadline, .subheadline {
  font-size: 1.12rem;
  font-family: var(--body-font);
  color: var(--clr-secondary);
  font-weight: bold;
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.01em;
}

a {
  color: var(--clr-link);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: #db102d;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-right: auto;
  margin-left: auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--heading-font);
  background: var(--clr-bg-white);
  padding: 18px 0 18px 0;
  border-radius: 0px 0px 24px 24px;
  box-shadow: 0 3px 11px var(--clr-shadow);
}
.main-nav a {
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 22px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--clr-secondary);
  color: #fff;
}

.cta-btn {
  background: var(--clr-secondary);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-size: 1.11rem;
  font-weight: 900;
  font-family: var(--heading-font);
  box-shadow: var(--btn-shine);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  margin-left: 8px;
  letter-spacing: .04em;
  outline: 0;
  position: relative;
  z-index: 1;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #b20d1a;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(227,30,40,0.22);
  transform: translateY(-2px) scale(1.045);
}

header {
  position: relative;
  z-index: 20;
  background: var(--clr-bg-white);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  box-shadow: var(--btn-shine);
  transition: background var(--transition);
  position: absolute;
  top: 22px;
  right: 15px;
  z-index: 80;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #b20d1a;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--clr-bg-white);
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.7,.34,.28,1.41);
  box-shadow: 4px 0 20px rgba(36,61,89,0.14);
  padding: 0 0 0 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0) !important;
  visibility: visible;
}
.mobile-menu-close {
  background: #fff;
  border: 2px solid var(--clr-secondary);
  color: var(--clr-secondary);
  font-size: 2.1rem;
  border-radius: 50%;
  align-self: flex-end;
  margin: 18px 20px 12px 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 3px 8px var(--clr-shadow-card);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--clr-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 10px 30px;
}
.mobile-nav a {
  font-size: 1.24rem;
  font-family: var(--heading-font);
  color: var(--clr-primary);
  font-weight: 800;
  padding: 11px 0;
  border-radius: 0;
  transition: color 0.19s;
  border-bottom: 2px solid transparent;
  outline: 0;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--clr-secondary);
  background: none;
  border-bottom: 2px solid var(--clr-secondary);
}

@media (max-width: 1024px) {
  .container { max-width: 840px; }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
    padding-left: 5px;
    padding-right: 5px;
    flex-wrap: wrap;
    font-size: 0.93rem;
  }
}

@media (max-width: 900px) {
  .main-nav a { padding: 7px 9px; }
}

@media (max-width: 768px) {
  .container { max-width: 97vw; padding: 0 8px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    position: fixed;
    right: 15px;
    top: 18px;
  }
  header {
    padding-bottom: 30px;
  }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #fff 40%, #FFF5F5 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 48px 0 32px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}
.hero h1 {
  color: var(--clr-secondary);
  font-size: 2.8rem;
  text-shadow: 0 4px 18px rgba(227,30,40,0.13);
  font-weight: 900;
}
.hero .subheadline {
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .hero {
    min-height: 220px;
    padding: 24px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* FLEX UTILITIES & LAYOUT SECTIONS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 14px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #243D59;
  padding: 20px;
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  flex-direction: column;
  min-width: 260px;
  max-width: 390px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-family: var(--body-font);
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: #243D59;
  line-height: 1.35;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #E31E28;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID & FEATURE SECTIONS */
.features .content-wrapper {
  gap: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
}
.feature-grid > div {
  flex: 1 1 188px;
  min-width: 180px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 34px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 10px;
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px) scale(1.035);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.feature-grid h3 {
  color: var(--clr-secondary);
  font-size: 1.15rem;
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .feature-grid {
    justify-content: flex-start;
    gap: 18px;
  }
  .feature-grid > div { min-width: 170px; }
}
@media (max-width: 700px) {
  .feature-grid { flex-direction: column; gap: 10px; }
  .feature-grid > div { max-width: 100%; width: 100%; }
}

/* ABOUT & TEAM OVERVIEW */
.about-preview .text-section,
.about .text-section,
.description-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 12px;
}
.team-overview > div {
  flex: 1 1 220px;
  background: #fff;
  padding: 24px 16px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-width: 180px;
  max-width: 340px;
}
.values-list h3 { color: var(--clr-secondary); font-size: 1.07rem; margin-bottom: 6px; }
.values-list ul { padding-left: 22px; }

@media (max-width: 880px) {
  .team-overview { flex-direction: column; gap: 14px; }
  .team-overview > div {max-width: 100%;}
}

/* COURSE SCHEDULES AND TABLES */
.course-schedule-table table,
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 1rem;
}
.course-schedule-table th, .pricing-table th {
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.07rem;
  padding: 13px 8px;
}
.course-schedule-table td, .pricing-table td {
  padding: 13px 8px;
  border-bottom: 1px solid #f3f3f4;
  text-align: left;
}
.course-schedule-table tr:last-child td,
.pricing-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .course-schedule-table table,
  .pricing-table table {
    font-size: 0.96rem;
  }
}

/* CAROUSEL FOR TESTIMONIALS */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
@media (max-width: 800px) {
  .testimonial-carousel { flex-direction: column; gap: 12px; }
}

/* OTHER UTILITY CARDS */
.short-trainer-bios ul, .values-list ul, .feature-list, .usp-bullets, .benefits-list ul,
.club-highlights-list ul, .tariff-details ul, .membership-benefits ul {
  margin: 0 0 6px 0;
  padding-left: 18px;
  list-style: disc;
  font-size: 1.06rem;
  color: var(--clr-primary);
}

.about .trainer-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.about .trainer-profiles > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 14px;
  min-width: 175px;
  max-width: 320px;
}
@media (max-width: 900px) {
  .about .trainer-profiles { flex-direction: column; gap: 13px; }
  .about .trainer-profiles > div { max-width: 100%; }
}

/* ADDRESS, CONTACT & ICONS */
.address-block, .phone-email-block, .opening-hours, .address-snippet {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.12rem;
}
.address-block img, .phone-email-block img, .opening-hours img, .address-snippet img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/* FOOTER */
footer {
  background: var(--clr-bg-dark);
  color: #fff;
  width: 100vw;
  margin-top: 64px;
  padding: 0 0 0 0;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0 14px 0;
}
.footer-main img {
  width: 96px;
  height: auto;
  margin-bottom: 0;
}
.footer-menu,
.footer-legals {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 0;
}
.footer-menu a,
.footer-legals a {
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
}
.footer-menu a:hover,
.footer-legals a:hover {
  color: var(--clr-secondary);
}
.address-snippet {
  color: #fff;
  font-size: 1.09rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 34px 0 12px 0;
  }
}

/* LEGAL & POLICY PAGES */
.legal, .confirmation {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin: 60px auto 44px auto;
  padding: 40px 24px;
  max-width: 820px;
}
.privacy-policy-content, .gdpr-content, .terms-of-use-content, .cookie-policy-content {
  margin-top: 16px;
  font-size: 1.08rem;
}
.privacy-policy-content h2,
.gdpr-content h2,
.terms-of-use-content h2,
.cookie-policy-content h2 {
  color: var(--clr-secondary);
  margin: 32px 0 10px 0;
  font-size: 1.2rem;
}

.confirmation .thank-you-message, .confirmation .next-steps-hint {
  margin-bottom: 22px;
}

/* BUTTON STYLES (also for cookie consent) */
.button,
.cookie-btn,
.cookie-btn[role=button] {
  background: var(--clr-secondary);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 900;
  border-radius: var(--radius-btn);
  border: none;
  padding: 9px 30px;
  font-size: 1.09rem;
  cursor: pointer;
  margin-right: 14px;
  margin-bottom: 6px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--btn-shine);
  outline: none;
  display: inline-block;
  text-align: center;
}
.button:hover, .button:focus,
.cookie-btn:hover, .cookie-btn:focus {
  background: #b20d1a;
  color: #fff;
  transform: translateY(-2px) scale(1.032);
  box-shadow: 0 5px 18px 0 rgba(227,30,40,0.17);
}
.cookie-btn-secondary {
  background: var(--clr-primary);
  color: #fff;
}
.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus {
  background: #142336;
}
.cookie-btn-light {
  background: #fff;
  color: var(--clr-secondary);
  border: 2px solid var(--clr-secondary);
}
.cookie-btn-light:hover {
  background: var(--clr-secondary);
  color: #fff;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--clr-primary);
  box-shadow: 0 -2px 22px var(--clr-shadow-lg);
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3333;
  animation: cookieFadeIn 0.72s cubic-bezier(.7,.34,.28,1.41);
  gap: 12px;
}
@keyframes cookieFadeIn { from { transform: translateY(120%); opacity: 0;} to { opacity: 1; transform: none;} }
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.cookie-consent-banner p {
  font-size: 1.06rem;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  background: rgba(36,61,89,0.47);
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s, visibility 0.24s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: var(--clr-primary);
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 7px 40px 0 var(--clr-shadow-lg);
  padding: 28px 21px 22px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookieSettingsScaleIn 0.21s cubic-bezier(.7,.34,.28,1.41);
}
@keyframes cookieSettingsScaleIn { from { transform: scale(.88); opacity: 0;} to { opacity: 1; transform: none;} }
.cookie-modal-content h3 {
  color: var(--clr-secondary);
  font-size: 1.21rem;
  margin-bottom: 13px;
}
.cookie-modal-content .categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 18px;
}
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.cookie-modal-content .category label {
  flex: 1;
  font-weight: 600;
  color: var(--clr-primary);
}
.cookie-modal-content .category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--clr-secondary);
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 21px;
  background: none;
  border: none;
  color: var(--clr-secondary);
  font-size: 1.72rem;
  cursor: pointer;
  z-index: 3000;
}
.cookie-modal-content .cookie-btn,
.cookie-modal-content .cookie-btn-secondary {
  margin-right: 10px; margin-top: 10px;
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 18px 8px 14px 8px;
    font-size: 0.98rem;
  }
}

/* GENERAL SPACING */
main > section, .section {
  margin-bottom: 60px; /* mandatory spacing */
  padding: 40px 20px;
}

.card, .testimonial-card, .feature-grid > div, .about .trainer-profiles > div, .team-overview > div {
  margin-bottom: 20px;
}

.content-wrapper, .card-container, .content-grid, .testimonial-carousel, .feature-grid, .team-overview, .about .trainer-profiles {
  gap: 20px;
}

/* REMOVE EXCESSIVE BOTTOM MARGINS IN GRID LAST ITEMS */
.card-container > :last-child,
.content-grid > :last-child,
.testimonial-carousel > :last-child,
.feature-grid > :last-child {
  margin-bottom: 0;
}

/* FORM FIELDS - SUGGESTED APPEARANCE */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px 13px;
  border-radius: var(--radius-card);
  border: 2px solid #e0e0e7;
  margin-bottom: 16px;
  font-size: 1.04rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}
input:focus, textarea:focus {
  border-color: var(--clr-secondary);
}

/* TABLES IN LEGAL */
.privacy-policy-content table, .gdpr-content table, .terms-of-use-content table {
  width: 100%;
  margin: 17px 0;
  border-collapse: collapse;
}
.privacy-policy-content th, .privacy-policy-content td,
.gdpr-content th, .gdpr-content td,
.terms-of-use-content th, .terms-of-use-content td {
  padding: 7px 11px;
  border: 1px solid #e6e6eb;
}

/* MICRO-INTERACTIONS */
.card, .testimonial-card, .feature-grid > div, .about .trainer-profiles > div {
  transition: box-shadow 0.2s, transform 0.23s;
}
.card:hover, .feature-grid > div:hover, .about .trainer-profiles > div:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px) scale(1.03);
}

/* VISUAL HIERARCHY (NOT COLOR OVERLOAD) */
h1, .cta-btn, .subheadline, .feature-grid h3, .footer-menu a, .footer-legals a {
  color: var(--clr-secondary) !important;
}

/* DYNAMIC/ELECTRIC ACCENT BORDERS */
.feature-grid > div, .about .trainer-profiles > div, .card {
  border-bottom: 7px solid var(--clr-secondary);
  border-left: 3px solid var(--clr-primary);
  border-right: 1.5px solid #dbecff;
  border-top: none;
}

/* ANIMATION HINTS */
.cta-btn, .button, .cookie-btn {
  transition: background 0.2s, box-shadow 0.22s, transform 0.15s;
}

/* SECTIONS & ALTERNATING BG */
.about, .about-preview, .courses-preview, .services, .club-highlights-list, .membership-cta, .cta {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 27px var(--clr-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.membership-cta, .cta {
  text-align: center;
  background: var(--clr-secondary);
  color: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 5px 25px var(--clr-shadow-lg);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-cta h2, .membership-cta p,
.cta h2, .cta p { color: #fff!important; }
.membership-cta .cta-btn, .cta .cta-btn { background: #fff; color: var(--clr-secondary)!important; font-weight: 900; }
.membership-cta .cta-btn:hover, .cta .cta-btn:hover { background: #243D59; color: #fff!important; }

/* RESPONSIVE FONT SIZES */
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  main > section, .section { padding: 24px 6px; }
  .about, .about-preview, .courses-preview, .services, .membership-cta, .cta {
    padding: 21px 7px;
  }
}

/* SCROLLBARS (for better vibrancy on dark backgrounds) */
::-webkit-scrollbar {
  height: 7px; width: 6px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: var(--clr-secondary);
  border-radius: 18px;
}

/* GENERAL CLASSES: MISC */
.hidden { display: none !important; }

/* ACCESSIBILITY OUTLINE */
a:focus, .cta-btn:focus, .button:focus, .cookie-btn:focus {
  outline: 3px solid var(--clr-secondary)!important;
  outline-offset: 2px;
}

/* END */
