/* ========================= */
/* FILE: style.css */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#0b0b0b;
  color:white;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  width:100%;
  padding:22px 7%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(10px);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo img{
  width:220px;
}

.nav-menu{
  display:flex;
  gap:35px;
}

.nav-menu a{
  color:white;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#ff2b2b;
}

/* HERO */

.hero{
  height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.8)),
  url('bg.png');

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  position:relative;
}

.hero-content{
  width:90%;
  max-width:950px;
}

.mini-title{
  color:#ff2b2b;
  letter-spacing:3px;
  font-weight:700;
  margin-bottom:25px;
}

.hero h1{
  font-size:6rem;
  line-height:1;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.hero-text{
  margin-top:30px;
  line-height:1.9;
  color:#d0d0d0;
  font-size:1.1rem;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 34px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.primary-btn{
  background:#ff2b2b;
  color:white;
}

.primary-btn:hover{
  transform:translateY(-4px);
}

.secondary-btn{
  border:2px solid white;
  color:white;
}

.secondary-btn:hover{
  background:white;
  color:black;
}

/* STATS */

.stats{
  padding:90px 7%;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.stat-box{
  background:#151515;
  border-radius:25px;
  padding:50px 30px;
  text-align:center;

  border:1px solid rgba(255,255,255,0.06);

  transition:0.3s;
}

.stat-box:hover{
  transform:translateY(-8px);
  border-color:#ff2b2b;
}

.stat-box h2{
  font-size:3.2rem;
  color:#ff2b2b;
  font-family:'Oswald',sans-serif;
}

.stat-box p{
  margin-top:12px;
  color:#c8c8c8;
}

/* ABOUT */

.about-preview{
  padding:130px 7%;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-image{
  overflow:hidden;
  border-radius:30px;
}

.about-image img{
  width:100%;
  transition:0.6s;
}

.about-image:hover img{
  transform:scale(1.08);
}

.section-tag{
  color:#ff2b2b;
  letter-spacing:2px;
  font-weight:700;
  margin-bottom:18px;
}

.about-content h2,
.section-heading h2,
.cta h2{
  font-size:3.5rem;
  font-family:'Oswald',sans-serif;
  margin-bottom:25px;
}

.about-content p{
  color:#d0d0d0;
  line-height:1.9;
  margin-bottom:35px;
}

/* PROGRAMS */

.programs-preview{
  padding:130px 7%;
  background:#101010;
}

.section-heading{
  text-align:center;
  margin-bottom:70px;
}

.program-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.program-card{
  background:#171717;
  border-radius:28px;
  padding:40px;

  border:1px solid rgba(255,255,255,0.08);

  transition:0.3s;
}

.program-card:hover{
  transform:translateY(-10px);
  border-color:#ff2b2b;
}

.program-card h3{
  font-size:2rem;
  font-family:'Oswald',sans-serif;
  margin-bottom:20px;
}

.program-card p{
  color:#cfcfcf;
  line-height:1.8;
}

/* LOGO BREAK */

.logo-break{
  padding:90px 0;
  text-align:center;
}

.logo-break img{
  width:240px;
  opacity:0.95;
}

/* COACHES */

.coaches-preview{
  padding:130px 7%;
}

.coach-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.coach-card{
  background:#171717;
  border-radius:30px;
  padding:50px 30px;
  text-align:center;

  border:1px solid rgba(255,255,255,0.08);

  transition:0.3s;
}

.coach-card:hover{
  transform:translateY(-10px);
  border-color:#ff2b2b;
}

.profile-circle{
  width:120px;
  height:120px;
  border-radius:50%;

  background:linear-gradient(135deg,#ff2b2b,#780000);

  display:flex;
  justify-content:center;
  align-items:center;

  margin:auto;

  font-size:3rem;
  font-family:'Oswald',sans-serif;
}

.coach-card h3{
  margin-top:25px;
  font-size:2rem;
  font-family:'Oswald',sans-serif;
}

/* CTA */

.cta{
  padding:150px 7%;

  background:
  linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.8)),
  url('bg.png');

  background-size:cover;
  background-position:center;

  text-align:center;
}

.cta-content{
  max-width:900px;
  margin:auto;
}

/* FOOTER */

footer{
  padding:60px 7%;
  text-align:center;

  border-top:1px solid rgba(255,255,255,0.08);
}

footer img{
  width:220px;
  margin-bottom:25px;
}

footer p{
  color:#bdbdbd;
}

/* ANIMATIONS */

.fade-up{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */

.hamburger{
  display:none;
}

@media(max-width:1100px){

  .stats,
  .program-grid,
  .coach-grid,
  .about-preview{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:4rem;
  }

  .nav-menu{
    display:none;
  }

  .hamburger{
    display:flex;
    flex-direction:column;
    gap:5px;
  }

  .hamburger span{
    width:28px;
    height:3px;
    background:white;
  }

}

@media(max-width:700px){

  .hero h1{
    font-size:3rem;
  }

  .about-content h2,
  .section-heading h2,
  .cta h2{
    font-size:2.5rem;
  }

}
/* =========================================
   ADD THIS TO THE BOTTOM OF style.css
   FIXES:
   - Hero text being hidden behind navbar
   - Other pages too high up
   - Premium spacing/layout
   - Better page headers
   - Better mobile spacing
========================================= */


/* PAGE HERO SECTIONS */

.page-hero{
  min-height:55vh;
  padding-top:140px;
  padding-bottom:80px;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;

  background:
  linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.82)
  ),
  url('bg.png');

  background-size:cover;
  background-position:center;

  position:relative;
}

.page-hero-content{
  width:100%;
  max-width:900px;
  padding:0 20px;
}

.page-hero .mini-title{
  margin-bottom:20px;
}

.page-hero h1{
  font-size:5rem;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  line-height:1;
  margin-bottom:20px;
}

.page-hero p{
  color:#d0d0d0;
  font-size:1.15rem;
  line-height:1.8;
}


/* FIX MAIN HERO CONTENT */

.hero{
  padding-top:110px;
}

.hero-content{
  width:100%;
  max-width:950px;
  padding:0 25px;
}

.hero h1{
  margin-top:10px;
}

.hero-text{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}


/* PREMIUM SECTION SPACING */

.about,
.membership,
.trainers,
.contact,
.classes-page,
.programs-page,
.coaches-page{
  padding-top:130px;
  padding-bottom:130px;
}


/* SECTION HEADINGS */

.section-heading{
  margin-bottom:80px;
}

.section-heading h2{
  line-height:1.1;
}


/* CLASS GRID BETTER ALIGNMENT */

.class-grid{
  padding:0 7% 120px;
  align-items:stretch;
}

.class-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}


/* MEMBERSHIP FIX */

.membership-grid{
  margin-top:50px;
}


/* TRAINERS FIX */

.trainer-grid{
  margin-top:60px;
}


/* CONTACT FIX */

.contact-box{
  margin-top:30px;
}


/* LOGO DIVIDER */

.logo-divider{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px 70px;
}

.logo-divider img{
  width:240px;
  opacity:0.95;
}


/* PAGE CONTENT WIDTH */

.page-container{
  width:100%;
  max-width:1400px;
  margin:auto;
}


/* BETTER MOBILE */

@media(max-width:1000px){

  .page-hero{
    min-height:48vh;
    padding-top:130px;
    padding-bottom:70px;
  }

  .page-hero h1{
    font-size:3.5rem;
  }

  .hero{
    padding-top:90px;
  }

  .hero h1{
    font-size:4rem;
  }

  .about,
  .membership,
  .trainers,
  .contact,
  .classes-page,
  .programs-page,
  .coaches-page{
    padding-top:90px;
    padding-bottom:90px;
  }

}


@media(max-width:700px){

  .page-hero h1{
    font-size:2.7rem;
  }

  .page-hero p{
    font-size:1rem;
  }

  .hero h1{
    font-size:3rem;
  }

  .mini-title{
    font-size:0.8rem;
    line-height:1.7;
  }

  .hero-text{
    font-size:1rem;
    line-height:1.8;
  }

  .logo-divider img{
    width:170px;
  }

  .section-heading{
    margin-bottom:50px;
  }

}


/* CLEANER NAVBAR */

.navbar{
  padding-top:20px;
  padding-bottom:20px;
}

body.scrolled .navbar{
  padding-top:14px;
  padding-bottom:14px;
}


/* FIX OVERFLOW ISSUES */

body,
html{
  overflow-x:hidden;
}


/* PREMIUM CARD DEPTH */

.class-card,
.membership-card,
.trainer-card,
.contact-card,
.stat-box{
  box-shadow:
  0 10px 30px rgba(0,0,0,0.25);
}


/* SMOOTHER HOVER */

.class-card:hover,
.membership-card:hover,
.trainer-card:hover,
.contact-card:hover,
.stat-box:hover{
  box-shadow:
  0 20px 45px rgba(0,0,0,0.35);
}


/* BETTER BUTTONS */

.primary-btn,
.secondary-btn,
.class-btn,
.membership-btn{
  min-height:56px;
}


/* CLEAN PAGE SECTIONS */

section{
  position:relative;
}


/* FIX NAV SPACING */

.nav-menu{
  gap:45px;
}


/* CLEAN TEXT WIDTH */

.about-content p,
.hero-text,
.page-hero p{
  max-width:800px;
}


/* BETTER MAP */

.map-container iframe{
  border-radius:20px;
}


/* FOOTER PREMIUM */

footer{
  padding-top:70px;
  padding-bottom:70px;
  background:#090909;
}

footer img{
  display:block;
  margin:auto;
  margin-bottom:25px;
}


/* EXTRA PREMIUM ANIMATION */

.fade-up{
  opacity:0;
  transform:translateY(60px);
  transition:
  opacity 1s ease,
  transform 1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
/* =========================================
   PREMIUM ABOUT PAGE REDESIGN
   REPLACE YOUR CURRENT ABOUT PAGE CSS
========================================= */


/* PAGE HERO */

.page-hero{
  min-height:70vh;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;

  padding:
  180px 7%
  120px;

  position:relative;
  overflow:hidden;

  background:
  linear-gradient(
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.82)
  ),
  url('bg.png');

  background-size:cover;
  background-position:center;
}

.page-hero::before{
  content:'';

  position:absolute;
  width:700px;
  height:700px;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.22),
    transparent 70%
  );

  top:-250px;
  right:-180px;

  filter:blur(30px);
}

