/* =================== GENERAL =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #f2f2f2;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
/* Base style for plain links */
.plain-link {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  display: inline;
  line-height: 1.4;

  /* Mobile Safari fix */
  -webkit-text-decoration-skip: objects;
}
/* Remove underline and color change on all states */
.plain-link:link,
.plain-link:visited,
.plain-link:hover,
.plain-link:active,
.plain-link:focus {
  color: #000;
  text-decoration: none;
  outline: none;
}






/* =================== ANNOUNCEMENT BAR =================== */
.top-bar {
  width: 100%;
  background-color: #90c558;
  color: white;
  text-align: center;
  font-size: clamp(12px, 2vw, 12px);
  font-weight: 500;
  height: 45px;
  line-height: 48px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  overflow: hidden;
  padding: 0 16px; /* add breathing room on edges */
  box-sizing: border-box;
}
/* Status wrapper (e.g. "Open Now — until 8:30 PM") */
.open-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: inherit;
  white-space: nowrap;
}
/* Label (e.g. "Open Now") */
.status-label {
  font-weight: bold;
}
/* Time info (e.g. "— until 8:30 PM") */
.status-time {
  font-weight: normal;
}






/* =================== NAVBAR (CLEAN) =================== */
.navbar {
  position: fixed;
  top: 45px;                /* sits under the green hours bar */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(10px, 4vw, 20px) clamp(20px, 5vw, 50px);
  background: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 99999;
  transition: padding .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.navbar.scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 30px);
  width: 100%;
  max-width: 1300px;
}

.nav-left, .nav-right { flex: 1; display: flex; align-items: center; }
.nav-left  { justify-content: flex-start; min-width: 150px; }
.nav-right { justify-content: flex-end;  }

.nav-logo {
  height: clamp(50px, 8vh, 60px);
  min-height: 60px;
  width: auto; max-width: 100%; object-fit: contain; flex-shrink: 0;
}

/* ---------- Desktop links ---------- */
.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(10px, 2vw, 40px);
  white-space: nowrap;
  margin: 0; padding: 0;
  position: relative;
  overflow: visible;       /* allow dropdown to extend outside */
  text-overflow: initial;
}

.nav-links > li { position: relative; z-index: 10001; }

.nav-links a {
  position: relative;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

/* ---------- Right side buttons/icons ---------- */
.contact-btn .contact {
  background:#fff; color:#000;
  padding: 8px 18px; border-radius: 6px;
  font-weight: 700; font-size: 15px; text-decoration: none;
}
.contact-btn:hover { transform: scale(1.07); }

.user-icon {
  color:#fff; text-decoration:none; display:flex; align-items:center;
  font-size: 26px; margin-left: 20px; margin-right: 15px;
}
.user-icon:hover { transform: scale(1.2); }

/* =================== DROPDOWNS (DESKTOP) =================== */
.dropdown .chevron { font-size: .7rem; margin-left: 6px; }

.submenu,
.submenu li { list-style: none; }         /* remove bullets */
.submenu { margin: 0; padding: 10px 0; }  /* reset UL defaults */

.submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 10002;
}
.submenu li a {
  display: block; padding: 10px 16px; color: #fff; white-space: nowrap;
}
.submenu li a:hover { background: rgba(255,255,255,.06); }

/* Show on hover or when JS toggles .open */
.dropdown:hover > .submenu,
.dropdown.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}









/* =================== MOBILE NAV =================== */
.hamburger {
  display: none;   /* hide by default */
}

/* Desktop default: don't render the mobile sheet */
.mobile-menu {
  display: none;
}

