/* Frosted Haven Sportklub – Vibrant Energetic Style CSS */
/* CSS RESET & NORMALIZATION */
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;
  outline: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-family: inherit;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-family: Arial, 'Montserrat', sans-serif;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
  background-color: #fcfcfc;
}
body {
  color: #224561;
  font-family: Arial, 'Montserrat', sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  background: #fcfcfc;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 20px;
}
a {
  color: #224561;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #ffbe34;
  outline: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
}
/* ===== BRAND COLORS ===== */
:root {
  --primary: #224561;
  --secondary: #77ACD3;
  --accent: #FFE9B1;
  --electric-blue: #0080ff;
  --vivid-red: #ff325b;
  --lime-green: #4BE17C;
  --deep-purple: #7742e3;
  --header-bg: #fcfcfc;
  --section-bg: #f7fbff;
  --shadow: 0 4px 16px 0 rgba(24,50,78,.10);
  --radius: 18px;
}
/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
}
h1 {
  font-size: 2.8rem;
  line-height: 1.09;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
p, li {
  font-family: Arial, 'Montserrat', sans-serif;
  color: #224561;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}
/*****************
*  CONTAINERS  *
*****************/
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
/*****************
* HEADER NAVBAR *
*****************/
header {
  background: var(--header-bg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 14px;
}
header img[alt="Frosted Haven Sportklub"] {
  width: 60px;
  margin-right: 24px;
  flex-shrink: 0;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .015em;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  position: relative;
}
nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: var(--vivid-red);
  position: absolute;
  left: 0; bottom: 0;
  border-radius: 2px;
  transition: width .2s;
}
nav a:hover::after, nav a:focus::after {
  width: 85%;
}
nav a:hover, nav a:focus {
  color: var(--vivid-red);
  background: var(--accent);
}
.cta-btn {
  background: linear-gradient(95deg, var(--electric-blue) 40%, var(--vivid-red) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 32px;
  padding: 13px 32px;
  margin-left: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 24px 0 rgba(0,40,100,0.10);
  border: none;
  min-width: 180px;
  transition: background .17s, transform .13s, box-shadow .17s;
  outline: none;
  display: inline-block;
}
.cta-btn:active {
  transform: scale(.97);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg, var(--vivid-red) 20%, var(--lime-green) 100%);
  box-shadow: 0 8px 32px 0 rgba(0,40,100,0.15);
}
.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: background .2s;
  margin-left: 24px;
  border: none;
  z-index: 60;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vivid-red);
}
/**********************/
/* MOBILE NAVIGATION  */
/**********************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 2px 24px 2px rgba(24,60,140,.16);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .37s cubic-bezier(.77,.14,.77,1.02);
  padding: 32px 24px;
  gap: 24px;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform .37s cubic-bezier(.77,.14,.77,1.02);
}
.mobile-menu-close {
  background: var(--vivid-red);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  align-self: flex-end;
  font-size: 1.7rem;
  font-weight: 700;
  transition: background .17s;
  z-index: 150;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--electric-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 14px 8px;
  border-radius: 7px;
  transition: background .16s, color .16s;
  margin: 0;
  outline: none;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--vivid-red);
}
/* =============================================================================
   HERO & CTA SECTIONS
============================================================================= */
.hero-section {
  background: linear-gradient(96deg, var(--accent) 60%, var(--secondary) 100%);
  padding: 60px 0 48px 0;
}
.hero-section .container, .cta-section .container, .thankyou-section .container {
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 8px;
}
.cta-section {
  background: linear-gradient(94deg, var(--secondary) 60%, var(--accent) 100%);
  border-radius: var(--radius);
  margin-bottom: 48px;
  padding: 48px 0;
  box-shadow: var(--shadow);
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
/**************
 * SECTIONS   *
 **************/
section {
  background: var(--section-bg);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
  display: flex;
}

section.legal-section {
  background: #fff;
  box-shadow: none;
}

/********** CARDS & FLEX GRIDS *********/
.feature-grid, .service-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.feature-grid > div, .service-category-grid > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(120,180,211,0.13);
  padding: 28px 22px 22px 22px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 3px solid var(--accent);
  transition: border .15s, box-shadow .13s, transform .13s;
}
.feature-grid > div:hover, .service-category-grid > div:hover {
  border: 3px solid var(--electric-blue);
  box-shadow: 0 10px 32px 0 rgba(34,69,97,0.22);
  transform: translateY(-2px) scale(1.03);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  max-width: 350px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .16s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(0,100,200,0.18);
  transform: translateY(-3px) scale(1.04);
}
/*********************
* CONTENT GRID LAYOUTS *
**********************/
.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;
}
/********************
 TESTIMONIALS & REVIEWS
*********************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 13px;
  border: 2px solid var(--secondary);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px 0 rgba(34,69,97,0.12);
  max-width: 520px;
  color: #224561;
  font-size: 1.1rem;
  position: relative;
  transition: border .16s, box-shadow .15s;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--electric-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card p {
  color: #224561;
  margin-bottom: 0;
}
.testimonial-card:hover {
  border: 2px solid var(--electric-blue);
  box-shadow: 0 10px 28px 0 rgba(34,69,97,0.16);
}
/*********************/
/*  FOOTER           */
/*********************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: auto;
  box-shadow: 0 -3px 12px 0 rgba(34,69,97,0.12);
}
footer .container {
  flex-direction: column;
  gap: 22px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
  justify-content: center;
}
.footer-links a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: .015em;
  transition: color .18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-contact img[alt="Frosted Haven Sportklub"] {
  width: 46px;
  margin-bottom: 8px;
}
.footer-contact div {
  font-size: 1rem;
  color: #e4f1fd;
  text-align: center;
}
.social-media {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 9px;
}
.social-media img {
  width: 28px;
  transition: filter .18s, transform .17s;
  filter: brightness(1.15);
}
.social-media img:hover {
  filter: brightness(2) saturate(2) contrast(1.18);
  transform: scale(1.09) rotate(-8deg);
}
/**********
* LISTS  *
**********/
.value-list, .feature-highlights ul, .event-highlights ul, .faq-list, .update-list ul, .feature-icons ul, .open-hours, .contact-info, .contact-details, .next-steps ul, .service-highlights ul, .legend-explanation, .filter-options, .schedule-table, .news-list {
  margin-bottom: 20px;
}
.feature-highlights ul, .event-highlights ul, .feature-icons ul, .next-steps ul, .update-list ul, .service-highlights ul {
  list-style: none;
  padding-left: 0;
}
.value-list li:before, .feature-highlights ul li:before, .event-highlights ul li:before, .service-highlights ul li:before {
  content: "• ";
  color: var(--vivid-red);
  font-size: 1.3em;
  margin-right: 5px;
  font-weight: bold;
  vertical-align: middle;
}
.feature-icons ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
}
.feature-icons ul li img {
  width: 22px;
  display: inline-block;
}
/***************
TABLES & LEGENDS
***************/
.schedule-table {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 18px;
}
.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.schedule-table th, .schedule-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5eff9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
.schedule-table th {
  background: var(--secondary);
  color: #fff;
  text-align: left;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}