.page-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
}

.page-hero-content{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1000px;

  margin:auto;
}

.section-tag{
  color:#ff2b2b;

  font-size:0.9rem;
  font-weight:700;

  letter-spacing:4px;
  text-transform:uppercase;

  margin-bottom:28px;
}

.page-hero h1{
  font-size:6.5rem;
  line-height:0.95;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;

  max-width:900px;
  margin:auto;

  text-shadow:
  0 12px 40px rgba(0,0,0,0.5);
}


/* ABOUT STORY SECTION */

.about-story{
  padding:130px 7%;
  position:relative;
}

.about-story::before{
  content:'';

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.1),
    transparent 70%
  );

  left:-180px;
  top:-120px;
}

.about-content{
  width:100%;
  max-width:1100px;

  margin:auto;

  background:#141414;

  border-radius:38px;

  padding:
  90px 90px;

  text-align:center;

  position:relative;
  z-index:2;

  border:1px solid rgba(255,255,255,0.07);

  box-shadow:
  0 25px 70px rgba(0,0,0,0.45);
}

.about-content::before{
  content:'';

  position:absolute;
  top:0;
  left:50%;

  transform:translateX(-50%);

  width:140px;
  height:5px;

  background:#ff2b2b;

  border-radius:999px;
}

.about-content h2{
  font-size:4.5rem;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;

  line-height:1;

  margin-bottom:35px;

  max-width:850px;
  margin-left:auto;
  margin-right:auto;
}

.about-content p{
  max-width:820px;

  margin:
  0 auto
  28px;

  color:#cfcfcf;

  font-size:1.12rem;
  line-height:2;
}


/* FACILITY SECTION */

.facility-grid{
  width:100%;
  max-width:1400px;

  margin:auto;

  padding:
  0 7%
  140px;

  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:35px;
}

.facility-card{
  position:relative;

  min-height:450px;

  overflow:hidden;

  border-radius:34px;

  background:#111;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 20px 60px rgba(0,0,0,0.35);

  transition:
  transform 0.45s ease,
  border 0.45s ease,
  box-shadow 0.45s ease;
}

.facility-card:hover{
  transform:translateY(-12px);

  border-color:rgba(255,43,43,0.5);

  box-shadow:
  0 30px 80px rgba(0,0,0,0.5);
}

.facility-card img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.7s ease;
}

.facility-card:hover img{
  transform:scale(1.08);
}

.facility-card::after{
  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.15)
  );
}

.facility-card h3{
  position:absolute;

  left:40px;
  bottom:35px;

  z-index:2;

  font-size:2.5rem;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;

  letter-spacing:1px;
}


/* FOOTER */

footer{
  padding:
  80px 7%;

  text-align:center;

  background:#090909;

  border-top:
  1px solid rgba(255,255,255,0.06);
}

footer img{
  width:220px;

  margin:auto;
  margin-bottom:25px;

  display:block;
}

footer p{
  color:#bdbdbd;
  letter-spacing:1px;
}


/* PREMIUM ANIMATION */

.fade-up{
  opacity:0;
  transform:translateY(70px);

  transition:
  opacity 1s ease,
  transform 1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}


/* MOBILE */

@media(max-width:1100px){

  .page-hero h1{
    font-size:4.5rem;
  }

  .about-content{
    padding:70px 50px;
  }

  .about-content h2{
    font-size:3.2rem;
  }

  .facility-grid{
    grid-template-columns:1fr;
  }

}


@media(max-width:700px){

  .page-hero{
    min-height:60vh;

    padding:
    150px 6%
    90px;
  }

  .page-hero h1{
    font-size:3rem;
  }

  .about-story{
    padding:90px 6%;
  }

  .about-content{
    padding:50px 28px;

    border-radius:28px;
  }

  .about-content h2{
    font-size:2.3rem;
  }

  .about-content p{
    font-size:1rem;
    line-height:1.9;
  }

  .facility-grid{
    padding:
    0 6%
    90px;

    gap:25px;
  }

  .facility-card{
    min-height:320px;

    border-radius:26px;
  }

  .facility-card h3{
    left:25px;
    bottom:22px;

    font-size:1.8rem;
  }

  footer img{
    width:180px;
  }

}
/* =========================================
   PREMIUM PROGRAMS PAGE STYLING
   ADD THIS TO THE BOTTOM OF style.css
========================================= */


/* BODY */

body{
  background:#0a0a0a;
}


/* HERO */

.page-hero{
  min-height:78vh;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:
  190px 7%
  130px;

  position:relative;
  overflow:hidden;

  background:
  linear-gradient(
    rgba(0,0,0,0.78),
    rgba(0,0,0,0.88)
  ),
  url('bg.png');

  background-size:cover;
  background-position:center;
}