@media (max-width: 1100px) {
  /* hide desktop bits, show hamburger */
  .nav-links, .contact-btn { display: none !important; }
  .hamburger { display:block; font-size:26px; color:#fff; cursor:pointer; z-index:10003; }

  /* sheet-style menu */
  .mobile-menu {
    position: fixed; top: 60px; left: 0;
    width: 100vw; height: 100vh;
    padding: 90px 28px 40px;
    display: flex; flex-direction: column; overflow-y: auto;
    transform: translateY(-100%); transition: transform .3s ease; pointer-events: none;
    background: rgba(30,30,30,.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
  }
  .mobile-menu.show { transform: translateY(0); pointer-events: auto; }

  /* ACCORDION HEADERS (only items with dropdowns) */
  .mobile-accordion {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    background: none; border: 0; color: #fff; font: inherit; text-align: left;
    padding: 14px 0; cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,.15);
    font-weight: 700; font-size: 15px;
  }
  .mobile-accordion i { transition: transform .25s ease; }
  .mobile-accordion[aria-expanded="true"] i { transform: rotate(180deg); }

  /* PANELS (children) */
  .mobile-panel {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .mobile-panel.open { max-height: 400px; opacity: 1; }

  .mobile-panel a {
    display: block; text-decoration: none;
    padding: 12px 0 12px 20px;       /* indent */
    font-size: 14px; font-weight: 500;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-panel a:hover { color: #90c558; background: rgba(255,255,255,.05); }

  /* SINGLE-LEVEL LINKS (no dropdown) */
  .mobile-link {
    display: block; text-decoration: none;
    padding: 16px 0;
    font-size: 15px; font-weight: 700; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  /* SUPPORT LINKS (icon rows) */
  .support-link {
    padding: 14px 0; display: flex; align-items: center; gap: 10px;
    color: #fff; text-decoration: none; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .icon-label { display:flex; align-items:center; gap:10px; font-size:15px; }
  .icon-label i { font-size: 18px; }

  /* REGISTER BUTTON */
  .mobile-register-wrapper { display:flex; margin-top:16px; }
  .mobile-register-btn {
    background:#fff; color:#000 !important; font-weight:700; font-size:15px;
    padding:10px 24px; border-radius:10px; text-decoration:none;
  }
  .mobile-register-btn:hover { transform: scale(1.07); }
}










/* =================== FULL WIDTH IMAGE =================== */
.fullwidth-image {
  width: 100%;
  height: 500px;              /* fixed height */
  background-size: cover;     /* fill without stretching */
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Optional overlay + text, same everywhere */
.fullwidth-image .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); /* darken for readability */
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullwidth-image h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem); /* scales on screen size */
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .fullwidth-image {
    height: 300px
  }
}









/* =================== HEADER =================== */
header.main-header {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 5px solid #90c558;
}
/* Smaller header */
header.small-header {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 5px solid #90c558;
}
header.main-header,
header.small-header {
  margin-top: 140px; /* pushes the whole header down */
}
/* Dark overlay on top of all headers */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
  pointer-events: none;   /* let clicks pass through */
}
/* Content inside header */
.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
  z-index: 2;
}
/* Header title styling */
.header-title {
  font-size: clamp(50px, 4vw, 70px);
  color: white;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-logo {
  max-width: 400px;
  height: auto;
  margin-bottom: 60px;
  padding-top: 20px;
}
/* view schedule button */
.btn.schedule {
  background-color: #90c558;
  color: #fff;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* view schedule hover */
.btn.schedule:hover {
  transform: scale(1.07);
}











/* =================== MAP WRAPPER =================== */
.map-wrapper {
  position: relative;
  height: auto;
}










/* =================== MAP STYLING =================== */
#map {
  height: 600px;
  width: 100%;
  position: relative;
  z-index: 0;
}

.map-overlay-card {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-19%, -50%);
  background-color: white;
  padding: 24px;
  border-radius: 14px;
  width: 100%;
  max-width: 348px;
  font-family: 'Montserrat', sans-serif;
  color: #000;
  z-index: 999;
}

/* Titles */
.map-overlay-card h3,
.map-overlay-card h4 {
  font-size: 20px;
  margin-bottom: 1px;
  font-weight: 700;
}
.map-overlay-card h4 {
  margin-top: -10px;
}

/* Address, phone, email, hours */
.map-phone,
.map-email,
.map-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.4;
}

.map-address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.4;
}

/* Hours grid layout */
.map-hours-grid {
  display: flex;
  gap: 10px;
  font-size: 15px;
}

/* Icon styles */
.map-overlay-card i {
  color: #555;
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Divider */
.map-overlay-card hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
}

