/* ============================== */
/* Reset & 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #25334b;
  background: #fff;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25334b;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #fcd857;
  outline: none;
}
ul,ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}

/* ============================== */
/* Font Faces (Google Fonts CDN)  */
/* ============================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:700|Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #25334b;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; margin-bottom: 8px; }
p, .text-section, .faq, table, ul, ol {
  font-size: 1rem;
  color: #25334b;
}
strong {
  font-weight: 700;
}

/* ============================== */
/* Container & Layout             */
/* ============================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37, 51, 75, 0.04);
}

/* ============================== */
/* Header & Navigation            */
/* ============================== */
header {
  background: #25334b;
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 3px 16px rgba(37,51,75,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header img {
  height: 48px;
  margin-right: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0 10px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a.cta {
  background: #fcd857;
  color: #25334b;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 1rem;
  margin-left: 16px;
  box-shadow: 0 2px 10px rgba(252,216,87,0.2);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta:hover,
.main-nav a.cta:focus {
  background: #25334b;
  color: #fcd857;
  box-shadow: 0 4px 16px rgba(252,216,87,0.4);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fcd857;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fcd857;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 24px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #fcd857;
}

/* ============================== */
/* Mobile Menu                    */
/* ============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #25334b;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 24px 0 auto;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fcd857;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a.cta {
  background: #fcd857;
  color: #25334b;
  border-radius: 100px;
  padding: 12px 0;
  font-size: 1.25rem;
  margin-top: 16px;
  text-align: center;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #fff;
  color: #25334b;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fcd857;
}

/* ============================== */
/* Hero Section                   */
/* ============================== */
.hero {
  width: 100%;
  background: #fcd857;
  color: #25334b;
  padding: 50px 0 42px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
  background: #fff9e0;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(37,51,75,0.06);
  padding: 46px 24px 36px 24px;
  max-width: 680px;
  margin: 0 auto;
}
.hero h1, .hero h2 {
  color: #25334b;
  font-size: 2.5rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 14px;
  line-height: 1.11;
}
.hero p {
  color: #25334b;
  font-size: 1.2rem;
}
.hero .cta {
  margin-top: 24px;
}

/* ============================== */
/* CTA Buttons                    */
/* ============================== */
.cta {
  display: inline-block;
  background: #25334b;
  color: #fcd857;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 80px;
  padding: 14px 42px;
  margin: 0 0 12px 0;
  box-shadow: 0 1px 10px rgba(37,51,75,0.12);
  border: none;
  cursor: pointer;
  letter-spacing: 1.2px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.13s;
}
.cta:hover, .cta:focus {
  background: #fcd857;
  color: #25334b;
  box-shadow: 0 3px 20px #fcd85733, 0 2px 8px #25334b22;
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/* ============================== */
/* Feature Cards & Lists          */
/* ============================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature-card {
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4.5px 24px rgba(37,51,75,0.09);
  padding: 28px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid #fcd857;
  transition: box-shadow 0.18s, transform 0.14s, border 0.18s;
}
.feature-card:hover, .feature-card:focus {
  box-shadow: 0 10px 32px #25334b22, 0 3px 18px #fcd85733;
  border: 3px solid #25334b;
  transform: translateY(-2px) scale(1.04);
}
.feature-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
}
.feature-card h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  color: #25334b;
  text-align: center;
  min-height: 44px;
}
.feature-card p {
  color: #25334b;
  font-size: 1rem;
  text-align: center;
}

/* ============================== */
/* Cards                          */
/* ============================== */
.card-container,
.card-grid,
.team-list,
.trainer-portraits,
.testimonials, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2.5px 14px #25334b09;
  padding: 24px 20px;
}

/* Team & Trainer */
.team-list,
.trainer-portraits {
  gap: 28px;
  justify-content: flex-start;
}
.team-member, .trainer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #f4f4f4;
  padding: 22px 14px;
  border-radius: 17px;
  box-shadow: 0 3px 16px #25334b22;
  margin-bottom: 20px;
  min-width: 170px;
  max-width: 225px;
}
.team-member img, .trainer-card img {
  width: 51px;
  height: 51px;
}
.team-member h3, .trainer-card span {
  text-align: center;
  color: #25334b;
}

/* ============================== */
/* Testimonials & Reviews         */
/* ============================== */
.testimonials, .testimonial-grid {
  justify-content: flex-start;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 18px 24px;
  background: #fff;
  color: #25334b;
  border-radius: 16px;
  box-shadow: 0 4px 20px #25334b12;
  min-width: 240px;
  max-width: 360px;
  border-left: 8px solid #fcd857;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 36px #25334b19, 0 3px 12px #fcd85733;
  border-left: 8px solid #25334b;
}
.testimonial-ratings {
  display: flex;
  gap: 5px;
}
.testimonial-ratings img {
  width: 21px; height: 21px;
}
.testimonial-card p, .testimonial-card strong {
  color: #25334b;
}
.testimonial-card strong {
  font-size: 1.05em;
}

/* ============================== */
/* Pricing Table & Info           */
/* ============================== */
.pricing,
.pricing-list {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: bold;
  background: #25334b;
  color: #fcd857;
  border-radius: 13px;
  padding: 14px 25px;
  margin: 16px 0;
  display: inline-block;
}

/* Table styling for pricing (video-workouts) */
table {
  width: 100%;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 18px #25334b11;
  border-collapse: collapse;
  overflow: hidden;
  margin-bottom: 22px;
  font-size: 1rem;
}
thead tr {
  background: #25334b;
  color: #fff;
}
td, th {
  padding: 15px 9px;
  text-align: left;
}
tr {
  border-bottom: 1px solid #fcd85744;
}
tbody tr:nth-child(even) {
  background: #f4f4f4;
}
tbody tr:hover {
  background: #fffbe8;
}


/* ============================== */
/* FAQ                            */
/* ============================== */
.faq h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 6px;
  font-family: 'Oswald', Arial, sans-serif;
  color: #25334b;
}
.faq p {
  margin-bottom: 0;
}

/* ============================== */
/* Text Section                   */
/* ============================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #25334b;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
}
.text-section strong {
  font-size: 1.08em;
}

/* ============================== */
/* Footer                         */
/* ============================== */
footer {
  background: #25334b;
  color: #fff;
  font-size: 1rem;
  padding: 30px 0 0 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #fcd857;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px 0 10px 0;
}
.footer-contact div {
  min-width: 220px;
}
.footer-contact img {
  display: inline-block;
  vertical-align: middle;
  width: 1.1em;
  margin-right: 7px;
}
.footer-contact a {
  color: #fff;
  transition: color 0.18s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fcd857;
}
.footer-socials {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 7px;
}
.footer-socials a img {
  width: 30px; height: 30px;
  filter: brightness(0.95) contrast(1.1);
  transition: filter 0.22s, transform 0.18s;
}
.footer-socials a:hover img, .footer-socials a:focus img {
  filter: brightness(1.25) drop-shadow(0 2px 13px #fcd857cc);
  transform: scale(1.09);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 0 13px 0;
  font-size: 0.98rem;
  color: #fcd857;
}
.footer-brand img {
  width: 43px;
  height: 43px;
}

/* ============================== */
/* Cookie Consent Banner & Modal  */
/* ============================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #25334b;
  color: #fff;
  box-shadow: 0 -4px 18px #25334b29;
  padding: 18px 24px 18px 22px;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s;
}
#cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 300px;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.btn-cookie,
.btn-cookie-settings {
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 44px;
  padding: 13px 25px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.btn-cookie-accept {
  background: #fcd857;
  color: #25334b;
}
.btn-cookie-accept:hover,
.btn-cookie-accept:focus {
  background: #fff;
  color: #25334b;
}
.btn-cookie-reject {
  background: #fff;
  color: #25334b;
}
.btn-cookie-reject:hover,
.btn-cookie-reject:focus {
  background: #fcd857;
  color: #25334b;
}
.btn-cookie-settings {
  background: transparent;
  color: #fcd857;
  border: 2px solid #fcd857;
}
.btn-cookie-settings:hover,
.btn-cookie-settings:focus {
  background: #fcd857;
  color: #25334b;
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,51,75,0.7);
  z-index: 4000;
  align-items: center;
  justify-content: center;
}
#cookie-modal.active {
  display: flex;
  animation: fadeInCookieModal 0.22s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #25334b;
  border-radius: 22px;
  max-width: 410px;
  width: 94vw;
  padding: 38px 30px 27px 30px;
  position: relative;
  box-shadow: 0 8px 36px #25334b33;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-content h2 {
  margin-bottom: 2px;
  color: #25334b;
  text-align: left;
  font-size: 1.35rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 10px 0;
}
.cookie-toggle {
  appearance: none;
  width: 40px; height: 22px;
  background: #f4f4f4;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  border: none;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #fcd857;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 5px #25334b15;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #25334b;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fcd857;
}

/* ============================== */
/* Content Layout Patterns        */
/* ============================== */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================== */
/* Participation & Challenges     */
/* ============================== */
.challenge-highlights ul {
  margin-bottom: 0;
}
.participation-steps ol {
  margin-bottom: 0;
}
.member-stories {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ============================== */
/* Animations / Micro-interaction */
/* ============================== */
.cta, .btn-cookie, .feature-card, .testimonial-card, .footer-socials a img {
  transition: box-shadow 0.2s, background 0.16s, color 0.16s, transform 0.13s;
}

/* ============================== */
/* MEDIA QUERIES & RESPONSIVE     */
/* ============================== */
@media (max-width: 1024px) {
  .container { max-width: 92vw; }
  .footer-contact { flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .features-grid, .team-list, .trainer-portraits, .testimonials, .testimonial-grid,
  .card-container, .card-grid {
    gap: 18px;
  }
  .feature-card, .team-member, .testimonial-card { max-width: 100%; min-width: 180px; }
  .content-wrapper { gap: 16px; }
}
@media (max-width: 768px) {
  html { font-size: 96%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.18rem; }
  header .container { flex-direction: row; height: 66px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-contact { flex-direction: column; gap: 12px; }
  .content-grid, .features-grid, .testimonials, .testimonial-grid, .team-list, .trainer-portraits {
    flex-direction: column;
    gap: 14px !important;
    align-items: stretch;
  }
  .member-stories { gap: 12px; }
  .footer-brand { flex-direction: column; gap: 7px; text-align: center; }
  .section,
  .hero {
    padding: 26px 4vw;
  }
  .hero .container { padding: 0; }
  .hero .content-wrapper { padding: 35px 12px 28px 12px; }
  .testimonial-card { padding: 16px 13px 14px 14px; }
}
@media (max-width: 520px) {
  .section { padding: 18px 1vw; }
  .hero { min-height: 160px; }
  .hero .content-wrapper { padding: 16px 6px 18px 6px; }
  .card,
  .feature-card,
  .testimonial-card,
  .team-member,
  .trainer-card { padding: 14px 10px; }
  .footer-contact div { min-width: 120px; font-size: 0.98rem; }
  .footer-socials a img { width: 25px; height: 25px; }
  .footer-brand img { width: 33px; height: 33px; }
}

/* ============================== */
/* Miscellaneous / Utility        */
/* ============================== */
::-webkit-input-placeholder { color: #25334b9c; }
::-moz-placeholder { color: #25334b9c; }
:-ms-input-placeholder { color: #25334b9c; }
::placeholder { color: #25334b9c; }

/* ============================== */
/* Accessibility                  */
/* ============================== */
:focus {
  outline: 2px solid #fcd857;
  outline-offset: 2px;
}

/* ============================== */
/* Hide Cookie Modal on Close      */
/* ============================== */
#cookie-modal.hide {
  display: none !important;
  animation: none;
}