.page-hero::before{
  content:'';

  position:absolute;

  width:900px;
  height:900px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.18),
    transparent 70%
  );

  top:-350px;
  right:-200px;

  filter:blur(30px);
}

.page-hero::after{
  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    transparent
  );
}

.page-overlay{
  position:absolute;
  inset:0;
}

.page-hero-content{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1100px;

  margin:auto;
}

.section-tag{
  color:#ff2b2b;

  font-size:0.95rem;
  font-weight:700;

  letter-spacing:5px;
  text-transform:uppercase;

  margin-bottom:28px;
}

.page-hero h1{
  font-size:6.7rem;
  line-height:0.92;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  max-width:950px;

  margin:auto;
  margin-bottom:28px;

  text-shadow:
  0 15px 40px rgba(0,0,0,0.5);
}

.hero-subtext{
  max-width:760px;

  margin:auto;

  color:#d0d0d0;

  font-size:1.15rem;
  line-height:2;
}


/* PROGRAM GRID */

.programs-page-grid{
  width:100%;
  max-width:1500px;

  margin:auto;

  padding:
  130px 7%
  140px;

  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:38px;

  position:relative;
}

.programs-page-grid::before{
  content:'';

  position:absolute;

  width:550px;
  height:550px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.08),
    transparent 70%
  );

  left:-180px;
  top:-100px;
}


/* PROGRAM CARD */

.program-card{
  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    180deg,
    #181818,
    #111111
  );

  border-radius:38px;

  padding:
  60px 55px;

  min-height:460px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.38);

  transition:
  transform 0.45s ease,
  border 0.45s ease,
  box-shadow 0.45s ease;
}

.program-card::before{
  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(255,43,43,0.14),
    transparent 45%
  );

  opacity:0;

  transition:0.45s ease;
}

.program-card::after{
  content:'';

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:5px;

  background:
  linear-gradient(
    90deg,
    #ff2b2b,
    transparent
  );
}

.program-card:hover{
  transform:translateY(-14px);

  border-color:
  rgba(255,43,43,0.45);

  box-shadow:
  0 40px 90px rgba(0,0,0,0.5);
}

.program-card:hover::before{
  opacity:1;
}


/* PROGRAM TOP */

.program-top{
  position:relative;
  z-index:2;
}

.program-label{
  display:inline-flex;

  background:
  rgba(255,43,43,0.12);

  border:
  1px solid rgba(255,43,43,0.35);

  color:#ff4b4b;

  padding:
  10px 18px;

  border-radius:999px;

  font-size:0.82rem;
  font-weight:700;

  letter-spacing:2px;
  text-transform:uppercase;

  margin-bottom:28px;
}

.program-card h3{
  font-size:3.1rem;
  line-height:0.95;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  margin-bottom:25px;

  max-width:450px;
}

.program-card p{
  color:#cfcfcf;

  line-height:2;
  font-size:1.03rem;

  max-width:520px;
}


/* DETAILS */

.program-details{
  position:relative;
  z-index:2;

  margin-top:45px;

  display:flex;
  flex-direction:column;
  gap:18px;
}

.detail-row{
  display:flex;
  align-items:center;
  gap:14px;

  color:white;

  font-weight:500;

  padding-bottom:16px;

  border-bottom:
  1px solid rgba(255,255,255,0.08);
}

.detail-row::before{
  content:'';

  width:10px;
  height:10px;

  border-radius:50%;

  background:#ff2b2b;

  flex-shrink:0;

  box-shadow:
  0 0 15px rgba(255,43,43,0.8);
}

.detail-price{
  margin-top:12px;

  font-size:2.3rem;
  font-family:'Oswald',sans-serif;

  color:#ff2b2b;

  text-transform:uppercase;

  letter-spacing:1px;
}


/* CTA */

.programs-cta{
  padding:
  0 7%
  140px;
}

.cta-box{
  max-width:1200px;

  margin:auto;

  background:
  linear-gradient(
    135deg,
    #191919,
    #101010
  );

  border-radius:40px;

  padding:
  90px 70px;

  text-align:center;

  border:
  1px solid rgba(255,255,255,0.08);

  position:relative;
  overflow:hidden;

  box-shadow:
  0 30px 70px rgba(0,0,0,0.4);
}

.cta-box::before{
  content:'';

  position:absolute;

  width:400px;
  height:400px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.16),
    transparent 70%
  );

  top:-180px;
  right:-120px;
}

.cta-box h2{
  position:relative;
  z-index:2;

  font-size:4.5rem;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;

  margin-bottom:25px;
}

.cta-box p{
  position:relative;
  z-index:2;

  max-width:720px;

  margin:
  auto
  40px;

  color:#d0d0d0;

  line-height:2;
  font-size:1.05rem;
}


/* BUTTON */

.primary-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;

  min-width:230px;
  min-height:60px;

  background:#ff2b2b;
  color:white;

  border-radius:999px;

  text-decoration:none;

  font-weight:700;
  letter-spacing:1px;

  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.primary-btn:hover{
  transform:translateY(-5px);

  box-shadow:
  0 15px 35px rgba(255,43,43,0.35);
}


/* FOOTER */

footer{
  padding:
  85px 7%;

  text-align:center;

  background:#090909;

  border-top:
  1px solid rgba(255,255,255,0.06);
}

footer img{
  width:220px;

  display:block;

  margin:auto;
  margin-bottom:28px;
}

footer p{
  color:#bdbdbd;

  letter-spacing:1px;
  font-size:0.95rem;
}


/* ANIMATIONS */

.fade-up{
  opacity:0;

  transform:translateY(70px);

  transition:
  opacity 1s ease,
  transform 1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}


/* MOBILE */

@media(max-width:1150px){

  .programs-page-grid{
    grid-template-columns:1fr;
  }

  .page-hero h1{
    font-size:4.8rem;
  }

  .program-card h3{
    font-size:2.5rem;
  }

  .cta-box h2{
    font-size:3.2rem;
  }

}


@media(max-width:700px){

  .page-hero{
    min-height:65vh;

    padding:
    150px 6%
    90px;
  }

  .page-hero h1{
    font-size:3.1rem;
  }

  .hero-subtext{
    font-size:1rem;
    line-height:1.9;
  }

  .programs-page-grid{
    padding:
    90px 6%
    100px;

    gap:24px;
  }

  .program-card{
    min-height:auto;

    padding:
    42px 28px;

    border-radius:28px;
  }

  .program-card h3{
    font-size:2rem;
  }

  .program-card p{
    font-size:0.98rem;
    line-height:1.85;
  }

  .detail-row{
    font-size:0.95rem;
  }

  .detail-price{
    font-size:1.8rem;
  }

  .programs-cta{
    padding:
    0 6%
    100px;
  }

  .cta-box{
    padding:
    55px 28px;

    border-radius:28px;
  }

  .cta-box h2{
    font-size:2.4rem;
  }

  .cta-box p{
    font-size:1rem;
    line-height:1.9;
  }

  footer img{
    width:180px;
  }

}
/* =========================================
   FIX CTA SECTION PROPORTIONS
   REPLACE YOUR CURRENT CTA CSS
========================================= */

.programs-cta{
  padding:
  40px 7%
  140px;
}

.cta-box{
  width:100%;
  max-width:1050px;

  margin:auto;

  padding:
  75px 60px;

  border-radius:38px;

  text-align:center;

  background:
  linear-gradient(
    145deg,
    #181818,
    #101010
  );

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 30px 70px rgba(0,0,0,0.4);

  position:relative;
  overflow:hidden;
}