/* PHONE + EMAIL links (unstyled text but clickable) */
.map-overlay-card .plain-link {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  display: inline;
}
.map-overlay-card .plain-link:hover,
.map-overlay-card .plain-link:focus,
.map-overlay-card .plain-link:active {
  color: #000;
  text-decoration: none;
}

/* GET DIRECTIONS button */
.map-overlay-card a.get-directions-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #90c558;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  font-size: 15px;
}
.map-overlay-card a.get-directions-button:hover {
  transform: scale(1.07);
}

/* Leaflet attribution override */
.leaflet-control-attribution {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 7px !important;
  color: #87919e !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 10px 10px 10px !important;
  font-weight: bold !important;
}
.leaflet-control-attribution a {
  color: #87919e !important;
  text-decoration: none !important;
  font-weight: bold !important;
}
.leaflet-control-attribution a:hover {
  color: #87919e !important;
}











/* =================== WELCOME SECTION =================== */

.welcome-section {
  text-align: center;
  padding: 50px 20px 50px 20px;
  background-color: white;
  color: #444;
}
.welcome-logo {
  width: 70px;
  max-width: 25vw;
  margin: auto;
  margin-bottom: 20px;
}
.welcome-title {
  font-size: clamp(20px, 6vw, 35px);
  font-family: 'Montserrat', sans-serif;
  color: #90c558; /* blue tone, adjust if needed */
  font-weight: 900;
  margin: 0;
  margin-bottom: 10px;
}
.welcome-subtitle {
  font-size: clamp(12px, 3vw, 15px);
  font-family: 'Montserrat', sans-serif;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
}








/* =================== INFOBLOCKS =================== */
.info-section {
  background-color: #fff;
  padding: 0px 20px 60px 20px;
}
.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.info-card {
  background-color: #f2f2f2;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
}
.icon-top {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #68a357;
}
.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}









/* =================== REVIEWS =================== */

.review-section {
  background-color: #fff;
  padding: 20px 20px 80px;
}
.review-container {
  display: flex;
  flex-wrap: wrap; /* let them wrap on smaller screens */
  justify-content: center;
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}
.review-card {
  background-color: #f2f2f2;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 280px; /* flexible layout */
  max-width: 300px;
}
/* Responsive layout for mobile stacking */
@media (max-width: 1100px) {
  .review-container {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 100%;
    max-width: 90%;
    padding: 20px;
  }
}
.review-card h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0;
}
.stars {
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
}







/* =================== COME TRY =================== */
.cometry-section {
  text-align: center;
  padding: 0px 20px 80px 20px;
  background-color: white;
  color: #444;
}
.cometry-logo {
  width: 70px;
  max-width: 25vw;
  margin: auto;
  margin-bottom: 20px;
}
.cometry-icon {
  font-size: 40px;
  margin: auto;
  color: #90c558;
  margin-bottom: 10px;
}
.cometry-title {
  font-size: clamp(20px, 6vw, 35px);
  font-family: 'Montserrat', sans-serif;
  color: #90c558;
  font-weight: 900;
  margin: 0 0 10px;
  white-space: nowrap;
}
.cometry-subtitle {
  font-size: clamp(12px, 3vw, 15px);
  font-family: 'Montserrat', sans-serif;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #000;
}
.cometry-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* keep your register-style button here */
.btn.schedule {
  background-color: #90c558;
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}
.btn.schedule:hover {
  transform: scale(1.07);
}
@media (max-width: 768px) {
  .cometry-subtitle {
    max-width: 90%;
  }
}




/* =================== GET STARTED =================== */
.getstarted-section {
  text-align: center;
  padding: 60px 20px 80px 20px;
  background-color: white;
  color: #444;
}
.getstarted-logo {
  width: 70px;
  max-width: 25vw;
  margin: auto;
  margin-bottom: 20px;
}
.getstarted-icon {
  font-size: 40px;
  margin: auto;
  color: #90c558;
  margin-bottom: 10px;
}
.getstarted-title {
  font-size: clamp(20px, 6vw, 35px);
  font-family: 'Montserrat', sans-serif;
  color: #90c558;
  font-weight: 900;
  margin: 0 0 10px;
  white-space: nowrap;
}
.getstarted-subtitle {
  font-size: clamp(12px, 3vw, 15px);
  font-family: 'Montserrat', sans-serif;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #000;
}
.getstarted-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* keep your register-style button here */
.btn.schedule {
  background-color: #90c558;
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}
.btn.schedule:hover {
  transform: scale(1.07);
}
@media (max-width: 768px) {
  .getstarted-subtitle {
    max-width: 90%;
  }
}









