/* --- 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.6;
  background: #f7fafc;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
img {
  vertical-align: middle;
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid #f2cf74;
}
/* --- BRAND COLORS & TYPOGRAPHY --- */
:root {
  --brand-primary: #244C7F;
  --brand-secondary: #388E46;
  --brand-accent: #F2CF74;
  --brand-bg: #f7fafc;
  --brand-electric-pink: #FF2975;
  --brand-electric-cyan: #11D3E8;
  --brand-electric-green: #2EDB7F;
  --brand-deep-purple: #24215c;
  --btn-shadow: 0 2px 16px 0 rgba(36,76,127,0.14), 0 1.5px 5px 0 rgba(255,41,117,0.14);
  --card-shadow: 0 4px 24px 0 rgba(36,76,127,0.11);
}

body, input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #222;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  color: var(--brand-electric-pink);
  line-height: 1.13;
  margin-bottom: 20px;
  text-shadow: 1px 2px 0 var(--brand-accent), 0 4px 12px #ffc6de;
}
h2 {
  font-size: 2.1rem;
  color: var(--brand-secondary);
  margin-top: 0;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.38rem;
  color: var(--brand-electric-cyan);
  margin-bottom: 10px;
}
p, li {
  font-size: 1.02rem;
  line-height: 1.7;
}
strong {
  color: var(--brand-electric-green);
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  padding: 0 0 16px 0;
}
.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;
  }
}
/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 24px 18px;
  transition: box-shadow .19s, transform .19s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 9px 32px 0 rgba(36,76,127,0.17);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(90deg, #fdf4b5 85%, #f7fafc 100%);
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(36, 76, 127, 0.11);
  padding: 20px 18px;
  min-width: 225px;
  flex: 1 1 220px;
  transition: box-shadow .18s, transform .18s;
}
.feature-item img {
  width: 36px;
  height: 36px;
}
.feature-item strong, .feature-item h3 {
  color: var(--brand-electric-pink);
}
.feature-item:hover {
  box-shadow: 0 3px 14px 0 rgba(255, 41, 117, 0.16);
  transform: translateY(-3px) scale(1.035);
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; }
}
/* --- NAVIGATION --- */
.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
  gap: 18px;
}
.logo img {
  width: 106px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: .2px;
  color: var(--brand-deep-purple);
  padding: 6px 13px;
  border-radius: 7px;
  transition: background .16s, color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-electric-pink);
  color: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--brand-electric-pink);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 38px;
  font-size: 1.16rem;
  letter-spacing: 1px;
  box-shadow: var(--btn-shadow);
  cursor: pointer;
  transition: background .21s, transform .19s, box-shadow .21s;
  margin-left: 8px;
  margin-right: 0;
  outline: none;
  display: inline-block;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 7px 30px 0 rgba(56, 142, 70, 0.24);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 4px 14px;
  margin-left: 5px;
  transition: color .18s;
  border-radius: 9px;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-accent);
  color: var(--brand-electric-pink);
}
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255, .98);
  box-shadow: 0 4px 48px 0 rgba(36,76,127, 0.15);
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.75,0,.2,1);
  display: flex;
  flex-direction: column;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 25px 22px 7px 0;
  color: var(--brand-primary);
  cursor: pointer;
  border-radius: 9px;
  padding: 0 11px;
  transition: background .17s, color .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--brand-accent);
  color: var(--brand-electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 26px 0 0 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1.28rem;
  padding: 11px 0;
  letter-spacing: .5px;
  border-radius: 7px;
  transition: background .18s, color .13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-electric-pink);
  color: #fff;
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO SECTIONS --- */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  margin-bottom: 50px;
  padding-top: 34px;
  background: linear-gradient(98deg, #fffbf0 57%, #ffe9f6 100%);
  box-shadow: 0 11px 38px 0 rgba(242,207,116,0.05);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  background: none;
}
.hero .cta-btn {
  margin-top: 10px;
}
@media (max-width: 730px) {
  .hero { padding-top: 17px; }
  .hero .content-wrapper { align-items: flex-start; }
}

