/*=============== 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%;
  font: inherit;
  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: #21251d;
  color: #ECE6DA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
*:focus {
  outline: 2px solid #4286B6;
  outline-offset: 2px;
}

/*=============== ROOT STYLES ===============*/
:root {
  --color-primary: #374531;
  --color-on-primary: #ECE6DA;
  --color-secondary: #D1BB99;
  --color-bg: #21251d;
  --color-accent: #24628A;
  --color-accent2: #4286B6;
  --color-contrast: #fff;
  --color-grey: #444843;
  --color-card: #232822;
  --color-border: #40463b;
  --color-testimonial-bg: #FAF7F0;

  --ff-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --ff-body: 'Roboto', Arial, sans-serif;
}

/* =============== TYPOGRAPHY =============== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--color-secondary);
  text-shadow: 0 1px 0 #222, 0 2px 8px rgba(0,0,0,0.06);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, ul, ol, .legal-text {
  font-family: var(--ff-body);
  color: #ECE6DA;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.1px;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
  color: var(--color-secondary);
}
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 22px;
  color: var(--color-accent2);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* =============== CONTAINER & LAYOUT =============== */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px; 
  padding: 40px 20px;
}

/* =============== HEADER & NAV =============== */
header {
  background: var(--color-card);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 54px;
  max-width: 135px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: var(--color-secondary);
  font-family: var(--ff-display);
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 0px;
  font-size: 1rem;
  position: relative;
  transition: color 0.18s;
}
nav a:hover, nav a:focus {
  color: var(--color-accent2);
}
.cta-btn {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent2) 90%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid var(--color-border);
  font-family: var(--ff-display);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-left: 12px;
  box-shadow: 0 4px 16px rgba(36, 98, 138, 0.06), 0 2px 6px #181C18;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.22s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent2);
  color: var(--color-secondary);
  box-shadow: 0 7px 24px rgba(65, 100, 150, 0.18);
  border-color: var(--color-accent2);
}

/* =============== MOBILE NAVIGATION =============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--color-accent2);
  margin-left: 12px;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 37, 29, 0.97);
  box-shadow: 0 0 32px 8px rgba(44, 44, 44, 0.10);
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 24px 24px 0;
  background: none;
  color: var(--color-accent2);
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  transition: background 0.17s, color 0.16s;
  will-change: background, color;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent2);
  background: rgba(220, 220, 220, 0.10);
}

@media (max-width: 991px) {
  header .container nav, header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(100deg, #1A1E17 82%, var(--color-primary) 100%);
  padding: 70px 0 64px 0;
  border-bottom: 2px solid var(--color-border);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: var(--color-secondary);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero .subheadline {
  color: var(--color-accent2);
  margin-bottom: 28px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* =============== FEATURES SECTION =============== */
