/* =========================================
   1. RESET (Aby web vypadal všude stejně)
   ========================================= */
   *, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark, #0b0b0b); /* Přidávám pro jistotu i tvé temné pozadí */
    color: var(--text-light, #ffffff);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* =========================================
   2. NAČTENÍ FONTU (Inter)
   ========================================= */

/* Regular (400) - pro běžný text */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v13-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold (700) - pro nadpisy a tučný text */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v13-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   3. HLAVNÍ STYLY WEBU
   ========================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;        
    line-height: 1.2;        
    margin-top: 0;           
    margin-bottom: 1rem;     
}

p {
    margin-bottom: 1.5rem;
}


/* =========================================
   Header
   ========================================= */

.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.main-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  padding: 20px 50px;
  z-index: 100;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent; 
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              background-color 0.4s ease, 
              padding 0.4s ease;
}

.main-header.is-hidden {
  transform: translateY(-100%);
}

.main-header.is-sticky {
  background-color: rgba(8, 8, 8, 0.95);
  padding: 10px 50px;
  border-bottom: 1px solid var(--border-metal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-logo-link {
  display: flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  transition: transform 0.3s ease;
}

.header-logo-link svg {
  height: 50px;
  width: auto;
  display: block;
}

.header-logo-link:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 40px; 
}

.main-nav a {
  color: var(--text-light, #ffffff);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 8px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color, #00e5ff);
  transform: scaleX(0); 
  transform-origin: left; 
  
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav a:hover::after {
  transform: scaleX(1); 
}

.main-nav a:hover {
  color: var(--text-light, #ffffff);
}

.social-icons {
  justify-self: end;
  display: flex;
  gap: 25px;
}

.social-icons a {
  color: var(--text-light, #ffffff);
  text-decoration: none;
}

.social-icons i {
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease; 
}

.social-icons a:hover i {
  transform: translateY(-3px) scale(1.1);
  color: var(--accent-color, #00e5ff);
}



.hero-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
}

.slogan {
  color: var(--text-light, #ffffff);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: normal;
  margin: 0;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light, #ffffff);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

.hamburger-btn:hover {
  color: var(--accent-color, #00e5ff);
}

@media (max-width: 850px) {
    
  .main-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
}

.main-header.is-sticky {
    padding: 10px 25px;
}

    
    .hamburger-btn {
        display: block;
        z-index: 101; 
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--bg-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
        z-index: 90;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: none;
        border: none;
    }

    .main-nav a {
        margin: 10px 0;
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .social-icons {
        display: none; 
    }

    .main-nav.is-open ~ .social-icons {
        display: flex;
        position: fixed;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        gap: 40px;
        z-index: 101;
    }

    .main-nav.is-open ~ .social-icons i {
        font-size: 2.2rem; 
    }
    
    .logo {
        max-width: 250px;
    }
    
    .slogan {
        font-size: 1rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
  .bg-video {
      display: none;
  }
  
  .hero-wrapper {
      background-image: url('../images/kt_background_00.webp');
      background-size: cover;
      background-position: center;
  }
}

/* =========================================
   O nás
   ========================================= */

.about-section {
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    align-items: center; 
    justify-content: center;
    background-color: var(--bg-dark); 
    color: var(--text-light);
    position: relative; 
    z-index: 10;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.section-title.left-align {
  text-align: left;
  margin-bottom: 30px;
}

.section-title.left-align::after {
  margin: 15px 0 0 0;
}

.about-text .lead-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gallery-img {
  position: relative;
  border: 2px solid var(--border-metal);
  overflow: hidden;
}

.img-main {
  grid-column: 1 / 3;
  height: 300px;
}

.img-sub-1, .img-sub-2 {
  height: 200px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(80%) contrast(120%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.about-cta-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.btn-industrial {
  display: inline-block;
  padding: 15px 45px;
  color: var(--text-light);
  border: 2px solid var(--accent-color);
  background-color: transparent;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-industrial:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  box-shadow: 0 5px 15px rgba(255, 77, 0, 0.3);
  transform: translateY(-3px);
}


.gallery-img:hover img {
  filter: grayscale(0%) contrast(110%);
  transform: scale(1.05);
}

.js-scroll-anim {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform; 
}

.slide-left {
  transform: translateX(-80px);
}

.slide-right {
  transform: translateX(80px);
  transition-delay: 0.3s; 
}

.slide-up {
  transform: translateY(80px);
}

.js-scroll-anim.is-visible {
  opacity: 1;
  transform: translate(0, 0); 
}

@media (max-width: 900px) {
  .about-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .section-title.left-align {
      text-align: center;
  }
  
  .section-title.left-align::after {
      margin: 15px auto 0;
  }
  
  .about-text {
      text-align: center;
  }
}


/* ========================================== */
/* SEKCE TRENÉŘI (NÁŠ TÝM)                    */
/* ========================================== */
.trainers-section {
    padding: 100px 20px;
    background-color: var(--bg-dark); 
}

.trainers-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title.center-align {
    text-align: center;
    margin-bottom: 60px;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.trainer-card {
    background-color: #111111;
    border: 1px solid var(--border-metal);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.trainer-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
    transform: translateY(-10px);
}

.trainer-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.trainer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.5s ease;
  object-position: center top; 
}

.trainer-card:hover .trainer-img-wrapper img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.trainer-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trainer-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.specialization {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.trainer-bio {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trainer-bio.is-expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-align: left;
    display: inline-block;
}

.read-more-btn:hover {
    color: var(--text-light, #ffffff);
}

.trainer-results {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.trainer-results li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.trainer-results li::before {
    content: '▹';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.trainer-contacts {
  display: flex;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border-metal);
  padding-top: 20px;
  width: 100%;
  gap: 12px;
  overflow: hidden;
}

.trainer-contacts a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trainer-contacts a:hover {
  color: var(--accent-color);
}

.contact-icon {
  font-size: 1rem; 
}

.contact-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-divider {
  width: 1px;
  height: 14px;
  background-color: var(--border-metal);
  flex-shrink: 0;
}

@media (max-width: 1440px) {
  .trainer-contacts {
      gap: 8px;
      padding-top: 15px;
  }
  .contact-text {
      font-size: 0.75rem;
  }
}

@media (max-width: 500px) {
  .contact-text {
      font-size: 0.6rem;
  }
}

/* ========================================== */
/* RESPONZIVITA TRENÉRŮ                       */
/* ========================================== */

@media (max-width: 1440px) {
    .trainers-section { padding: 40px 20px; }
    .section-title.center-align { margin-bottom: 30px; }
    .trainer-img-wrapper { height: 200px; }
    .trainer-info { padding: 15px 20px; }
    .trainer-info h3 { font-size: 1.3rem; margin-bottom: 2px; }
    .specialization { font-size: 0.85rem; margin-bottom: 10px; }
    .trainer-bio { font-size: 0.9rem; line-height: 1.4; }
    .read-more-btn { margin-bottom: 15px; }
    .trainer-results { margin-bottom: 15px; }
    .trainer-results li { font-size: 0.85rem; margin-bottom: 5px; }
}

@media (max-width: 950px) {
    .trainers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =========================================
   Ceník
   ========================================= */

:root {
  --bg-dark: #0b0b0b;
  --card-dark: #121212;
  --border-metal: #333333;
  --accent-color: #ff4d00;
  --text-light: #ffffff;
  --text-muted: #888888;
}

.compact-pricing-section {
  background-color: var(--bg-dark); 
  color: var(--text-light);
  font-family: 'Oswald', Arial, sans-serif;
  padding: 80px 20px;
  
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 60px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1400px; 
  margin: 0 auto;
}

.price-card {
  background-color: var(--card-dark);
  padding: 35px 30px;
  border: 2px solid var(--border-metal);
  border-radius: 0;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: slideUpFade 0.6s ease forwards;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.15);
}

.price-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.price-card:hover::before {
  width: 100%;
  height: 3px;
}

.price-card h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: var(--text-light);
  letter-spacing: 2px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border-metal);
}

.card-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border-metal);
  align-items: center;
}

.card-grid:last-child, .price-row:last-child {
  border-bottom: none;
}

.card-grid.header span {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.name {
  font-weight: bold;
  font-size: 1.05rem;
}

.name small {
  display: block;
  font-weight: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.value {
  text-align: right;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-light);
}

@keyframes slideUpFade {
  0% {
      opacity: 0;
      transform: translateY(40px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.card-anim-1 { animation-delay: 0.1s; }
.card-anim-2 { animation-delay: 0.3s; }
.card-anim-3 { animation-delay: 0.5s; }

.multisport-banner {
    position: relative;
    width: 100%;
    background-color: #050505;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 40px 20px;
    margin: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.03) 15px,
        rgba(255, 255, 255, 0.03) 30px
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-dark);
    padding: 15px 40px;
    border: 1px solid var(--border-metal);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.banner-content h3 {
    color: var(--text-light);
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.banner-content i {
    color: var(--accent-color);
    font-size: 1.6rem;
}

@media (max-width: 768px) {


    .banner-content {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .banner-content h3 {
        font-size: 1.1rem;
        letter-spacing: 2px;
        text-align: center;
    }
}

/* =========================================
   SEKCE: OTEVÍRACÍ DOBA A MAPA
   ========================================= */

   .info-section {
    width: 100%;
    background-color: var(--bg-dark, #0b0b0b);
    padding: 100px 0;
}

.info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  min-height: 500px;
  background-color: #080808;
  border: 1px solid var(--border-metal);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.info-box {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hours-box {
  background-color: transparent;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hours-content {
    width: 100%;
    max-width: 400px;
}

.hours-header {
    text-align: center;
    margin-bottom: 40px;
}

.hours-header i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.hours-title {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    border-top: 1px solid var(--border-metal);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-metal);
}

.hours-list .day {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hours-list .time {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.hours-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.hours-footer i {
    font-size: 1.5rem;
    color: var(--border-metal);
}

.hours-footer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-box {
    background-color: #050505;
    width: 100%;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(110%);
}

@media (max-width: 950px) {
  .info-container {
      grid-template-columns: 1fr;
  }
  
  .hours-box {
      padding: 50px 20px;
  }
  
  .map-box {
      min-height: 400px; 
  }
}


  /* =========================================
   Patička
   ========================================= */


.site-footer {
    display: flex;
    background-color: #0b0b0b;
    color: #ffffff;
    min-height: 400px;
}

.footer-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.footer-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.footer-section h3 {
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.footer-section p {
    margin: 5px 0;
    font-size: 1.6rem;
    color: #e0e0e0;
}

.footer-section .legal-text {
    font-size: 0.8rem;
    color: #999999;
    margin-top: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 1.4rem;
}

.contact-list .icon {
    display: inline-block;
    width: 30px;
    font-weight: bold;
}

.contact-list a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-list a:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .site-footer {
        flex-direction: column;
    }
    .footer-graphic {
        min-height: 250px;
        justify-content: center;
    }

    .footer-graphic img {
      width: 50%;
      height: 50%;
  }

    .footer-content {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .footer-section h3 { font-size: 1.8rem; }
    .footer-section p { font-size: 1.1rem; }
    .contact-list li { font-size: 1.1rem; margin-bottom: 15px; }
}


  @media (min-width: 768px) {
  .info-section {
    display: flex;
    flex-direction: row;
  }

  .hours-title {
    font-size: 3rem;
  }

  .hours-block h3 {
    font-size: 1.6rem;
  }
  
  .hours-block p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .info-container {
    width: 100%;
  }
}



@media (min-width: 1024px) {
.info-section {
    min-height: 600px;
  }

  .hours-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }

  .hours-block h3 {
    font-size: 2.2rem;
  }
  
  .hours-block p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
    .pricing-cards-wrapper {
        grid-template-columns: 1fr; 
    }
    
    .price-card {
        padding: 25px 20px;
    }

    .card-grid {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .name { font-size: 0.95rem; }
    .value { font-size: 1rem; }
}

@media (max-width: 768px) {
    .about-section, 
    .trainers-section, 
    .compact-pricing-section, 
    .info-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}