/* --- SECTION STYLES ---*/
.features, .services, .topics, .offer, .club-features, .current-clubs, .workshop-types, .confirmation, .contact, .testimonials, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
}
.features h2, .services h2, .topics h2, .offer h1, .club-features h2, .current-clubs h2, .workshop-types h2, .testimonials h2, .legal h1, .confirmation h1, .contact h2, .contact h1 {
  margin-top: 0;
  margin-bottom: 19px;
}

.section, .features, .services, .topics, .offer, .club-features, .current-clubs, .workshop-types, .confirmation, .contact, .testimonials, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  width: 100%;
}
@media (max-width: 768px) {
  .section, .features, .services, .topics, .offer, .club-features, .current-clubs, .workshop-types, .confirmation, .contact, .testimonials, .legal {
    padding: 22px 7px;
    margin-bottom: 38px;
    border-radius: 13px;
  }
}

/* --- LISTS & TABLES --- */
ul, ol {
  color: #111;
  margin-bottom: 10px;
  padding-left: 0;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 13px;
  position: relative;
  font-size: 1.06rem;
}
ul li:before {
  content: '\25A0';
  color: var(--brand-electric-pink);
  font-size: 1.1em;
  margin-right: 10px;
}
table {
  font-size: 1.04rem;
  border-radius: 14px;
  margin: 24px 0;
  background: #fff;
  box-shadow: 0px 3px 9px rgba(36, 76, 127, 0.11);
  overflow: hidden;
}
th {
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  letter-spacing: 0.2px;
  font-weight: bold;
}
td {
  color: #222;
}
tbody tr:nth-child(odd) td {
  background: #f9fafb;
}
.price {
  color: var(--brand-electric-pink);
  font-weight: 700;
  margin-left: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(93deg, #f8faff 70%, #edfff9 103%);
  border: none;
  box-shadow: 0px 8px 34px -8px #e2edfc;
}
.testimonials h2 {
  color: var(--brand-primary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fffbe9;
  box-shadow: 0 2px 11px 0 rgba(255,41,117, 0.08);
  border: 2.3px solid var(--brand-accent);
  color: #232b38;
  font-size: 1.10rem;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #1d2330;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 0.98rem;
  font-weight: 700;
  margin-left: 7px;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 13px 6px; }
}

/* --- SERVICE LISTS --- */
.service-list {
  margin-top: 7px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.service-list li {
  background: #f6fdff;
  padding: 13px 20px;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(36, 76, 127, 0.09);
  font-size: 1.03rem;
}
@media (max-width: 600px) {
  .service-list li {
    padding: 10px 7px;
  }
}

/* --- CONTACT INFO & MAP --- */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
}
.contact-info img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  background: #fff6d7;
  padding: 17px 16px 13px 16px;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(36,76,127,0.09);
  margin-bottom: 20px;
}

/* --- FOOTER --- */
footer {
  margin-top: 48px;
  background: linear-gradient(90deg, #244c7f 37%, #388e46 100%);
  color: #fff;
  width: 100%;
  padding: 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 36px 24px 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.footer-menu a {
  color: #fffbe9;
  padding: 5px 9px 7px 9px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  order: 1;
  transition: background .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--brand-electric-cyan);
  color: var(--brand-primary) !important;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  order: 3;
}
.footer-copy {
  margin-top: 9px;
  font-size: 0.99rem;
  opacity: .92;
  order: 4;
  width: 100%;
}
footer .cta-btn {
  background: var(--brand-electric-green);
  color: var(--brand-deep-purple);
  font-size: 1.06rem;
  margin: 0 0 11px 0;
  box-shadow: 0 1px 9px 0 rgba(17,211,232,0.16);
  order: 2;
  text-transform: uppercase;
}
footer .cta-btn:hover, footer .cta-btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 17px;
    padding: 22px 5px 18px 5px;
  }
  .footer-copy { text-align: center; }
  .footer-menu, .footer-social { justify-content: center; }
}