.features {
  background: var(--color-card);
  border-bottom: 2px solid var(--color-border);
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.feature-item {
  background: rgba(34,38,29,0.93);
  border-radius: 13px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 6px 20px rgba(30,38,37,0.08), 0 2px 8px #181C18;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 250px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, border-color 0.15s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  filter: grayscale(16%) brightness(1.21) contrast(1.4) drop-shadow(0 2px 8px #181C18);
}
.feature-item h3 {
  font-size: 1.22rem;
  margin-bottom: 7px;
  color: var(--color-secondary);
}
.feature-item p {
  color: var(--color-on-primary);
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus {
  border-color: var(--color-accent2);
  box-shadow: 0 8px 32px rgba(36,98,138,0.10), 0 2px 8px #181C18;
  z-index: 5;
}

/* =============== TESTIMONIALS =============== */
.testimonials {
  background: #E6E0D1;
  color: #21251d;
  border-bottom: 2px solid var(--color-border);
}
.testimonials h2 {
  color: var(--color-primary);
  text-shadow: none;
  margin-bottom: 34px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-testimonial-bg);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(52,55,48,0.10);
  border: 1px solid #dad5ce;
  color: #2c2d25;
  margin-bottom: 20px;
  font-size: 1.08rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 7px 28px rgba(40,60,60,0.15);
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.testimonials p {
  color: #272921;
  margin-bottom: 6px;
}

/* =============== CTA SECTION =============== */
.cta {
  background: linear-gradient(90deg, var(--color-primary) 77%, #1a2d1c 100%);
  border-bottom: 2px solid var(--color-border);
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}
.cta h2, .cta h1 {
  color: var(--color-secondary);
}

.cta .cta-btn {
  margin-top: 10px;
  font-size: 1.07rem;
}

/* =============== FOOTER =============== */
footer {
  background: var(--color-card);
  color: #B7A98A;
  border-top: 2px solid var(--color-border);
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: 1rem;
  font-family: var(--ff-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent2);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-info img {
  height: 44px;
  margin-bottom: 8px;
}
.footer-info p {
  font-size: 0.98rem;
  color: #B7A98A;
  line-height: 1.5;
}
footer a {
  color: var(--color-accent2);
  text-decoration: underline;
}
footer a:hover, footer a:focus {
  color: var(--color-secondary);
  text-decoration: none;
}

/* =============== CARDS & FLEXBOX PATTERNS =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(40,50,45,0.09);
  border: 1.5px solid var(--color-border);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 40px 0 rgba(36,98,138,0.14);
  border-color: var(--color-accent2);
  z-index: 3;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============== ABOUT PAGE EXTRAS =============== */
.about-section h1 {
  color: var(--color-secondary);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.value-list li {
  background: var(--color-card);
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  padding: 16px 22px 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-secondary);
  font-size: 1rem;
  min-width: 220px;
  margin-bottom: 20px;
}
.value-list img {
  width: 38px;
  filter: grayscale(10%) brightness(1.20) contrast(1.5);
}

/* =============== CLUBS PAGE =============== */
.clubs .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.club-overview {
  background: var(--color-card);
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  padding: 28px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.club-types {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.club-types li {
  flex: 1 1 230px;
  background: rgba(50,53,44,0.18);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--color-secondary);
  font-size: 1rem;
}
.membership-benefits {
  margin-top: 12px;
  background: rgba(67,77,55,0.13);
  border-radius: 7px;
  border: 1.3px solid var(--color-border);
  padding: 16px 14px 10px 14px;
}
.membership-benefits h3 {
  color: var(--color-accent2);
}

/* =============== SPORTANLAGEN & FACILITIES =============== */
.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.facility-item {
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 18px;
  min-width: 210px;
  flex: 1 1 230px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.location-highlights, .amenities-overview {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 20px 17px;
  background: rgba(120,130,110,0.10);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.location-highlights h3, .amenities-overview h3 {
  margin-bottom: 9px;
  color: var(--color-accent2);
}
.unique-facility-points {
  margin: 24px 0 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.unique-facility-points li {
  flex: 1 1 250px;
  background: rgba(59,69,60,0.13);
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 1rem;
}

/* =============== KURSPLAN =============== */
.kursplan {
  background: var(--color-card);
  border-bottom: 2px solid var(--color-border);
}
.schedule-overview {
  background: rgba(48,54,42,0.15);
  border-radius: 11px;
  padding: 23px 18px 18px 18px;
  margin-bottom: 28px;
  box-shadow: 0 3px 8px rgba(28,48,48,0.08);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.schedule-overview ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.filter-options {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-options h3 {
  font-size: 1.11rem;
  color: var(--color-accent2);
}
.filter-options ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  display: flex;
}
.filter-options li {
  background: rgba(255,255,255,0.08);
  color: var(--color-secondary);
  border-radius: 20px;
  padding: 4px 18px;
  font-size: 0.97rem;
  border: 1.3px solid var(--color-border);
  cursor: pointer;
  transition: background 0.13s, color 0.15s;
}
.filter-options li:hover, .filter-options li:active {
  background: var(--color-accent2);
  color: #fff;
}
.real-time-updates {
  color: var(--color-accent2);
  font-size: 0.99rem;
  margin-top: 12px;
}

.updates {
  background: #22251B;
  border-bottom: 2px solid var(--color-border);
}
.alert-banner {
  background: #E78C28;
  color: #fff;
  padding: 12px 16px;
  border-radius: 7px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(80,60,0,0.08);
}
.latest-changes {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--color-secondary);
  margin-left: 15px;
  font-size: 1rem;
}

/* =============== PROBETRAINING & THANK YOU =============== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  margin-left: 19px;
  color: var(--color-accent2);
}
.faq-snippet {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--color-border);
  border-radius: 7px;
  padding: 20px 17px 10px 17px;
  margin-top: 18px;
}
.faq-snippet h3 {
  color: var(--color-accent2);
}
.faq-snippet ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
  color: var(--color-secondary);
}
.thank-you-message {
  color: var(--color-accent2);
}
.next-steps {
  margin-top: 18px;
  background: rgba(38,52,45,0.13);
  border-radius: 8px;
  border: 1.3px solid var(--color-border);
  padding: 14px 12px 8px 12px;
}
.next-steps h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
}
.next-steps ul {
  margin-left: 15px;
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--color-secondary);
  font-size: 1rem;
}

/* =============== CONTACT PAGE =============== */
.contact-details, .opening-hours, .map-location {
  background: var(--color-card);
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  padding: 17px 17px 9px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-details img, .opening-hours img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: -3px;
}
.opening-hours h3, .map-location h3 {
  color: var(--color-accent2);
  font-size: 1.05rem;
}
.contact-details p, .opening-hours p, .map-location p {
  color: var(--color-secondary);
  font-size: 1rem;
}
.contact-details a {
  color: var(--color-accent2);
  text-decoration: underline;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--color-secondary);
  text-decoration: none;
}

/* =============== LEGAL PAGES =============== */
.legal {
  background: var(--color-card);
  border-bottom: 2px solid var(--color-border);
}
.legal-text {
  background: rgba(100,120,110,0.09);
  border-radius: 9px;
  border: 1.3px solid var(--color-border);
  padding: 26px 22px;
  margin-top: 12px;
}
.legal-text h2 {
  color: var(--color-accent2);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-text ul {
  margin-left: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-secondary);
  font-size: 1rem;
}
.legal-text a {
  color: var(--color-accent2);
  text-decoration: underline;
}
.legal-text a:hover, .legal-text a:focus {
  color: var(--color-secondary);
  text-decoration: none;
}

/* =============== COOKIE CONSENT BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(40,44,36,0.97);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 26px 12px 16px 24px;
  z-index: 9999;
  box-shadow: 0 -3px 16px 0 rgba(30,30,30,0.07);
  gap: 22px;
  flex-wrap: wrap;
  border-top: 2px solid var(--color-border);
  transition: transform 0.36s cubic-bezier(.85,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(120%) !important;
}
.cookie-banner__text {
  flex: 1 1 200px;
  color: #fff;
  margin-bottom: 10px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.cookie-btn {
  background: var(--color-accent2);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 22px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.14s, color 0.18s;
  box-shadow: 0 2px 10px rgba(40,70,120,0.10);
}
.cookie-btn.accept {
  background: var(--color-accent2);
}
.cookie-btn.reject {
  background: #374531;
  color: var(--color-secondary);
}
.cookie-btn.settings {
  background: var(--color-border);
  color: var(--color-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: #374531;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,34,30,0.97);
  z-index: 15000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__content {
  background: #232822;
  border: 1.7px solid var(--color-border);
  border-radius: 13px;
  padding: 32px 30px 24px 30px;
  width: 98%;
  max-width: 430px;
  box-shadow: 0 8px 40px 0 rgba(44,52,63,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-secondary);
  gap: 17px;
  position: relative;
  animation: cookieModalIn 0.36s cubic-bezier(.65,.1,.39,1);
}
@keyframes cookieModalIn {
  0% { transform: translateY(40px) scale(.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__content h2 {
  margin-bottom: 13px;
  color: var(--color-accent2);
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding-top: 8px;
}
.cookie-setting {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: space-between;
}
.cookie-setting strong {
  color: var(--color-secondary);
  font-size: 1.05rem;
}
.cookie-toggle {
  width: 44px;
  height: 25px;
  display: inline-block;
  background: var(--color-border);
  border-radius: 15px;
  position: relative;
  margin-left: 11px;
  margin-right: 7px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #90896d;
  border-radius: 15px;
  transition: background 0.16s;
}
.cookie-toggle input:checked + .slider {
  background: var(--color-accent2);
}
.cookie-toggle .slider::before {
  content: '';
  position: absolute;
  height: 19px;
  width: 19px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 8px rgba(60,80,80,0.10);
  transition: transform 0.16s;
}
.cookie-toggle input:checked + .slider::before {
  transform: translateX(15px);
}
.cookie-setting[data-essential] .cookie-toggle {
  filter: grayscale(53%) opacity(0.7);
  pointer-events: none;
}
.cookie-modal__actions {
  margin-top: 14px;
  margin-bottom: -7px;
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent2);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal__close:hover {
  color: var(--color-secondary);
}

/* =============== RESPONSIVE STYLES =============== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  header img {
    height: 40px;
  }
  .footer-info img {
    height: 33px;
  }
}
@media (max-width: 768px) {
  .hero, .section {
    padding: 36px 7px;
    margin-bottom: 35px;
  }
  .container, .content-wrapper {
    padding: 0 5px;
  }
  .features .content-wrapper,
  .clubs .content-wrapper,
  .club-overview, .facility-list, .feature-grid, .content-grid, .unique-facility-points, .value-list, .footer-nav {
    flex-direction: column !important;
    gap: 18px;
  }
  .feature-item, .facility-item, .card {
    min-width: 0 !important;
    width: 100%;
    flex: 1 0 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start !important;
  }
  .contact-details, .opening-hours, .map-location {
    padding: 14px 6px 7px 10px;
  }
  .footer-info, .footer-nav {
    font-size: 0.9rem;
    gap: 10px;
  }
  .footer-info p {
    font-size: 0.9rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 7px 13px 11px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1rem;
  }
  .cta-btn, .card, .feature-item, .facility-item {
    font-size: 0.98rem;
    padding: 17px 8px;
  }
}