.cta-box::before{
  content:'';

  position:absolute;

  width:420px;
  height:420px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.16),
    transparent 70%
  );

  top:-200px;
  right:-120px;
}

.cta-box .section-tag{
  position:relative;
  z-index:2;

  margin-bottom:22px;

  font-size:0.85rem;

  letter-spacing:4px;
}

.cta-box h2{
  position:relative;
  z-index:2;

  font-size:4rem;

  line-height:0.95;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  max-width:700px;

  margin:
  auto
  28px;
}

.cta-box p{
  position:relative;
  z-index:2;

  max-width:650px;

  margin:
  auto
  38px;

  color:#cfcfcf;

  font-size:1.05rem;
  line-height:1.9;
}

.cta-box .primary-btn{
  position:relative;
  z-index:2;

  min-width:240px;
  min-height:60px;

  font-size:0.95rem;

  margin-top:10px;
}


/* MOBILE */

@media(max-width:700px){

  .programs-cta{
    padding:
    10px 6%
    90px;
  }

  .cta-box{
    padding:
    55px 28px;

    border-radius:28px;
  }

  .cta-box h2{
    font-size:2.5rem;

    line-height:1;
  }

  .cta-box p{
    font-size:1rem;
    line-height:1.8;
  }

  .cta-box .primary-btn{
    width:100%;
  }

}
/* CENTER CTA CONTENT BETTER */

.cta-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.cta-box h2{
  text-align:center;
}

.cta-box p{
  text-align:center;
}

.cta-box .primary-btn{
  display:flex;
  justify-content:center;
  align-items:center;

  margin-left:auto;
  margin-right:auto;
}
/* =========================================
   PREMIUM CTA SPACING FIX
   REPLACE YOUR CURRENT CTA CSS
========================================= */

.programs-cta{
  padding:
  30px 7%
  150px;
}

.cta-box{
  width:100%;
  max-width:1100px;

  margin:auto;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:
  95px 75px;

  border-radius:42px;

  position:relative;
  overflow:hidden;

  background:
  linear-gradient(
    145deg,
    #191919,
    #101010
  );

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 35px 90px rgba(0,0,0,0.45);
}

.cta-box::before{
  content:'';

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.15),
    transparent 70%
  );

  top:-240px;
  right:-140px;
}

.cta-box::after{
  content:'';

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:180px;
  height:5px;

  border-radius:999px;

  background:#ff2b2b;
}


/* TAG */

.cta-box .section-tag{
  position:relative;
  z-index:2;

  margin-bottom:30px;

  font-size:0.82rem;
  font-weight:700;

  letter-spacing:5px;

  color:#ff2b2b;
}


/* HEADING */

.cta-box h2{
  position:relative;
  z-index:2;

  max-width:720px;

  margin:
  0 auto
  32px;

  font-size:4.6rem;
  line-height:0.95;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  text-align:center;

  text-shadow:
  0 10px 30px rgba(0,0,0,0.35);
}


/* TEXT */

.cta-box p{
  position:relative;
  z-index:2;

  max-width:670px;

  margin:
  0 auto
  48px;

  color:#cfcfcf;

  font-size:1.08rem;
  line-height:2;

  text-align:center;
}


/* BUTTON */

.cta-box .primary-btn{
  position:relative;
  z-index:2;

  display:inline-flex;
  justify-content:center;
  align-items:center;

  min-width:250px;
  min-height:62px;

  padding:
  0 36px;

  border-radius:999px;

  font-size:0.95rem;
  font-weight:700;

  letter-spacing:1px;

  margin:auto;

  box-shadow:
  0 18px 40px rgba(255,43,43,0.28);

  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.cta-box .primary-btn:hover{
  transform:translateY(-5px);

  box-shadow:
  0 24px 55px rgba(255,43,43,0.38);
}


/* MOBILE */

@media(max-width:700px){

  .programs-cta{
    padding:
    0 6%
    100px;
  }

  .cta-box{
    padding:
    65px 30px;

    border-radius:30px;
  }

  .cta-box h2{
    font-size:2.8rem;

    margin-bottom:24px;
  }

  .cta-box p{
    font-size:1rem;

    line-height:1.9;

    margin-bottom:38px;
  }

  .cta-box .primary-btn{
    width:100%;
  }

}
/* =========================================
   PREMIUM MEMBERSHIP PAGE
   ADD THIS TO style.css
========================================= */


/* HERO */

.page-hero{
  min-height:78vh;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:
  190px 7%
  130px;

  position:relative;
  overflow:hidden;

  background:
  linear-gradient(
    rgba(0,0,0,0.78),
    rgba(0,0,0,0.88)
  ),
  url('bg.png');

  background-size:cover;
  background-position:center;
}

.page-hero::before{
  content:'';

  position:absolute;

  width:850px;
  height:850px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.18),
    transparent 70%
  );

  top:-340px;
  right:-220px;
}

.page-hero-content{
  position:relative;
  z-index:2;

  max-width:1050px;

  margin:auto;
}

.page-hero h1{
  font-size:6.2rem;
  line-height:0.92;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  margin-bottom:28px;
}

.hero-subtext{
  max-width:760px;

  margin:auto;

  color:#cfcfcf;

  line-height:2;
  font-size:1.1rem;
}


/* MEMBERSHIP SECTION */

.membership-section{
  padding:
  130px 7%
  60px;
}

.membership-grid{
  width:100%;
  max-width:1450px;

  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:35px;
}


/* CARD */

.membership-card{
  position:relative;

  background:
  linear-gradient(
    180deg,
    #181818,
    #101010
  );

  border-radius:38px;

  padding:
  55px 45px;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.35);

  transition:
  transform 0.45s ease,
  border 0.45s ease,
  box-shadow 0.45s ease;

  overflow:hidden;
}

.membership-card::before{
  content:'';

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:5px;

  background:
  linear-gradient(
    90deg,
    #ff2b2b,
    transparent
  );
}

.membership-card:hover{
  transform:translateY(-12px);

  border-color:
  rgba(255,43,43,0.45);

  box-shadow:
  0 35px 80px rgba(0,0,0,0.5);
}


/* FEATURED */

.featured{
  transform:scale(1.03);

  border:
  1px solid rgba(255,43,43,0.35);
}

.featured:hover{
  transform:
  scale(1.03)
  translateY(-12px);
}

.membership-badge{
  position:absolute;

  top:22px;
  right:22px;

  background:#ff2b2b;
  color:white;

  padding:
  10px 16px;

  border-radius:999px;

  font-size:0.72rem;
  font-weight:700;

  letter-spacing:2px;
  text-transform:uppercase;
}


/* TOP */

.membership-label{
  display:inline-flex;

  padding:
  10px 18px;

  border-radius:999px;

  background:
  rgba(255,43,43,0.12);

  border:
  1px solid rgba(255,43,43,0.35);

  color:#ff4b4b;

  font-size:0.8rem;
  font-weight:700;

  letter-spacing:2px;
  text-transform:uppercase;

  margin-bottom:26px;
}

.membership-card h3{
  font-size:2.7rem;
  line-height:0.95;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  margin-bottom:24px;
}

.membership-price{
  font-size:4rem;
  line-height:1;

  font-family:'Oswald',sans-serif;

  color:#ff2b2b;

  margin-bottom:24px;
}

.membership-price span{
  font-size:1rem;
  color:#bdbdbd;
}

.membership-description{
  color:#cfcfcf;

  line-height:1.9;
  font-size:1rem;

  margin-bottom:35px;
}


/* FEATURES */

