/* -------------------
   Global Styles
-------------------- */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #111;
  color: white;
}

a {
  text-decoration: none;
  color: white;
}

/* -------------------
   Header / Navigation
-------------------- */
.site-header {
  background-color: #000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li a:active {
  color: #7b2ff7; /* a nice blue-purple gradient color */
}


.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle i {
  transition: 0.3s ease;
}

/* -------------------
   Hero Section
-------------------- */
.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20vh;
  backdrop-filter: blur(2px);
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 10px 20px;
  background-color: #f1c40f;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #e67e22;
}

/* -------------------
   Main Content
-------------------- */
.main-content, .about-content {
  padding: 40px;
  text-align: center;
}

/* -------------------
   Footer
-------------------- */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.footer-top {
  margin-bottom: 30px;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  display: inline-block;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fdd835;
}

.footer-nav {
  margin: 10px 0 30px;
}

.footer-nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-nav a:active {
  color: #7b2ff7; /* blue + purple mix */
}


.footer-info p {
  margin: 4px 0;
  font-weight: 300;
}

.footer-info strong {
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.footer-note {
  margin-top: 30px;
  font-size: 13px;
  color: #ccc;
}

.legal-links {
  margin: 10px 0;
}

.legal-links a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-note p:last-child {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* -------------------
   Responsive Styles
-------------------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: max-height 0.4s ease-in-out;
  }

  .main-nav.open {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
    align-items: flex-start;
    gap: 15px;
  }

  .main-nav ul li {
    width: 100%;
    padding: 0 20px;
  }

  .main-nav ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid #222;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo {
    margin-left: 10px;
  }
}
/* Hide checkbox input */
.menu-checkbox {
  display: none;
}

/* Style menu icon */
.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 1001;
}

/* Show icon only on mobile */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  /* Open menu when checkbox is checked */
  .menu-checkbox:checked ~ .main-nav {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
  }

  .main-nav ul li {
    width: 100%;
    padding: 0 20px;
  }

  .main-nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #222;
  }
}


/* -------------------
   Zealers Video Section
-------------------- */
.zealers-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

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

.zealers-video-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw;
  color: white;
  width: 100%;
}

.left-text, .right-text {
  max-width: 600px;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.7;
}

.left-text {
  text-align: left;
  margin-left: 0;
}

.right-text {
  text-align: right;
  margin-left: auto;
}

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

.video-btn {
  border: 1px solid #fff;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  background: transparent;
}

.video-btn:hover {
  background: #fdd835;
  color: #000;
}

