/* ===== CSS RESET AND BASE ===== */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #141D27;
}
body {
  background: #141D27;
  font-family: 'Roboto', Arial, sans-serif;
  color: #f7f7f9;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

*:focus {
  outline: 2px solid #00b08e;
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #00b08e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 8px #00ffd0, 0 0 2px #00b08e;
}

ul, ol {
  margin-left: 1.25em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4, h5, h6 { margin-bottom: 8px; }

p { margin-bottom: 16px; }
strong { font-weight: bold; color: #00b08e; }

/* ===== CONTAINERS, SECTIONS, SPACING PATTERNS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(32,64,90,0.7);
  border-radius: 24px;
  box-shadow: 0 4px 40px 0 rgba(0,176,142,0.09), 0 0 0 2px rgba(0,176,142,0.11);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #1b2f43;
  box-shadow: 0 1.5px 12px 0 rgba(0,176,142,0.10);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 0 16px 4px #00ffd0, 0 1.5px 18px #00b08e44;
  transform: translateY(-4px) scale(1.012);
}

.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;
    align-items: stretch;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f7f7f9;
  box-shadow: 0 2px 12px 0 rgba(32,64,90,0.12);
  border-radius: 14px;
  color: #222731;
  min-width: 240px;
  max-width: 470px;
  position: relative;
  z-index: 1;
}
.testimonial-card strong {
  color: #20405a;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

/* ===== MAIN NAVIGATION AND HEADER ===== */
header {
  position: relative;
  z-index: 104;
  background: #192837;
  box-shadow: 0 1px 12px 0 #00b08e07;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  height: 76px;
  position: relative;
}
.main-nav img {
  height: 48px;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #eee;
  padding: 8px 14px;
  border-radius: 20px;
  transition: color 0.16s, background 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #00b08e37;
  box-shadow: 0 0 0 2px #00ffd0, 0 0 4px #00b08e99;
}
.main-nav .cta-btn {
  background: #00b08e;
  color: #222;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 30px;
  margin-left: 24px;
  box-shadow: 0 2px 20px 0 #00ffd027,0 0 0 2px #00b08e73;
  transition: background 0.21s, color 0.15s, box-shadow 0.17s, transform 0.17s;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #1da3b5;
  color: #fff;
  box-shadow: 0 1px 36px 2px #00ffd057,0 0 0 3px #00f7f9;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .main-nav {
    padding: 0 8px;
    gap: 8px;
  }
  .main-nav a { font-size: 0.96rem; padding: 7px 10px; }
  .main-nav .cta-btn { padding: 9px 18px; margin-left: 12px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #00ffd0;
  font-size: 2.7rem;
  position: absolute;
  top: 14px;
  right: 19px;
  z-index: 111;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #1da3b5;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(20,29,39,0.96);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.63,.2,.22,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #00b08e;
  cursor: pointer;
  margin-right: 30px;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.mobile-menu-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 12px 26px;
  border-radius: 24px;
  margin: 0 0 5px 0;
  width: 100%;
  max-width: 340px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00b08e44;
  color: #00ffd0;
  box-shadow: 0 0 18px 0 #00b08e80;
}

/* ===== HERO, CTA, AND CUSTOM SECTIONS ===== */

/* Hero & banner backgrounds */
section:first-of-type {
  background: linear-gradient(120deg, #20405a 0%, #00b08e 150%);
  box-shadow: 0 2px 40px #00ffd008;
}
/* Slightly different cta banners */
section .cta-btn {
  margin-top: 8px;
}


/* ===== FEATURE & SERVICES GRIDS ===== */
.feature-grid, .services-grid, .location-list, .class-schedule-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 14px;
}
.feature-grid > div,
.services-grid > div,
.location-list > div,
.class-schedule-grid > div {
  background: #203247;
  border-radius: 16px;
  box-shadow: 0 1px 13px #00b08e0a;
  padding: 28px 20px 24px 20px;
  flex: 1 1 240px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.feature-grid > div:hover, .services-grid > div:hover, .location-list > div:hover {
  box-shadow: 0 0 16px 2px #00ffd044, 0 1.5px 15px #00b08e11;
  transform: translateY(-2px) scale(1.013);
}

/* Responsive grids for small screens */
@media (max-width: 900px) {
  .feature-grid, .services-grid, .location-list {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .feature-grid > div,
  .services-grid > div,
  .location-list > div {
    flex: 1 1 90%;
    min-width: 180px;
  }
}
@media (max-width: 650px) {
  .feature-grid, .services-grid, .location-list, .class-schedule-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div,
  .services-grid > div,
  .location-list > div {
    width: 100%;
    min-width: unset;
    padding: 20px 14px;
  }
}

/* ===== TESTIMONIAL / CAROUSEL ===== */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: flex-start;
}
@media (max-width: 650px) {
  .testimonial-carousel {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== BUTTONS & CTA STYLES ===== */
.cta-btn {
  appearance: none;
  background: linear-gradient(90deg, #00ffd096 12%, #00b08e 100%);
  border: none;
  color: #213e4e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 42px;
  font-size: 1.18rem;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 28px 0 #00ffd022, 0 0 0 2px #00b08e74;
  letter-spacing: 0.5px;
  transition: box-shadow 0.12s, color 0.17s, background 0.2s, transform 0.13s;
  text-shadow: 0 2px 14px #fff8,0 0 2px #0ff9;
  margin-bottom: 0;
  margin-top: 4px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #00ffd0 0%, #00b08e 95%);
  color: #14324c;
  box-shadow: 0 0 30px 4px #00ffd059, 0 0 0 3px #00f7f7;
  transform: scale(1.045);
}

/* Reset button for links as btns */
a.cta-btn {
  display: inline-block;
  text-align: center;
  margin-right: 0;
  margin-left: 0;
}

/* ===== FORMS AND FIELDS (KURSPLAN FILTERS ETC.) ===== */
.schedule-filters, .search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.schedule-filters label {
  font-size: 1rem;
  color: #baf7ee;
}
.schedule-filters select {
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid #00b08e44;
  font-size: 1rem;
  background: #141D27;
  color: #fff;
  transition: border 0.14s;
}
.schedule-filters select:focus {
  border-color: #00ffd0;
}
.search-bar input {
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid #00b08e3f;
  font-size: 1rem;
  background: #262f35;
  color: #eee;
  width: 220px;
  box-shadow: 0 1px 5px #00ffd012;
}

@media (max-width: 650px) {
  .schedule-filters, .search-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .schedule-filters select, .search-bar input {
    width: 100%;
    min-width: unset;
  }
}

/* ===== LOCATION MAP AND HIGHLIGHTS ===== */
.map-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 8px 0;
  color: #00b08e;
}
.map-preview img {
  width: 32px;
  height: 32px;
}
.location-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 0;
  margin-top: 6px;
}

/* ===== FAQ, UPDATES, & ACCORDION ===== */
.faq-preview, .faq-accordion, .updates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-preview > ul, .faq-accordion > div, .updates-list > li {
  background: #222e3c;
  color: #e5f9f5;
  border-radius: 9px;
  padding: 12px 16px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.updates-list > li {
  display: flex; align-items: center; gap: 10px;
}
.updates-list img,
.faq-preview li img,
.contact-details img,
.opening-hours img {
  height: 22px; width: 22px;
}

/* ===== SIDEBAR CONTACT & FOOTER ===== */
footer {
  width: 100%;
  background: #171d24;
  color: #a5ffec;
  border-top: 1px solid #00b08e44;
  box-shadow: 0 -2px 11px #00b08e26;
  padding: 34px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 0 0 15px 0;
}
.footer-nav a {
  color: #00b08e;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 14px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover {
  background: #00b08e24;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.footer-contact img {
  width: 42px;
  margin-bottom: 8px;
}
.footer-contact p, .footer-contact a {
  color: #f7f7f9;
  font-size: 0.99rem;
  margin-bottom: 2px;
  text-align: center;
}
.footer-contact a { color: #00b08e; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  background: #192837F0;
  color: #fff;
  padding: 20px 10px 18px 10px;
  box-shadow: 0 -4px 36px #00b08e22;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  animation: cookieSlideIn 0.55s cubic-bezier(.59,-0.01,.54,1.14);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0 36px 0 0;
}
.cookie-btn,
.cookie-banner .cookie-btn {
  padding: 9px 24px;
  margin-right: 2px;
  margin-top: 7px;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  background: #00b08e;
  color: #152c36;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 18px #00ffd02dd,0 0 2px #00f7f9;
}
.cookie-btn.reject {
  background: #fff;
  color: #00b08e;
}
.cookie-btn.settings {
  background: #00ffd0cc;
  color: #20405a;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #1da3b5;
  color: #fff;
}

/* === Cookie modal ===== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3500;
  background: #212d36;
  color: #fff;
  border-radius: 16px;
  transform: translate(-50%,-50%) scale(1);
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 6px 32px #00ffd042;
  padding: 36px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPopup 0.35s cubic-bezier(.5,.25,.21,1.06);
}
@keyframes modalPopup {
  from { transform: translate(-50%,65%) scale(0.95); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1;   }
}
.cookie-modal h3 {
  color: #00ffd0;
  margin-bottom: 9px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #24384a8a;
  padding: 10px 16px;
  border-radius: 11px;
  color: #fff;
}
.cookie-modal .cookie-toggle {
  width: 34px; height: 20px;
  background: #0e1925;
  border-radius: 11px;
  position: relative;
  margin-left: auto;
  cursor: pointer;
  border: 1.5px solid #00b08e55;
  transition: background 0.13s, border 0.13s;
}
.cookie-modal .cookie-toggle[data-enabled="true"] {
  background: #00b08e;
  border: 1.5px solid #00ffd0aa;
}
.cookie-modal .cookie-toggle-knob {
  height: 16px; width: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle[data-enabled="true"] .cookie-toggle-knob {
  left: 16px;
}
.cookie-modal .cookie-actions {
  display: flex; gap: 18px; justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
}
@media (max-width: 600px) {
  .cookie-modal { min-width: 0; padding: 20px 6vw; }
}

/* Overlay for cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,29,39,.71);
  z-index: 3400;
}

/* ===== UTILITY & DYNAMIC CLASSES ===== */
.hide { display: none !important; }
.mt-1 { margin-top: 10px !important; } .mb-2 { margin-bottom: 20px !important; }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 450px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.25rem; }
  .section { padding: 18px 4px; }
  .container { padding-left: 6px; padding-right: 6px; }
}

@media (max-width: 440px) {
  .cta-btn, .cookie-btn, .main-nav .cta-btn {
    font-size: 1rem;
    padding: 9px 17px;
  }
  .testimonial-card { padding: 10px; min-width: unset; }
}

/* ===== NEON ACCENTS & MICRO-INTERACTIONS ===== */
.cta-btn, .main-nav .cta-btn, .testimonial-card, .card {
  box-shadow: 0 0 13px 0 #00ffd009;
}
.cta-btn:hover, .main-nav .cta-btn:hover, .card:hover {
  box-shadow: 0 2px 30px #00ffd044, 0 0px 18px #00b08e33;
}

::-webkit-scrollbar {
  width: 11px;
  background: #1b2f43;
}
::-webkit-scrollbar-thumb {
  background: #00b08e55;
  border-radius: 7px;
}

/* ===== MISC ===== */
[class*="-grid"] > div img,
.feature-grid > div img,
.services-grid > div img,
.location-list > div img,
.contact-details img {
  width: 32px;
  height: 32px;
  margin-bottom: 3px;
  filter: drop-shadow(0 0 5px #00ffd044);
}
.location-list > div h3,
.feature-grid > div h3,
.services-grid > div h3 {
  color: #00ffd0;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.section a:not(.cta-btn) {
  color: #00ffd0;
  font-weight: 500;
  text-underline-position: under;
  border-bottom: 1px dotted #00ffd0;
  padding-bottom: 2px;
  transition: border-color 0.15s, color 0.14s;
}
.section a:not(.cta-btn):hover {
  color: #fff;
  border-bottom: 1px solid #00b08e;
}

.section ul, .section ol {
  margin-bottom: 18px;
  padding-left: 1.5em;
  color: #aefee7;
}

.section ul li, .section ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

/* === Club contact lists/columns non-grid === */
.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.location-list > div {
  flex: 1 1 240px;
}

/* === Kursplan class schedule === */
.class-schedule-grid > div {
  color: #fff;
  background: #24384a;
  padding: 18px 20px;
  border-radius: 12px;
  margin-right: 0;
  font-weight: 500;
  font-size: 1.03rem;
  margin-bottom: 10px;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
  color: #fff;
}
.contact-details a {
  color: #00ffd0;
}
.contact-details a:hover {
  color: #fff;
}

.opening-hours {
  margin-top: 10px;
  color: #00ffd0;
  font-weight: 600;
}
.opening-hours strong {
  color: #00ffd0;
  margin-bottom: 4px;
  display: inline-block;
}

@media (max-width: 480px) {
  .footer-nav { flex-direction: column; gap: 14px; }
}