.membership-features{
  display:flex;
  flex-direction:column;
  gap:18px;

  margin-bottom:40px;
}

.feature-row{
  padding-bottom:16px;

  border-bottom:
  1px solid rgba(255,255,255,0.08);

  line-height:1.7;
}


/* BUTTON */

.membership-btn{
  width:100%;
  min-height:58px;

  display:flex;
  justify-content:center;
  align-items:center;

  border-radius:999px;

  background:#ff2b2b;
  color:white;

  text-decoration:none;

  font-weight:700;
  letter-spacing:1px;

  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.membership-btn:hover{
  transform:translateY(-4px);

  box-shadow:
  0 18px 40px rgba(255,43,43,0.35);
}


/* INFO SECTION */

.membership-info{
  padding:
  20px 7%
  130px;
}

.membership-info-box{
  max-width:1300px;

  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:30px;
}

.info-card{
  background:#131313;

  border-radius:30px;

  padding:
  45px 35px;

  text-align:center;

  border:
  1px solid rgba(255,255,255,0.08);
}

.info-card h4{
  font-size:2rem;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;

  margin-bottom:18px;
}

.info-card p{
  color:#cfcfcf;

  line-height:1.9;

  margin-bottom:10px;
}


/* CTA */

.membership-cta{
  padding:
  0 7%
  140px;
}


/* MOBILE */

@media(max-width:1150px){

  .membership-grid,
  .membership-info-box{
    grid-template-columns:1fr;
  }

  .featured{
    transform:none;
  }

  .featured:hover{
    transform:translateY(-12px);
  }

  .page-hero h1{
    font-size:4.5rem;
  }

}


@media(max-width:700px){

  .page-hero{
    min-height:65vh;

    padding:
    150px 6%
    90px;
  }

  .page-hero h1{
    font-size:3rem;
  }

  .hero-subtext{
    font-size:1rem;
    line-height:1.9;
  }

  .membership-section{
    padding:
    90px 6%
    40px;
  }

  .membership-grid{
    gap:24px;
  }

  .membership-card{
    padding:
    42px 28px;

    border-radius:28px;
  }

  .membership-card h3{
    font-size:2rem;
  }

  .membership-price{
    font-size:3rem;
  }

  .membership-info{
    padding:
    10px 6%
    90px;
  }

  .membership-info-box{
    gap:20px;
  }

  .info-card{
    border-radius:24px;

    padding:
    35px 25px;
  }

}
/* =========================================
   FEATURED COACH SECTION
   ADD TO style.css
========================================= */

.featured-coach{
  padding:
  140px 7%;

  position:relative;
  overflow:hidden;
}

.featured-coach::before{
  content:'';

  position:absolute;

  width:600px;
  height:600px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,43,43,0.08),
    transparent 70%
  );

  top:-220px;
  left:-180px;
}

.featured-coach-container{
  width:100%;
  max-width:1450px;

  margin:auto;

  display:grid;
  grid-template-columns:1fr 1.1fr;

  gap:80px;
  align-items:center;
}


/* IMAGE */

.featured-coach-image{
  position:relative;
}

.coach-image-wrap{
  position:relative;

  overflow:hidden;

  border-radius:40px;

  background:#111;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 30px 80px rgba(0,0,0,0.45);
}

.coach-image-wrap::before{
  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(255,43,43,0.08),
    transparent
  );

  z-index:2;
}

.coach-image-wrap img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;

  transition:0.6s ease;
}

.coach-image-wrap:hover img{
  transform:scale(1.04);
}


/* CONTENT */

.featured-coach-content{
  max-width:700px;
}

.featured-coach-content h2{
  font-size:5rem;
  line-height:0.92;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  margin-bottom:20px;
}

.coach-role{
  color:#ff2b2b;

  font-size:1rem;
  font-weight:700;

  letter-spacing:2px;
  text-transform:uppercase;

  margin-bottom:30px;
}

.coach-bio{
  color:#cfcfcf;

  line-height:2;
  font-size:1.05rem;

  margin-bottom:24px;

  max-width:650px;
}


/* STATS */

.coach-stats{
  display:flex;
  gap:25px;

  margin-top:45px;
  margin-bottom:45px;

  flex-wrap:wrap;
}

.coach-stat{
  min-width:170px;

  background:#141414;

  border-radius:26px;

  padding:
  28px 26px;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 18px 45px rgba(0,0,0,0.28);
}

.coach-stat h3{
  font-size:2.5rem;

  font-family:'Oswald',sans-serif;

  color:#ff2b2b;

  margin-bottom:8px;
}

.coach-stat span{
  color:#cfcfcf;

  font-size:0.95rem;
  line-height:1.6;
}


/* MOBILE */

@media(max-width:1100px){

  .featured-coach-container{
    grid-template-columns:1fr;

    gap:60px;
  }

  .featured-coach-content{
    max-width:100%;
  }

  .featured-coach-content h2{
    font-size:4rem;
  }

}


@media(max-width:700px){

  .featured-coach{
    padding:
    90px 6%;
  }

  .coach-image-wrap{
    border-radius:28px;
  }

  .featured-coach-content h2{
    font-size:2.8rem;
  }

  .coach-role{
    font-size:0.85rem;
    line-height:1.7;
  }

  .coach-bio{
    font-size:1rem;
    line-height:1.9;
  }

  .coach-stats{
    gap:18px;
  }

  .coach-stat{
    width:100%;
  }

}
/* =========================================
   FACILITY GRID VIDEO + IMAGE SUPPORT
   ADD TO style.css
========================================= */

.facility-grid{
  width:100%;
  max-width:1450px;

  margin:auto;

  padding:
  0 7%
  140px;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:35px;
}

.facility-card{
  position:relative;

  min-height:420px;

  overflow:hidden;

  border-radius:34px;

  background:#111;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.35);

  transition:
  transform 0.45s ease,
  border 0.45s ease,
  box-shadow 0.45s ease;
}

.facility-card:hover{
  transform:translateY(-12px);

  border-color:
  rgba(255,43,43,0.45);

  box-shadow:
  0 35px 80px rgba(0,0,0,0.45);
}

.facility-card img,
.facility-card video{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;

  transition:0.7s ease;
}

.facility-card:hover img,
.facility-card:hover video{
  transform:scale(1.06);
}


/* OVERLAY */

.facility-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.08)
  );

  z-index:1;
}


/* TITLE */

.facility-card h3{
  position:absolute;

  left:35px;
  bottom:30px;

  z-index:2;

  font-size:2.2rem;
  line-height:1;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  max-width:280px;

  text-shadow:
  0 8px 20px rgba(0,0,0,0.5);
}


/* MOBILE */

@media(max-width:700px){

  .facility-grid{
    padding:
    0 6%
    90px;

    gap:24px;
  }

  .facility-card{
    min-height:300px;

    border-radius:26px;
  }

  .facility-card h3{
    left:24px;
    bottom:22px;

    font-size:1.7rem;
  }

}
/* =========================================
   CONTACT PAGE PREMIUM STYLING
   ADD TO style.css
========================================= */

.contact-page{
  padding:
  120px 7%
  140px;
}


/* TOP LAYOUT */

.contact-top{
  width:100%;
  max-width:1450px;

  margin:auto;
  margin-bottom:120px;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:60px;
  align-items:start;
}


/* INTRO */

.contact-intro h2{
  font-size:5rem;
  line-height:0.95;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  margin-bottom:28px;
}

.contact-intro p{
  max-width:620px;

  color:#cfcfcf;

  line-height:2;
  font-size:1.05rem;

  margin-bottom:38px;
}


/* INFO GRID */