/* --- BUTTONS & INTERACTIONS --- */
button, .cta-btn {
  outline: none;
  transition: background .18s, color .12s, transform .16s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* --- ANIMATIONS --- */
.cta-btn, .feature-item, .main-nav a, .mobile-nav a {
  transition: box-shadow .18s, background .19s, color .17s, transform .16s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
  .nav-container { max-width: 97vw; }
  .footer-container { max-width: 98vw; }
}
@media (max-width: 760px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.48rem; }
  .nav-container { flex-direction: row; gap: 8px; padding: 13px 6px 10px 6px; }
  .footer-container { gap: 9px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1rem; }
  .cta-btn { padding: 9px 16px; font-size: 0.98rem; }
  .card, .feature-item { padding: 13px 6px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #F2CF74 80%, #FF2975 100%);
  box-shadow: 0 -1.5px 11px 0 rgba(36, 76, 127, 0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 23px 5vw 21px 5vw;
  z-index: 6000;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  animation: slideUp .7s cubic-bezier(.66,.01,.61,1.09);
}
@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 auto;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 27px;
  font-size: 1.01rem;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 10px 0 rgba(36, 76, 127, 0.12);
  transition: background .18s, color .13s;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--brand-electric-pink);
  border: 2px solid var(--brand-electric-pink);
}
.cookie-banner .cookie-settings {
  background: var(--brand-electric-cyan);
  color: var(--brand-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-electric-green);
  color: var(--brand-deep-purple);
}
@media (max-width: 800px) {
  .cookie-banner { flex-direction: column; gap: 13px; align-items: flex-start; }
  .cookie-banner-content { margin-bottom: 7px; }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36, 76, 127, 0.13);
  z-index: 7000;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s;
}
@keyframes fadeIn {
  from{ opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 21px;
  max-width: 400px;
  width: 97vw;
  padding: 35px 28px 28px 28px;
  box-shadow: 0 12px 64px 0 rgba(36,76,127, 0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h3 {
  font-size: 1.34rem;
  color: var(--brand-electric-pink);
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 17px;
  height: 17px;
}
.cookie-category .essential {
  color: var(--brand-electric-green);
  font-weight: 700;
}
.cookie-modal-footer {
  margin-top: 15px;
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--brand-electric-pink);
  color: #fff;
  border: none;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 27px;
  font-size: 1.01rem;
  box-shadow: 0 2px 9px 0 rgba(36,76,127, 0.08);
  cursor: pointer;
  transition: background .18s, color .13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (max-width: 500px) {
  .cookie-modal { padding: 18px 6px 11px 11px; }
}

/* --- LEGAL PAGES --- */
.legal {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px 0 rgba(36,76,127,0.07);
}
.legal h1, .legal h2 {
  color: var(--brand-primary);
}
.legal ol {
  list-style: decimal inside;
  padding-left: 16px;
}
.legal ol li:before {
  content: "";
  margin-right: 0;
}
.legal a {
  color: var(--brand-electric-pink);
  text-decoration: underline;
}
.legal a:hover {
  color: var(--brand-electric-cyan);
}

/* --- VISUAL HIERARCHY & SPACING --- */
section, .section {
  margin-bottom: 60px;
}
.card, .feature-item, .testimonial-card, .service-list li {
  margin-bottom: 20px;
}
.features, .services, .topics, .offer, .club-features, .current-clubs, .workshop-types, .confirmation, .contact, .testimonials, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-bottom: 0;
  gap: 19px;
}
@media (max-width: 600px) {
  .features, .services, .topics, .offer, .club-features, .current-clubs, .workshop-types, .confirmation, .contact, .testimonials, .legal {
    margin-bottom: 34px;
    padding: 19px 5px;
  }
}

/* --- MISC --- */
::-webkit-scrollbar { width: 8px; background: #F2CF74; }
::-webkit-scrollbar-thumb { background: #FF2975; border-radius: 8px; }

/* --- PRINT --- */
@media print {
  header, .nav-container, .mobile-menu, .cta-btn, footer, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  body { color: #222; background: #fff; }
  section, .section { box-shadow: none; border: none; padding: 0; margin: 0; }
}