/* -------------------
   Responsive Mobile Fix
-------------------- */
@media (max-width: 768px) {
  .zealers-video-section {
    min-height: 100vh;
    height: auto;
    padding-top: 80px; /* creates space below fixed header */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .zealers-video-content {
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .left-text,
  .right-text {
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 100%;
    font-size: 1em;
    line-height: 1.6;
    word-wrap: break-word;
  }

  .video-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 0 20px;
  }

  .video-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-weight: 600;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
  }

  .video-btn:hover {
    background: #fdd835;
    color: #000;
  }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-wrapper {
  padding: 60px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.map-embed {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.reviews {
  margin-top: 60px;
}

.reviews h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-form, .map-embed {
    width: 100%;
    max-width: 100%;
  }
}

.contact-info {
  margin-top: 20px;
  font-size: 18px;
  color: #f1f1f1;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}


.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.form-success {
  margin-top: 12px;
  color: #4caf50;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

/* -------------------
   Zealers Video Section
-------------------- */
.zealers-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Text Over Video */
.zealers-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.left-text, .right-text {
  max-width: 600px;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.7;
}

.left-text {
  text-align: left;
  margin-left: 0;
}

.right-text {
  text-align: right;
  margin-left: auto;
}

/* -------------------
   Responsive Mobile Fix
-------------------- */
@media (max-width: 768px) {
  .zealers-video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }

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

  .zealers-video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    padding: 0 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2;
    text-align: center !important;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.2); /* Optional overlay */
  }

  .left-text, .right-text {
    width: 100% !important;
    max-width: 95% !important;
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    padding: 0 !important;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    display: block !important;
  }
}

.class-schedule {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.class-schedule h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fdd835;
  text-align: left;
}

.schedule-box {
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}

.schedule-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
  padding: 20px;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-day {
  width: 100%;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ccc;
}

.schedule-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.schedule-details div {
  flex: 1;
  font-size: 16px;
  color: #eee;
  line-height: 1.6;
}

.book-btn {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-align: center;
}

.book-btn:hover {
  background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 600px) {
  .schedule-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .book-btn {
    width: 100%;
    text-align: center;
  }
}


.social-icons a {
    color: inherit; /* Remove forced color if any */
    font-size: 24px; /* Adjust icon size if needed */
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a .fa-youtube {
    color: #FF1A1A; /* Lighter and vibrant red */
}



.social-icons a .fa-instagram {
    color: #E1306C; /* Instagram pinkish */
}

.social-icons a .fa-facebook-f {
    color: #1877F2; /* Facebook blue */
}

.social-icons a .fa-whatsapp {
    color: #25D366; /* WhatsApp green */
}

/* Optional hover effect */
.social-icons a:hover {
    transform: scale(1.2);
}


.updates-list {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.update-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #fdd835;
}

.update-item h3 {
  margin: 0 0 10px;
  color: #fdd835;
}

.update-item p {
  margin: 0;
  font-size: 16px;
}

.left-text {
  margin-top: -30px;
}

.left-text h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  font-weight: 700;
}

.subheading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subheading h3 {
  font-size: 1.1em;
  font-weight: 400;
  margin: 2px 0;
}

/* Desktop */
.zealers-video-content {
  position: absolute;
  top: 20%;
  left: 5%;
  transform: translateY(-20%);
  z-index: 2;
  text-align: left;
  padding: 20px;
  width: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .zealers-video-content {
    position: absolute;
    top: 0vh; /* ↓ lowered from 10% to 5% for higher text */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 16px;
  }

  .zealers-video-content h1 {
    font-size: 20px;
    margin: 5px 0;
    line-height: 1.2;
  }

  .zealers-video-content h3 {
    font-size: 14px;
    margin: 2px 0;
    font-weight: 400;
    line-height: 1.4;
  }
}

@font-face {
  font-family: 'HelveticaThaiBold';
  src: url('../fonts/helvetica-thai-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, button {
  font-family: 'HelveticaThaiBold', sans-serif;
}

.contact-form button,
.contact-form input[type="submit"] {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  width: 100%;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
  transform: translateY(-2px);
}

/* Floating Buttons Wrapper */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

/* Individual Buttons */
.floating-buttons a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #6A11CB, #2575FC); /* Purple to Blue */
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.05);
}

/* Icons inside buttons */
.floating-buttons a i {
  font-size: 18px;
}


.terms-page {
  padding: 60px 20px;
  text-align: left;
  max-width: 800px;
  margin: auto;
}

.terms-page h2 {
  font-size: 32px;
  background: linear-gradient(45deg, #6A11CB, #2575FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 30px;
  text-align: center;
}


.terms-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.term-item {
  position: relative;
  background: #1a1a1a;
  padding: 20px 20px 20px 25px;
  border-radius: 10px;
  font-size: 18px;
  color: #eee;
}
.term-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(45deg, #6A11CB, #2575FC);
  border-radius: 5px 0 0 5px;
}



.term-number {
  font-weight: 600;
  margin-right: 8px;
  background: linear-gradient(45deg, #6A11CB, #2575FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


/* Responsive */
@media (max-width: 768px) {
  .terms-page {
    padding: 40px 15px;
  }

  .terms-page h2 {
    font-size: 26px;
  }

  .term-item {
    font-size: 16px;
    padding: 15px;
  }
}

.about-director-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.director-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.director-photo {
  flex: 1 1 300px;
  text-align: center;
}

.director-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.director-photo h3 {
  font-weight: 600;
  font-size: 1.1rem;
}

.director-bio {
  flex: 2 1 600px;
}

.director-bio h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.director-bio p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .director-layout {
    flex-direction: column;
    text-align: center;
  }
  .director-bio {
    text-align: left;
  }
}