.latest-updates-banner {
  background: var(--lime-green);
  color: #224561;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.10rem;
  box-shadow: 0 2px 18px 0 rgba(60,100,170,0.11);
}
.latest-updates-banner img {
  width: 24px;
  height: 24px;
}
.legend-explanation strong {
  color: var(--electric-blue);
}
/**********************
FORMS, FAQ, STEPS, MISC
***********************/
.step-list, .contact-info, .faq-list, .form-fields ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.step-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--deep-purple);
  font-weight: 700;
}
.step-list li:before {
  content: counter(step-counter, decimal);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--electric-blue);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.step-list {
  counter-reset: step-counter;
}
/******************
* LEGAL/PRIVACY *
*******************/
.privacy-policy-content, .gdpr-content, .cookie-policy-content, .terms-of-service-content {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(120,180,211,.10);
}
.privacy-policy-content ul, .gdpr-content ul, .terms-of-service-content ul {
  list-style: disc;
  margin-left: 24px;
  color: var(--electric-blue);
  font-weight: 600;
}
/**************************
* THANK YOU PAGE SECTION  *
***************************/
.thankyou-section {
  background: linear-gradient(90deg, var(--accent) 68%, var(--secondary) 100%);
  text-align: center;
}
.confirmation-message, .next-steps {
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.next-steps ul li:before {
  content: '✔ '; 
  color: var(--lime-green);
  margin-right: 8px;
}
/*********************************
* COOKIE BANNER & CONSENT MODAL  *
**********************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.19);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s, opacity .3s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.07rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  padding: 12px 28px;
  border-radius: 25px;
  background: var(--electric-blue);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: background .18s, box-shadow .18s, color .18s;
  margin: 2px 4px;
}
.cookie-accept-btn {
  background: var(--lime-green);
  color: #224561;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: var(--deep-purple);
  color: #fff;
}
.cookie-reject-btn {
  background: var(--vivid-red);
  color: #fff;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-settings-btn {
  background: var(--accent);
  color: var(--primary);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--electric-blue);
  color: #fff;
}
/********** COOKIE CONSENT MODAL *********/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,80,140,0.45);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  padding: 36px 24px 28px 24px;
  border-radius: 15px;
  width: 95%;
  max-width: 430px;
  box-shadow: 0 6px 40px 8px rgba(0,40,100,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--electric-blue);
  margin-bottom: 16px;
  text-align: center;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.cookie-category .category-label {
  font-size: 1rem;
  font-weight: 700;
}
.cookie-category .locked {
  color: var(--deep-purple);
  font-size: 1.07em;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: center;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: var(--vivid-red);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  font-size: 1.05rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--electric-blue);
}
/*************
* RESPONSIVE *
*************/
@media (max-width: 1060px) {
  .feature-grid > div, .service-category-grid > div, .card {
    min-width: 180px;
    max-width: 48%;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-category-grid {
    gap: 16px;
  }
  .feature-grid > div, .service-category-grid > div {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .card {
    max-width: 100%;
    min-width: 160px;
    flex: 1 1 100%;
  }
  section {
    padding: 30px 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  header .container, .footer-links, .footer-contact, .content-grid, .feature-grid, .card-container, .service-category-grid {
    flex-direction: column;
    align-items: stretch !important;
    gap: 18px;
  }
  .cta-btn {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-top: 12px;
    font-size: 1rem;
    padding: 13px 0;
  }
  header nav, nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .card, .feature-grid > div, .service-category-grid > div {
    max-width: 100%;
    min-width: 0;
  }
  .section {
    padding: 18px 6px;
  }
  .hero-section,
  .cta-section,
  .thankyou-section {
    padding: 38px 0 !important;
  }
  .thankyou-section .container {
    padding: 0 8px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 20px 14px;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 12px 6px;
    font-size: 0.96rem;
  }
}
@media (max-width: 600px) {
  .hero-section h1,
  .thankyou-section h1 {
    font-size: 2rem;
  }
  section {
    border-radius: 0;
    margin-bottom: 28px;
  }
  .cookie-modal-content {
    padding: 18px 3vw 18px 3vw;
  }
}

/************** FLEXBOX LAYOUTS FOR DESIGN SYSTEM PATTERNS **************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
/************ MISC / ACCESSIBILITY / UTILITIES ***********/
.note {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
}
[tabindex]:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}
::-webkit-input-placeholder {color: #9db9ce;}
::-moz-placeholder {color: #9db9ce;}
:-ms-input-placeholder {color: #9db9ce;}
::placeholder {color: #9db9ce;}

::selection {
  background: var(--secondary);
  color: #fff;
}

/********** ELEVATED FOCUS ************/
.cookie-modal-content:focus-within, .cta-btn:focus {
  box-shadow: 0 0 0 3px var(--electric-blue);
}
