/******************************* 
VARIABLES
********************************/
:root {
    --main: #234567;
    --second: #FF6B1A;
    --accent: #7ED957;
    --bg1: #F5F7FA;
    --bg2: #23272F;
    --white: #FFFFFF;
}

/******************************* 
GENERAL
********************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    background: var(--bg1);
    color: var(--bg2);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

hr {
    margin: 0;
    border: none;
    border-top: 2px solid var(--bg2);
}

.title {
    /* border-left: 5px solid var(--accent); */
    padding-left: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;
    text-transform: uppercase;
    text-align: center;
}

.title-a {
  color: var(--main);
}

.title-b {
  color: var(--second);
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    color: var(--second);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section {
    background: var(--bg1);
    /* border-radius: 8px; */
    width: 100%;
    margin: 1rem auto;
    box-shadow: 0 2px 8px rgba(35,39,47,0.04);
    padding: 2rem 1.5rem;
}

.alt-section {
    background: var(--bg2);
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.btn-accent {
    background: var(--accent);
    color: var(--bg2);
}

.btn-accent:hover {
    background: var(--second);
    color: var(--white);
}
  
/******************************* 
NAVBAR
********************************/
.navbar {
    background: var(--bg2);
    border-bottom: 2px solid var(--bg2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}
  
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
  
.navbar-brand {
    font-weight: bold;
    color: var(--accent);
    font-size: 2rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
  
.navbar-brand span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: normal;
}
  
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    margin-left: auto;
    top: 12px;
    z-index: 100; 
}
  
.navbar-toggler .bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
  
/* Hamburger animation */
.navbar-toggler.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
  
.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0;
}
  
/* .navbar-nav li {
    margin: 0 0.5rem;
} */
  
.nav-link {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.3s, background 0.3s;
    display: block;
}
  
.nav-link.active,
.nav-link:focus,
.nav-link:hover {
    /* color: var(--main); */
    background: var(--accent);
}

/******************************* 
HERO / CAROUSEL
********************************/
.hero-carousel {
  width: 100vw;
  height: 60vh;
  min-height: 350px;
  max-height: 60vh;
  position: relative;
  background: var(--bg2, #23272F);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.7s;
  top: 0;
  left: 0;
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.carousel-slide img {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.carousel-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  z-index: 2;
}

.carousel-caption h1 {
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px #0008;
}

.carousel-caption p {
  text-shadow: 0 2px 10px #0008;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--second);
  color: var(--white);
  border: black;
  font-size: 2rem;
  padding: 0.3rem 1rem;
  cursor: pointer;
  z-index: 3;
  opacity: 1;
  border-radius: 50%;
  transition: background 0.2s;
  /* margin: 0 2rem; */
}

.carousel-btn:hover {
  background: var(--accent);
}

.carousel-btn.prev { left: 50px; }

.carousel-btn.next { right: 50px; }

.carousel-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.indicator {
  display: block;
  width: 12px;
  height: 12px;
  background: #fff7;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.indicator.active {
  background: var(--second);
  border: 2px solid var(--main);
}


/******************************* 
ABOUT US
********************************/
.about-content {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.card {
  width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.card-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 1rem;
  padding-bottom: 20px;
}

.card-a {
  background: var(--main);
}

.card-b {
  background: var(--bg2);
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/*******************************
CLASSES
********************************/
.schedule-table-container {
  position: relative;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 1100px;
}

.schedule-table-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.schedule-table {
  position: relative;
  width: 100%;
  z-index: 1;
  border: 2px solid var(--white);
}

.schedule-table th,
.schedule-table td {
  background: var(--white);
  color: var(--main);
  text-align: center;
  padding: 18px 10px;
  font-size: 1rem;
  position: relative;
}

.schedule-table th {
  background: var(--second);
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--main);
}

.schedule-table td:first-child,
.schedule-table th:first-child {
  /* background: transparent; */
  color: var(--main);
  font-weight: bold;
  border-right: 2px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.schedule-table td span {
  display: block;
  font-size: 0.95em;
  color: var(--second);
  margin-top: 3px;
}

th:hover,
td:hover {
  background: var(--main);
  color: var(--white);
  transition: background 0.3s, color 0.3s;
}

/********************************
TRAINERS
********************************/
.trainers-goals {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.goal-card {
  width: 290px;
  height: 390px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
}

.goal-front, .goal-back {
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(35,69,103,0.10);
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s;
  padding: 1.5rem;
}

.goal-front img, .goal-back img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.3rem;
  border: 5px solid var(--white);
  box-shadow: 0 2px 12px rgba(25,118,210,0.12);
}

.goal-front h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0;
}

.goal-front {
  background: var(--main);
  color: var(--white);
  text-align: center;
  transform: rotateY(0deg);
}

.goal-back {
  background: var(--bg2);
  color: var(--white);
  transform: rotateY(180deg);
  text-align: center;
}

.goal-back h4 {
  margin: 0.5rem 0 0.3rem 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.goal-back p {
  font-size: 1.05rem;
  margin-top: 0.3rem;
}

.goal-card {
  position: relative;
  cursor: pointer;
}

.goal-card:hover .goal-front,
.goal-card:focus .goal-front {
  transform: rotateY(180deg);
}
.goal-card:hover .goal-back,
.goal-card:focus .goal-back {
  transform: rotateY(0deg);
}

/***********************************
INSTALATIONS
***********************************/
.gallery-desc {
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(35,69,103,0.10);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255,107,26,0.16);
  z-index: 2;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 8px 32px #000a;
  margin-bottom: 1rem;
}

.gallery-modal-caption {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
}

.gallery-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

/************************************
PRICING
************************************/
.pricing-desc {
  text-align: center;
  color: var(--bg2);
  margin-bottom: 5rem;
  font-size: 1.1rem;
}

.pricing-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1100px;
}

.pricing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(35,69,103,0.08);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--second);
  box-shadow: 0 4px 32px rgba(255,107,26,0.13);
  z-index: 2;
  transform: scale(1.04);
}

.plan-title {
  font-size: 1.3rem;
  color: var(--main);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.plan-price {
  font-size: 2.2rem;
  color: var(--second);
  font-weight: bold;
  margin-bottom: 1rem;
}

.plan-price span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--main);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  width: 100%;
}