/* ================ EXPERIENCE ROW (3-UP) ================ */
.experience-row {
  background: #fff;
  padding: 0px 20px 100px;
}

.experience-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card {
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 25px;           
  color: #90c558;            
  margin-bottom: 14px;
}

.exp-card p {
  max-width: 360px;
  color: #000;
  line-height: 1.7;
  font-size: 15px;
  margin: 0 auto 20px;
}

.exp-card .btn {
  margin-top: 6px;
  background-color: #90c558;
  border: none;
}

@media (max-width: 1000px) {
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .experience-row {
    padding: 0 15px 0px; /* top right/left bottom */
  }
  .exp-card p {
    max-width: 90%;
  }
}









/* =================== TEXT SECTION WITH EMOJI =================== */
.textsectionwithemoji-section {
  text-align: center;
  padding: 50px 20px 30px 20px;
  background-color: white;
  color: #444;
}
.textsectionwithemoji-logo {
  width: 70px;
  max-width: 25vw;
  margin: auto;
  margin-bottom: 20px;
}
.textsectionwithemoji-icon {
  font-size: 40px;
  margin: auto;
  color: #90c558;
  margin-bottom: 10px;
}
.textsectionwithemoji-title {
  font-size: clamp(20px, 6vw, 35px);
  font-family: 'Montserrat', sans-serif;
  color: #90c558;
  font-weight: 900;
  margin: 0 0 10px;
  white-space: nowrap;
}
.textsectionwithemoji-subtitle {
  font-size: clamp(15px, 3vw, 15px);
  font-family: 'Montserrat', sans-serif;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #000;
}
@media (max-width: 768px) {
  .textsectionwithemoji-subtitle {
    max-width: 90%;
  }
  .cometry-section {padding: 50px 20px 15px 20px;}
}











/* =================== MINDBODY SCHEDULE =================== */
.mindbodyschedule-section {
  padding: 20px 20px 50px 20px;
  display: flex;
  justify-content: center;
  background-color: white !important;
}
.mindbodyschedule-container {
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 1100px) {
  .mindbodyschedule-section {
  padding: 10px 20px;
  }
}

/* =================== MINDBODY CLASSES =================== */
.mindbodyclasses-section {
  padding: 00px 20px 50px 20px;
  display: flex;
  justify-content: center;
  background-color: white !important;
}
.mindbodyclasses-container {
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 1100px) {
  .mindbodyclasses-section {
  padding: 10px 20px;
  }
}

/* =================== MINDBODY REGISTER FORM =================== */
.mindbodyregister-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  background-color: white !important;
}
.mindbodyregister-container {
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 1100px) {
  .mindbodyregister-section {
  padding: 10px 20px;
  }
}

/* =================== MINDBODY SCHEDULE =================== */
.mindbodyappointments-section {
  padding: 0px 20px 50px 20px;
  display: flex;
  justify-content: center;
  background-color: white !important;
}
.mindbodyappointments-container {
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 1100px) {
  .mindbodyappointments-section {
  padding: 10px 20px;
  }
}













/* =================== INSTRUCTORS BIOS SECTION =================== */

.team-section {
  padding: 0px 20px 80px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.team-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  width: 100%;
}
.team-member {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: center; /* centers items horizontally */
  flex-wrap: wrap;
}
.team-member img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  border-radius: 12px;
}
.member-info {
  max-width: 650px;
}
.member-info h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.member-info .titles {
  font-weight: 600;
  color: #68a357;
  margin-bottom: 15px;
  font-size: 15px;
  font-style: italic;
}
.member-info .bio {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  font-style: normal;
}
hr {
  border: none;
  border-top: 1px solid #ccc; /* Light gray */
  margin: 20px 0;
  width: 100%;
}








