body {
	font-family:sans-serif;
	background-color: #121212;
  color: #f0f0f0;

	}

.video-text-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background-color: #1e1e1e;
  border-color: #333;
  color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.background-video {
  height: 320px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.video-text-wrapper .text-content {
  flex: 1;
  min-width: 250px;
}

.instructor-card {
  display: inline-block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.8); /* semi-transparent dark */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.instructor-card img {
  width: 30%;
  transition: all 0.3s ease;
}

.instructor-card .caption {
  margin-top: 8px;
  font-size: 16px;
}

/* Enlarged and centered state */
.instructor-card.enlarged {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #1e1e1e;
  color: #f0f0f0;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  padding: 24px;
}

.instructor-card.enlarged img {
  width: 80%;
}

.instructor-card.enlarged .caption {
  font-size: 20px;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap; /* Makes it responsive */
}

.thumbnail {
  width: 30%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Enlarged image styling */
.thumbnail.enlarged {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

div.text
{
	text-align:center;
	font-size: 1.1rem;
  line-height: 1.6;
}

.location-box {
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  background-color: #1e1e1e;
  color: #f0f0f0;
  max-width: 500px;
  margin: 40px auto;
}

.location-box img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.class-pack-pricing {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  font-family: sans-serif;
}

.class-pack-pricing h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.75rem;
  color: #90caf9;
}

.class-pack-pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.class-pack-pricing li {
  padding: 8px 0;
  border-bottom: 1px dotted #444;
  font-size: 1.3rem;
}

.class-pack-pricing .expiration {
  text-align: center;
  font-size: 1.2rem;
  color: #f0f0f0;
}


.social-links {
  text-align: center;
  margin-top: 20px;
}

.social-links .fa {
  padding: 16px;
  font-size: 24px;
  width: 48px;
  text-align: center;
  text-decoration: none;
  margin: 0 10px;
  border-radius: 50%;
  color: white;
  transition: opacity 0.3s ease;
}

.fa-facebook {
  background: #3B5998;
}

.fa-instagram {
  background: #E1306C;
}

.fa:hover {
  opacity: 0.8;
}

.floating-nav {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
}

.nav-toggle {
  background: #333;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle svg {
  stroke: #fff;
  width: 30px;
  height: 30px;
}

.nav-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ccc;
  padding: 16px;
  position: absolute;
  top: 80px;
  right: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 260px;
}

.nav-item {
  margin: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 18px;
}

/* Responsive tweaks for mobile */
@media screen and (max-width: 767px) {
  .floating-nav {
    top: 20px;
    right: 20px;
  }

  .nav-menu {
    width: 100;
    right: 0;
    top: 80px;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
  }

  .nav-item {
    font-size: 20px;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }

  .nav-toggle {
    padding: 18px;
  }

  .nav-toggle svg {
    width: 36px;
    height: 36px;
  }
}

.location-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 600px;
}

.location-box {
  text-align: center;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 16px;
  background-color: #1e1e1e;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease;
}

.location-box img {
  width: 100%;
  max-width: 575px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

.location-box p {
  margin-top: 12px;
  font-size: 16px;
  color: #f0f0f0;
}

.arrow {
  font-size: 24px;
  background: none;
  border: none;
  color: #f0f0f0;
  cursor: pointer;
  padding: 8px;
  user-select: none;
  transition: color 0.3s ease;
}

.arrow:hover {
  color: #90caf9; /* Soft blue hover */
}

.schedule {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

div.centered {
  text-align: center;
  padding-top: 20px;
}

.business-wrapper {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-top: 8px;
  text-align: center;
  font-size: 1.15rem;
  
}
.business-wrapper img {
  max-width: 600px;
  border-radius: 6px;
}

.schedule table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.schedule th,
.schedule td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.schedule td {
	color: black;
}

.schedule .day, div.business
{
	font-weight:600;
}

.dotted-underline {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .schedule table,
  .schedule thead,
  .schedule tbody,
  .schedule th,
  .schedule td,
  .schedule tr {
    display: block;
    width: 100%;
  }

  .schedule tr {
    margin-bottom: 18px;
    border-bottom: 2px solid #eee;
  }

  .schedule td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .schedule td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }
}

.about-936 {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 32px;
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto;
  font-family: sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-936 h2 {
  text-align: center;
  color: #90caf9;
  margin-bottom: 24px;
}

.about-936 .hashtag {
  color: #90caf9;
  font-weight: bold;
}