.contact-info-box{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:24px;
}

.contact-info-card{
  background:
  linear-gradient(
    180deg,
    #171717,
    #101010
  );

  border-radius:30px;

  padding:
  42px 34px;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.32);

  transition:
  transform 0.35s ease,
  border 0.35s ease;
}

.contact-info-card:hover{
  transform:translateY(-8px);

  border-color:
  rgba(255,43,43,0.4);
}

.contact-info-card span{
  font-size:2rem;

  display:block;

  margin-bottom:20px;
}

.contact-info-card h3{
  font-size:2rem;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;

  margin-bottom:16px;
}

.contact-info-card p{
  color:#cfcfcf;

  line-height:1.9;
}


/* MAP */

.map-wrapper{
  width:100%;
  max-width:1450px;

  margin:auto;
  margin-bottom:120px;
}

.map-header{
  text-align:center;

  margin-bottom:45px;
}

.map-header h2{
  font-size:4.5rem;

  text-transform:uppercase;
  font-family:'Oswald',sans-serif;
}

.map-container{
  overflow:hidden;

  border-radius:38px;

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 30px 80px rgba(0,0,0,0.4);
}

.map-container iframe{
  display:block;
}


/* CTA */

.contact-cta{
  width:100%;
  max-width:1450px;

  margin:auto;
}


/* MOBILE */

@media(max-width:1100px){

  .contact-top{
    grid-template-columns:1fr;

    gap:50px;
  }

  .contact-intro h2{
    font-size:4rem;
  }

}


@media(max-width:700px){

  .contact-page{
    padding:
    90px 6%
    100px;
  }

  .contact-top{
    margin-bottom:80px;
  }

  .contact-intro h2{
    font-size:2.9rem;
  }

  .contact-intro p{
    font-size:1rem;
    line-height:1.9;
  }

  .contact-info-box{
    grid-template-columns:1fr;

    gap:18px;
  }

  .contact-info-card{
    border-radius:24px;

    padding:
    32px 26px;
  }

  .contact-info-card h3{
    font-size:1.6rem;
  }

  .map-wrapper{
    margin-bottom:80px;
  }

  .map-header h2{
    font-size:2.7rem;
  }

  .map-container{
    border-radius:24px;
  }

}
.instagram-link{
  color:white;

  text-decoration:none;

  transition:0.3s ease;
}

.instagram-link:hover{
  color:#ff2b2b;
}
/* =========================================
   CENTER ALL PAGE HERO CONTENT
   ADD / REPLACE IN style.css
========================================= */

.page-hero{
  text-align:center;
}

.page-hero-content{
  width:100%;
  max-width:1100px;

  margin:auto;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}


/* SMALL RED TAG */

.section-tag{
  display:flex;
  justify-content:center;
  align-items:center;

  width:fit-content;

  margin:
  0 auto
  24px;

  padding:
  10px 20px;

  border-radius:999px;

  background:
  rgba(255,43,43,0.1);

  border:
  1px solid rgba(255,43,43,0.25);

  color:#ff4b4b;

  font-size:0.8rem;
  font-weight:700;

  letter-spacing:3px;
  text-transform:uppercase;

  text-align:center;
}


/* BIG PAGE TITLES */

.page-hero h1,
.section-heading h2,
.about-content h2,
.contact-intro h2,
.map-header h2,
.featured-coach-content h2,
.cta-box h2{
  text-align:center;
}


/* HERO SUBTEXT */

.page-hero p,
.hero-subtext{
  text-align:center;

  margin-left:auto;
  margin-right:auto;
}


/* SECTION HEADERS */

.section-heading{
  width:100%;
  max-width:900px;

  margin:
  0 auto
  80px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;
}


/* ABOUT STORY CENTER */

.about-story{
  padding:
  120px 7%
  110px;
}

.about-story .about-content{
  width:100%;
  max-width:950px;

  margin:auto;

  display:flex;
  flex-direction:column;
  align-items:center;

  text-align:center;
}

.about-story .about-content p{
  text-align:center;
}


/* PROGRAMS HERO */

.programs-hero .page-hero-content,
.membership-hero .page-hero-content,
.contact-hero .page-hero-content{
  align-items:center;
}


/* MOBILE */

@media(max-width:700px){

  .section-tag{
    font-size:0.72rem;

    letter-spacing:2px;

    padding:
    9px 16px;

    margin-bottom:20px;
  }

  .section-heading{
    margin-bottom:50px;
  }

}
/* =========================================
   MOBILE NAVBAR / HAMBURGER MENU
   ADD TO style.css
========================================= */


/* HAMBURGER */

.hamburger{
  width:44px;
  height:44px;

  display:none;

  justify-content:center;
  align-items:center;
  flex-direction:column;

  gap:6px;

  cursor:pointer;

  z-index:2000;
}

.hamburger span{
  width:28px;
  height:3px;

  border-radius:999px;

  background:white;

  transition:0.35s ease;
}


/* MOBILE */

@media(max-width:1100px){

  .hamburger{
    display:flex;
  }

  .nav-menu{
    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    height:100vh;

    background:
    rgba(5,5,5,0.98);

    backdrop-filter:blur(18px);

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:32px;

    transition:0.45s ease;

    z-index:1500;
  }

  .nav-menu.active{
    right:0;
  }

  .nav-menu a{
    font-size:1.5rem;

    font-family:'Oswald',sans-serif;

    text-transform:uppercase;

    letter-spacing:2px;
  }


  /* HAMBURGER ANIMATION */

  .hamburger.active span:nth-child(1){
    transform:
    translateY(9px)
    rotate(45deg);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:
    translateY(-9px)
    rotate(-45deg);
  }

}
/* FIX MOBILE HERO TEXT GETTING CUT OFF */

@media(max-width:700px){

  .hero{
    padding-top:140px;

    align-items:center;
  }

  .hero-content{
    padding:
    40px 20px
    20px;
  }

  .mini-title{
    margin-top:25px;

    font-size:0.72rem;
    line-height:2;

    letter-spacing:2px;

    padding:
    0 10px;
  }

}
/* ========================= */
/* MEMBERSHIP PAGE */
/* ========================= */

.membership-section{
  width:100%;
  padding:120px 7%;
  background:
  linear-gradient(to bottom,#070707 0%,#0e0e0e 100%);
  position:relative;
}

.membership-grid{
  max-width:1400px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  align-items:stretch;
}

/* CARD */

.membership-card{
  position:relative;

  background:
  linear-gradient(180deg,
  rgba(22,22,22,.97),
  rgba(10,10,10,.97));

  border:1px solid rgba(255,255,255,.08);

  border-radius:32px;

  overflow:hidden;

  padding:45px 38px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition:.45s ease;

  box-shadow:
  0 15px 40px rgba(0,0,0,.45);
}

.membership-card:hover{
  transform:translateY(-10px);

  border-color:#d61f26;

  box-shadow:
  0 20px 60px rgba(214,31,38,.22);
}

/* FEATURED */

.membership-card.featured{
  border:2px solid #d61f26;

  transform:scale(1.03);

  background:
  linear-gradient(180deg,
  rgba(28,10,10,.98),
  rgba(10,10,10,.98));

  box-shadow:
  0 20px 70px rgba(214,31,38,.25);
}

.membership-card.featured:hover{
  transform:translateY(-12px) scale(1.04);
}

.membership-badge{
  position:absolute;
  top:20px;
  right:20px;

  background:#d61f26;
  color:#fff;

  padding:10px 18px;

  border-radius:999px;

  font-size:.8rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;

  font-family:'Inter',sans-serif;

  box-shadow:
  0 10px 25px rgba(214,31,38,.4);
}

/* TOP */

.membership-top{
  text-align:center;
}

.membership-label{
  display:inline-block;

  margin-bottom:18px;

  padding:9px 16px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  border-radius:999px;

  color:#d61f26;

  font-size:.82rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;

  font-family:'Inter',sans-serif;
}

.membership-top h3{
  color:#fff;

  font-size:2.2rem;
  line-height:1.1;

  margin-bottom:20px;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:1px;
}

.membership-price{
  font-size:4rem;
  font-weight:700;
  color:#fff;

  margin-bottom:22px;

  font-family:'Oswald',sans-serif;
  line-height:1;
}

.membership-price span{
  font-size:1rem;
  color:#999;
  font-family:'Inter',sans-serif;
  font-weight:500;
}

.membership-description{
  color:#b9b9b9;

  font-size:1rem;
  line-height:1.8;

  max-width:320px;
  margin:auto auto 38px;

  font-family:'Inter',sans-serif;
}

/* FEATURES */

.membership-features{
  display:flex;
  flex-direction:column;
  gap:16px;

  margin-bottom:40px;
}

.feature-row{
  display:flex;
  align-items:center;

  padding:16px 18px;

  background:
  rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);

  border-radius:18px;

  color:#f1f1f1;

  font-size:.97rem;
  line-height:1.5;

  font-family:'Inter',sans-serif;

  transition:.3s ease;
}