/* =================== ABOUT US PAGE =================== */

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #222;
}

/* INTRO SECTION */
.about-intro {
  padding: 60px 20px;
  text-align: center;
}

.about-intro .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 18px;
  color: #444;
}

/* IMAGE + TEXT SPLIT */
.about-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about-split .about-image,
.about-split .about-text {
  flex: 1 1 400px;
  padding: 20px;
}

.about-split img {
  width: 100%;
  border-radius: 10px;
}

.about-split h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.about-split p {
  font-size: 16px;
  color: #333;
}

/* THREE COLUMNS */
.about-columns {
  background-color: white;
  padding: 60px 20px;
}

.about-columns .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.about-columns .column {
  flex: 1 1 280px;
  text-align: center;
  max-width: 300px;
}

.about-columns img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.about-columns h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-columns p {
  font-size: 14px;
  color: #444;
}

/* CTA SECTION */
.about-cta {
  padding: 60px 20px;
  background-color: #90c558;
  text-align: center;
}

.about-cta h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-cta .btn {
  background: white;
  color: #333;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.about-cta .btn:hover {
  background: #f4f4f4;
}








/* =================== MEMBERSHIP PRICING =================== */

body {
  margin: 0;
}
.pricing-section {
  display: flex;
  gap: 2rem;
  padding: 0px 20px 0px 20px;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
}
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px; /* adds space before FAQ section */
}
.plan-card {
  background-color: #f2f2f2;
  border-radius: 16px;
  padding: 2rem;
  width: 380px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-card.ultimate {
  background-color: #90c558;
  color: white;
}
.plan-card.all-access {
  background-color: #2f4d0e;
  color: white;
}
.plan-title {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0px;
}
.plan-description {
  font-size: 15px;
  margin-bottom: 20px;
  color: #000;
}
.plan-card.ultimate .plan-description,
.plan-card.all-access .plan-description {
  color: #fff;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-weight: 900;
  margin-bottom: 0;
  text-align: center;
}
.dollar-sign {
  font-size: 40px;
  line-height: 1;
}
.price-amount {
  font-size: 70px;
  line-height: 1;
}
.per-month {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0px;
  font-weight: bold;
  margin-bottom: 0px;
  text-align: center;
  font-size: 12px;
}
.billing-note {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 0;
  margin-bottom: 0;
}
.divider {
  height: 1px;
  width: 100%;
  background-color: #9a9a9a;
  margin: 20px 0;
  opacity: 0.7
}
.plan-card.ultimate .divider,
.plan-card.all-access .divider {
  background-color: #f2f2f2;
}
.features {
  width: 100%;
  text-align: left;
}
.feature {
  display: flex;
  align-items: flex-start;
  margin: 5px 0;
  font-size: 15px;
  gap: 10px;
  line-height: 1.8; /* Makes text spacing more consistent */
}
.feature i {
  font-size: 15px;
  line-height: 1; /* Keeps icon from stretching vertically */
  margin-top: 3px; /* This nudges the checkmark down slightly to align with text top */
}
/* Included */
.feature.included {
  color: inherit;
}
.feature.included i {
  color: var(--accent-color);
}
.plan-card.ultimate .feature.included i,
.plan-card.all-access .feature.included i {
  color: white;
}
/* Excluded */
.feature.excluded {
  color: #d0d0d0;
}
.feature.excluded i {
  color: #bbb;
}
.plan-card.ultimate .feature.excluded,
.plan-card.all-access .feature.excluded {
  color: #bbe193;
}
.plan-card.ultimate .feature.excluded i,
.plan-card.all-access .feature.excluded i {
  color: #bbe193;
}
.cta {
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  border: none;
}
/* BASIC BUTTON */
.basic-btn {
  background-color: #90c558;
  color: white;
}
.basic-btn:hover {
  transform: scale(1.07);
}
/* ULTIMATE BUTTON */
.ultimate-btn {
  background-color: white;
  color: #90c558;
}
.ultimate-btn:hover {
  transform: scale(1.07);
}
/* ALL ACCESS BUTTON */
.allaccess-btn {
  background-color: white;
  color: #2f4d0e;
}
.allaccess-btn:hover {
  transform: scale(1.07);
}
.plan-footnote {
  font-size: 10px;
  color: #000;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 25px;
  line-height: 22px;
  width: 100%;
}
.plan-card.ultimate .plan-footnote,
.plan-card.all-access .plan-footnote {
  color: #fff;
}
/* INFO ICON BUTTON */
.info-icon-container {
  display: inline-block;
  position: relative;
  margin-left: 3px;
  font-size: 8px;
  cursor: pointer;
  color: #888;
}
/* INFO ICON TIP OVERLAY */
.tooltip {
  position: relative;
  display: inline-block;
  width: 100%; /* or auto if it's inside a flex container */
}
.tooltip-text {
  position: absolute;
  bottom: 140%;
  right: 0;
  transform: none;
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 15px;
  max-width: 300px;
  width: max-content;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 10;
  text-align: center;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.info-icon-container:hover .tooltip-text,
.info-icon-container.show-tooltip .tooltip-text {
  opacity: 1;
  visibility: visible;
}








/* =================== FAQ =================== */

.faq-wrapper {
  width: 100%;               /* allow it to fill the page */
  background-color: white;
  padding: 50px 20px 100px 20px;   /* top, sides, bottom */
  display: flex;
  justify-content: center;
}
.faq-section {
  max-width: 850px;
  width: 100%;
}
.faq-section h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px; /* increased from 40px */
  text-align: left;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  border: none;
  background: none;
  color: #111;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  color: #68a357;
}
.faq-spacing {
  margin-bottom: 20px;
}
.faq-icon {
  font-size: 1.5rem;
  margin-left: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 800px; /* adjust as needed */
  padding: 0px 0 30px 0;
}
.faq-answer-inner {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-answer.open .faq-answer-inner {
  opacity: 1;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}






/* =================== TERMS SECTION =================== */
.terms-section {
  background-color: #fff;
  color: #000;
  padding: 100px 20px 100px;
  display: flex;
  justify-content: center;
}
.terms-container {
  max-width: 800px;
  width: 100%;
  font-size: 15px;
  line-height: 1.7;
}
.terms-container h1 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}
.terms-container h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #68a357;
}
.terms-container p {
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .terms-section {
  background-color: #fff;
  color: #000;
  padding: 35px 20px 100px;
  }
}