.plan-features li {
  color: var(--bg2);
  font-size: 1rem;
  margin-bottom: 0.7rem;
  padding-left: 1.2em;
  position: relative;
}

.plan-features li:before {
  content: "✔";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1em;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  font-size: 1.08rem;
}

.pricing-card:hover, .pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/************************************
CONTACT
************************************/
.contact-desc {
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(35,69,103,0.08);
  padding: 2rem 1.5rem;
  width: 350px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group label {
  font-weight: 600;
  color: var(--main);
  margin-bottom: 0.3rem;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.7rem;
  font-size: 1rem;
  background: #f7f7f7;
  color: var(--bg2);
  margin-top: 0.2rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--second);
  outline: none;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(35,69,103,0.08);
  padding: 2rem 1.5rem;
  width: 340px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-info h3 {
  color: var(--second);
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--main);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--second);
}

.contact-social {
  margin: 0.7rem 0;
  display: flex;
  gap: 18px;
}

.contact-social i {
  font-size: 2rem;
  color: var(--main);
  transition: color 0.2s;
}

.contact-social i:hover {
  color: var(--second);
}

.contact-address {
  font-size: 0.98rem;
  color: var(--bg2);
}

/*************************************
MAP
*************************************/
.location-desc {
  text-align: center;
  color: var(--main);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(35,69,103,0.10);
}

/**************************************
FOOTER
*************************************/
.footer {
  background: #23272F;
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
  font-size: 1rem;
  /* margin-top: 3rem; */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent, #FF6B1A);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.footer-logo small {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-desc {
  color: var(--white);
  font-size: 1rem;
  margin-top: 0.3rem;
  max-width: 320px;
}

.footer-links {
  flex: 1 1 160px;
  min-width: 160px;
}

.footer-links h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  flex: 1 1 140px;
  min-width: 140px;
}

.footer-social h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: var(--white);
  font-size: 2rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #bbb;
  font-size: 0.98rem;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

  

  


  

  

  


  




  