.feature-row:hover{
  background:
  rgba(214,31,38,.08);

  border-color:
  rgba(214,31,38,.25);

  transform:translateX(4px);
}

/* BUTTON */

.membership-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:18px 22px;

  background:#d61f26;

  color:#fff;
  text-decoration:none;

  border-radius:18px;

  font-size:1rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;

  font-family:'Inter',sans-serif;

  transition:.35s ease;

  box-shadow:
  0 12px 30px rgba(214,31,38,.28);
}

.membership-btn:hover{
  transform:translateY(-3px);

  background:#ff2f37;

  box-shadow:
  0 16px 35px rgba(214,31,38,.45);
}

/* INFO SECTION */

.membership-info{
  padding:40px 7% 110px;
  background:#0b0b0b;
}

.membership-info-box{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.info-card{
  background:
  linear-gradient(180deg,
  rgba(20,20,20,.98),
  rgba(12,12,12,.98));

  border:1px solid rgba(255,255,255,.07);

  border-radius:28px;

  padding:40px 35px;

  text-align:center;

  transition:.35s ease;
}

.info-card:hover{
  transform:translateY(-8px);

  border-color:#d61f26;

  box-shadow:
  0 18px 45px rgba(214,31,38,.16);
}

.info-card h4{
  color:#fff;

  font-size:1.7rem;

  margin-bottom:18px;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.info-card p{
  color:#b7b7b7;

  font-size:1rem;
  line-height:1.9;

  font-family:'Inter',sans-serif;
}

/* CTA */

.membership-cta{
  padding:0 7% 130px;
  background:#0b0b0b;
}

.cta-box{
  max-width:1050px;
  margin:auto;

  padding:85px 60px;

  border-radius:36px;

  text-align:center;

  background:
  linear-gradient(135deg,
  rgba(214,31,38,.16),
  rgba(10,10,10,.98));

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
  0 25px 60px rgba(0,0,0,.45);
}

.cta-box .section-tag{
  margin-bottom:20px;
}

.cta-box h2{
  color:#fff;

  font-size:4rem;
  line-height:1.1;

  margin-bottom:24px;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.cta-box p{
  color:#c5c5c5;

  font-size:1.1rem;
  line-height:1.9;

  max-width:720px;
  margin:0 auto 38px;

  font-family:'Inter',sans-serif;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .membership-grid{
    grid-template-columns:1fr;
  }

  .membership-card.featured{
    transform:none;
  }

  .membership-card.featured:hover{
    transform:translateY(-10px);
  }

  .membership-info-box{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .membership-section{
    padding:90px 5%;
  }

  .membership-card{
    padding:38px 24px;
    border-radius:26px;
  }

  .membership-top h3{
    font-size:1.9rem;
  }

  .membership-price{
    font-size:3.2rem;
  }

  .membership-description{
    font-size:.96rem;
  }

  .feature-row{
    font-size:.93rem;
    padding:15px 16px;
  }

  .info-card{
    padding:34px 24px;
  }

  .cta-box{
    padding:60px 28px;
    border-radius:28px;
  }

  .cta-box h2{
    font-size:2.5rem;
  }

  .cta-box p{
    font-size:1rem;
  }

}

@media(max-width:480px){

  .membership-top h3{
    font-size:1.7rem;
  }

  .membership-price{
    font-size:2.8rem;
  }

  .membership-btn{
    padding:16px;
    font-size:.92rem;
  }

  .cta-box h2{
    font-size:2.1rem;
  }

}
/* ========================= */
/* MEMBERSHIP PAGE */
/* ========================= */

.membership-section{
  padding:120px 7%;
  background:
  linear-gradient(to bottom,#080808,#0d0d0d);
}

.section-subtext{
  max-width:760px;
  margin:20px auto 0;

  color:#bdbdbd;
  line-height:1.9;
  font-size:1.05rem;
  text-align:center;
}

/* GRID */

.membership-grid{
  max-width:1400px;
  margin:70px auto 0;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* CARD */

.membership-card{
  position:relative;

  background:
  linear-gradient(180deg,
  rgba(22,22,22,.98),
  rgba(10,10,10,.98));

  border:1px solid rgba(255,255,255,.07);

  border-radius:34px;

  padding:45px 38px;

  overflow:hidden;

  transition:.4s ease;

  box-shadow:
  0 15px 40px rgba(0,0,0,.45);
}

.membership-card:hover{
  transform:translateY(-10px);

  border-color:#d61f26;

  box-shadow:
  0 20px 60px rgba(214,31,38,.18);
}

/* FEATURED */

.membership-card.featured{
  border:2px solid #d61f26;

  transform:scale(1.03);

  box-shadow:
  0 25px 70px rgba(214,31,38,.22);
}

.membership-card.featured:hover{
  transform:translateY(-10px) scale(1.04);
}

.membership-badge{
  position:absolute;
  top:20px;
  right:20px;

  background:#d61f26;
  color:#fff;

  padding:10px 18px;

  border-radius:999px;

  font-size:.78rem;
  font-weight:700;
  letter-spacing:1px;

  font-family:'Inter',sans-serif;
}

/* TOP */

.membership-top{
  text-align:center;
}

.membership-label{
  display:inline-block;

  padding:10px 18px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  border-radius:999px;

  color:#d61f26;

  font-size:.8rem;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:20px;
}

.membership-top h3{
  font-size:2.2rem;
  line-height:1.1;

  margin-bottom:20px;

  color:#fff;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.membership-price{
  font-size:4rem;
  line-height:1;

  margin-bottom:20px;

  color:#fff;

  font-family:'Oswald',sans-serif;
}

.membership-price span{
  font-size:1rem;
  color:#999;

  font-family:'Inter',sans-serif;
}

.membership-description{
  color:#bdbdbd;

  line-height:1.9;
  font-size:1rem;

  max-width:320px;
  margin:auto auto 35px;
}

/* FEATURES */

.membership-features{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.feature-row{
  padding:16px 18px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);

  border-radius:18px;

  color:#efefef;

  font-size:.96rem;
  line-height:1.6;

  transition:.3s ease;
}

.feature-row:hover{
  border-color:rgba(214,31,38,.3);

  background:
  rgba(214,31,38,.06);

  transform:translateX(4px);
}

.membership-note{
  margin-top:28px;

  text-align:center;

  color:#8f8f8f;

  font-size:.92rem;

  line-height:1.7;
}

/* ========================= */
/* TRAINING SECTIONS */
/* ========================= */

.training-section{
  padding:0 7% 90px;
  background:#0d0d0d;
}

.training-box{
  max-width:1350px;
  margin:auto;

  background:
  linear-gradient(180deg,
  rgba(20,20,20,.98),
  rgba(10,10,10,.98));

  border:1px solid rgba(255,255,255,.07);

  border-radius:34px;

  padding:70px 60px;

  text-align:center;

  box-shadow:
  0 18px 50px rgba(0,0,0,.45);
}

.training-box h2{
  font-size:4rem;
  line-height:1.05;

  margin-bottom:22px;

  color:#fff;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.training-price{
  font-size:4rem;

  margin-bottom:25px;

  color:#d61f26;

  font-family:'Oswald',sans-serif;
}

.training-description{
  max-width:900px;
  margin:0 auto 20px;

  color:#c2c2c2;

  line-height:1.9;
  font-size:1.05rem;
}

/* SESSION GRID */

.session-grid{
  margin-top:55px;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.session-card{
  background:
  linear-gradient(180deg,
  rgba(28,28,28,.98),
  rgba(15,15,15,.98));

  border:1px solid rgba(255,255,255,.06);

  border-radius:26px;

  padding:40px 25px;

  transition:.35s ease;
}

.session-card:hover{
  transform:translateY(-8px);

  border-color:#d61f26;

  box-shadow:
  0 18px 45px rgba(214,31,38,.16);
}

.session-card h4{
  font-size:2rem;

  margin-bottom:10px;

  color:#fff;

  font-family:'Oswald',sans-serif;
}

.session-card p{
  color:#d61f26;

  margin-bottom:20px;

  font-size:1rem;
  font-weight:700;
  letter-spacing:1px;
}

.session-card span{
  font-size:2.5rem;

  color:#fff;

  font-family:'Oswald',sans-serif;
}

/* ========================= */
/* MEMBERSHIP INFO */
/* ========================= */

.membership-info{
  padding:20px 7% 120px;
  background:#0d0d0d;
}

.membership-info-box{
  max-width:1350px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.info-card{
  background:
  linear-gradient(180deg,
  rgba(20,20,20,.98),
  rgba(10,10,10,.98));

  border:1px solid rgba(255,255,255,.06);

  border-radius:30px;

  padding:45px 35px;

  text-align:center;

  transition:.35s ease;
}

.info-card:hover{
  transform:translateY(-8px);

  border-color:#d61f26;
}

.info-card h4{
  font-size:1.9rem;

  margin-bottom:18px;

  color:#fff;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.info-card p{
  color:#bdbdbd;

  line-height:1.9;
  font-size:1rem;

  margin-bottom:12px;
}

/* ========================= */
/* CTA */
/* ========================= */

.membership-cta{
  padding:0 7% 130px;
  background:#0d0d0d;
}

.cta-box{
  max-width:1100px;
  margin:auto;

  padding:85px 60px;

  border-radius:38px;

  text-align:center;

  background:
  linear-gradient(135deg,
  rgba(214,31,38,.18),
  rgba(10,10,10,.98));

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
  0 25px 70px rgba(0,0,0,.45);
}

.cta-box h2{
  font-size:4rem;
  line-height:1.05;

  margin-bottom:24px;

  color:#fff;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.cta-box p{
  max-width:700px;
  margin:0 auto 38px;

  color:#c7c7c7;

  line-height:1.9;
  font-size:1.05rem;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1100px){

  .membership-grid,
  .membership-info-box,
  .session-grid{
    grid-template-columns:1fr;
  }

  .membership-card.featured{
    transform:none;
  }

  .membership-card.featured:hover{
    transform:translateY(-10px);
  }

}

@media(max-width:768px){

  .membership-section{
    padding:90px 5%;
  }

  .training-section,
  .membership-info,
  .membership-cta{
    padding-left:5%;
    padding-right:5%;
  }

  .membership-card{
    padding:40px 26px;
  }

  .membership-top h3{
    font-size:1.9rem;
  }

  .membership-price{
    font-size:3.2rem;
  }

  .training-box{
    padding:55px 25px;
  }

  .training-box h2{
    font-size:2.6rem;
  }

  .training-price{
    font-size:3rem;
  }

  .session-card{
    padding:35px 20px;
  }

  .cta-box{
    padding:60px 25px;
  }

  .cta-box h2{
    font-size:2.6rem;
  }

}

@media(max-width:480px){

  .membership-top h3{
    font-size:1.7rem;
  }

  .membership-price{
    font-size:2.8rem;
  }

  .training-box h2,
  .cta-box h2{
    font-size:2.1rem;
  }

  .session-card span{
    font-size:2rem;
  }

}
/* ========================= */
/* FACILITY GRID IMPROVEMENTS */
/* ========================= */

.facility-grid{
  width:100%;
  max-width:1400px;
  margin:auto;

  padding:40px 7% 140px;

  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

.facility-card{
  position:relative;
  overflow:hidden;

  border-radius:30px;

  min-height:420px;

  background:#141414;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.45);

  transition:0.45s ease;
}

.facility-card:hover{
  transform:translateY(-10px);
  border-color:#ff2b2b;
}


/* IMAGES + VIDEOS */

.facility-card img,
.facility-card video{
  width:100%;
  height:100%;

  object-fit:cover;

  position:absolute;
  inset:0;

  /* THIS LIGHTENS EVERYTHING */
  filter:
  brightness(1.50)
  contrast(1)
  saturate(0.75);

  transition:0.7s ease;
}

.facility-card:hover img,
.facility-card:hover video{
  transform:scale(1.06);

  filter:
  brightness(1.25)
  contrast(1.08)
  saturate(1.08);
}


/* OVERLAY */

.facility-overlay{
  position:absolute;
  inset:0;

  /* LIGHTER OVERLAY SO PEOPLE CAN SEE */
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.05)
  );

  z-index:2;
}


/* TEXT */

.facility-card h3{
  position:absolute;
  left:35px;
  bottom:30px;

  z-index:3;

  font-size:2.3rem;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:1px;

  color:white;

  text-shadow:
  0 4px 18px rgba(0,0,0,0.7);
}


/* STORY SECTION */

.about-story{
  padding:120px 7% 70px;
}

.about-story .about-content{
  width:100%;
  max-width:950px;

  margin:auto;
  text-align:center;
}

.about-story h2{
  font-size:4rem;
  line-height:1;

  margin-bottom:30px;

  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}

.about-story p{
  color:#d2d2d2;

  font-size:1.08rem;
  line-height:2;

  margin-bottom:24px;
}


/* MOBILE */

@media(max-width:1000px){

  .facility-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .facility-grid{
    padding:30px 5% 90px;
    gap:24px;
  }

  .facility-card{
    min-height:320px;
    border-radius:24px;
  }

  .facility-card h3{
    left:24px;
    bottom:22px;

    font-size:1.7rem;
  }

  .about-story{
    padding:90px 6% 50px;
  }

  .about-story h2{
    font-size:2.7rem;
  }

  .about-story p{
    font-size:1rem;
    line-height:1.9;
  }

}
/* SAUNA CARD DARKER */

.sauna-card video{
  filter: brightness(0.95);
}

.sauna-card .facility-overlay{
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.78),
    rgba(0,0,0,0.22)
  );
}