/* =================== BACK TO TOP BUTTON =================== */
.back-to-top {
  display: inline-block;
  margin-top: 50px;
  padding: 17px 24px;
  background-color: #90c558;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 15px;
  border: none;               /* ensure no default button border */
  cursor: pointer;
  -webkit-appearance: none;   /* reset Safari */
  appearance: none;
}

.back-to-top:hover {
  transform: scale(1.07);
}

.back-to-top-wrapper {
  text-align: center;   /* centers inline-blocks */
}









/* =================== REGISTER PAGE =================== */
html, body { height: 100%; margin: 0; }
body.register-page {
  /* easy knobs */
  --split-left: 60vw;
  --right-pad-x: 50px;
  --right-pad-y: 50px;
  --max-content: 720px;
  --overlay: rgba(0,0,0,.85);
  --divider: #eee;

  background:#fff;
}

/* hide global chrome on this page if you want */
body.register-page .navbar,
body.register-page footer.site-footer { display:none !important; }

/* ========== LEFT (fixed image + overlay) ========== */
.reg-left {
  position: fixed;
  top: 0; left: 0;
  width: var(--split-left);
  height: 100vh;
  background: center / cover no-repeat url("/assets/images/studio/studio1.jpg");
  position: fixed; 
  z-index: 1;            /* sit UNDER the right column */
}
.reg-left::before {
  content:"";
  position:absolute; inset:0;
  background: var(--overlay);  /* dark overlay only on the left */
  z-index: 1;
}

/* Center the logo */
.reg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* above overlay */
}

/* Do NOT stretch: control one dimension only */
.reg-logo img {
  height: 300px;             /* pick a size you like */
  max-width: none !important;
  display: block;
}

/* ========== RIGHT (page scrolls) ========== */
.reg-right {
  margin-left: var(--split-left);
  min-height: 100vh;        /* page scrolls */
  background:#fff;
  border-left: 1px solid var(--divider);
  position: relative; 
  z-index: 2;

  /* NEW */
  display: flex;
  flex-direction: column;
}
.reg-right-inner {
  max-width: var(--max-content);
  padding: var(--right-pad-y) var(--right-pad-x);

  /* NEW: content grows; footer sits at bottom */
  flex: 1;
}

#mindbody-widget {
  padding: 5px 20px 10px 20px;
  border-radius: 10px;
  background:#fff;

  /* NEW: tune this to your form length */
  min-height: 1100px;
}

/* hide footer inside the right column by default */
.reg-right .footer {
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}
.reg-right .footer.visible {
  opacity: 1;
  visibility: visible;
}









/* ===== Mobile ===== */
@media (max-width: 1000px) {
  .reg-left { position: relative; width: 100vw; height: 30vh; z-index: 1; }
  .reg-right { margin-left: 0; min-height: 58vh; }
  .reg-right-inner { padding: 18px 30px; max-width: 640px; margin: 0 auto; }
  #mindbody-widget { 
    padding: 5px 10px 10px 10px;
  }
  
  /* Mobile logo size */
  .reg-logo img {
    height: 150px;
  }
}










/* =================== FOOTER =================== */

.footer {
  background-color: #f2f2f2;
  padding: 60px 20px 60px;
  font-size: 12px;
}
.footer-top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo img {
  width: 110px; /* adjust size as needed */
  height: auto;
  margin-top: 5px;
  margin-right: 5px;
}
.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-col h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 3px;
  color: #111;
  font-size: 12px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 3px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #4b9442;
  font-weight: 500;
}
.footer-col ul li a:hover {
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.footer-social p {
  font-weight: bold;
  color: #111;
  margin: 0;
}
.footer-social .icons {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
}
.footer-social .icons a {
  color: #4b9442;
  text-decoration: none;
}
.footer-social .icons a:hover {
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 10px;
  color: #999;
}








/* =================== MEDIA =================== */

/* map */
@media (max-width: 1100px) {

  .map-wrapper {
    background-color: white;
    padding-bottom: 0px;
    position: relative;
  }
  .map-overlay-card {
    position: relative;        /* <-- CHANGED from absolute */
    bottom: auto;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0 auto;
  }
}
@media (max-width: 1100px) {
  #map {
    height: 250px; /* or 300px if you want it smaller */
  }
}
/* header */
@media (max-width: 1100px) {
  header.main-header {
    height: 300px;
  }
  header.main-header .header-content {
    padding-top: 120px; /* Adjust this if text is still too high/low */
  }
  header.small-header {
    height: 200px;
  }
    .main-logo {
    max-width: 270px;
    margin-bottom: 30px;
  }
  .header-title {
    font-size: clamp(22px, 5vw, 40px);
    white-space: normal; /* Let it wrap on small screens */
  }
  .btn.schedule {
    font-size: 15px;
    padding: 10px 20px;
    margin-bottom: 80px;
  }
}
/* footer */
@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
  .footer-col {
    min-width: 100px;
  }
  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .footer-social .icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
  }
}
/* main infoblocks */
@media (max-width: 1100px) {
  .info-container {
    display: flex !important;           /* force it off grid */
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
  }
  .info-card {
    width: 100%;
    max-width: 90%;                     /* or something like 500px if you want */
    justify-content: center;
}
}
/* team member profiles */
@media (max-width: 1100px) {
  .team-member {
    text-align: center;
    width: 100%;
  }
  .member-info {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .member-info h3,
  .member-info .titles,
  .member-info .bio {
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .review-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .review-card {
    width: 100%;
    max-width: 90%;
    padding: 20px;
    height: auto !important;
    min-height: unset !important;
    flex: unset !important;
  }
  .review-card p {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .welcome-subtitle {
    max-width: 90%;
  }
}


