@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@100..900&family=League+Spartan:wght@100..900&display=swap");

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #ff0000;
  --grey-dark: #1a1a1a;
  --grey: #333333;
  --grey-light: #f2f2f2;
}

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

main {
  /* margin-top: 4.6rem; */
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.text-red {
  color: var(--red);
}

.sohh-home .hero::after {
  pointer-events: none;
}

/* HERO SECTION */
.sohh-home .hero {
  position: relative;
  /* min-height: 100svh; */
  /* min-height: 70vh; */
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.sohh-home .hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sohh-home .hero::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
}

.sohh-home .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

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

  padding: 45px 0;
  max-width: 100%;
  margin-top: 5rem;
}

.sohh-home .hero-content h1 {
  z-index: 10;
  font-family: "Montserrat", sans-serif !important;
  font-size: 76px;
  font-weight: 800 !important;
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.35)
  );
  -webkit-background-clip: text;
  background-clip: text; */
  color: var(--white);
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(255, 255, 255, 0.05); */
  line-height: 1 !important;
}

.sohh-home .hero-content ul {
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  color: #eee;
  list-style: none;
  font-weight: 500 !important;
}
.sohh-home .hero-content ul li {
  margin: 16px 0;
  letter-spacing: 1.4px;
}

.sohh-home .btn-primary {
  margin-top: 20px;
  border-radius: 999px !important;
  color: white !important;
}

.sohh-home .btn-primary:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.7) !important;
}

/* WHAT IS */
.sohh-home .what-is {
  background: var(--white);
  padding: 120px 8%;
  text-align: center;
}

.sohh-home .what-is h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 50px;
}

.sohh-home .what-is p {
  margin: 0 auto;
  max-width: 800px;
  font-family: "Poppins", sans-serif !important;
  font-size: 22px;
  color: var(--grey);
  margin-top: 30px;
}

.sohh-home .pill-grid {
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.sohh-home .pill {
  display: flex;
  flex-direction: column;
  background: var(--grey-light);
  padding: 25px 15px;
  border-radius: 6px;
  font-weight: 600 !important;
  gap: 10px;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
}

.sohh-home .pill i {
  font-size: 24px;
  color: var(--red);
}

/* WHO CAN TRAIN */
.sohh-home .who-can {
  padding: 120px 8%;
  background: #f0f0f0;
  text-align: center;
}

.sohh-home .who-can h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 50px;
}

.sohh-home .who-grid {
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.sohh-home .who-card {
  background: var(--black);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sohh-home .who-card h3 {
  font-family: "Montserrat", sans-serif !important;
  color: var(--white);
  font-weight: 700 !important;
  font-size: 20px;
}

.sohh-home .who-card p {
  color: #ccc;
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
}

.sohh-home .who-note {
  margin-top: 40px;
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  font-weight: 600 !important;
}

/* TRAINING FORMATS */
#training-formats {
  scroll-margin-top: 90px;
}
.sohh-home .training-formats {
  padding: 120px 8%;
}

.sohh-home .training-formats h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
}

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

.sohh-home .training-card {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.sohh-home .training-card:hover {
  transform: translateY(-8px);
  background-color: #e0e0e0;
  border-color: var(--red);
}

.sohh-home .training-card i {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 14px;
}

.sohh-home .training-card h3 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px;
  margin-bottom: 14px;
}

.sohh-home .training-card p {
  color: var(--grey-dark);
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.sohh-home .training-card a {
  margin-top: 30px;
  padding: 10px 28px;
  font-weight: 600 !important;
  border-radius: 999px !important;
}

.sohh-home .training-card a:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7) !important;
}

/* WHY SKOOL */
.sohh-home .why-skool {
  background: #f0f0f0;
  padding: 100px 8%;
}

.sohh-home .why-skool h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 50px;
  margin-bottom: 60px;
}

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

.sohh-home .why-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  font-weight: 600 !important;
  color: var(--grey);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.sohh-home .why-item i {
  font-size: 24px;
  color: var(--red);
}

.sohh-home .why-item:hover {
  transform: translateY(-4px);
}

/* GLOBAL TRAINING */
.sohh-home .global-training {
  padding: 140px 8%;
  text-align: center;
}

.sohh-home .global-training i {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 20px;
}

.sohh-home .global-training h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 48px;
  margin-bottom: 30px;
}

.sohh-home .global-training p {
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  margin-bottom: 10px;
}

/* FEATURED VIDEO */
.sohh-home .featured {
  padding: 60px 8%;
  background: #f0f0f0;
}

.sohh-home .featured h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 44px;
  margin-bottom: 30px;
}

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

.sohh-home .video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.sohh-home .video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.sohh-home .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease-in-out;
}

.sohh-home .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.35s ease;
  z-index: 1;
}

.sohh-home .play-btn,
.sohh-home .video-time {
  z-index: 2;
}

.sohh-home .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sohh-home .play-btn i {
  background: var(--red);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}

.sohh-home .video-time {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 13px;
  padding: 3px 12px;
  border-radius: 6px;
}

.sohh-home .video-title {
  padding: 14px 20px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sohh-home .video-title .video-views {
  color: var(--red);
  display: none;
  font-weight: 600 !important;
  font-family: "Poppins", sans-serif !important;
}

.sohh-home .video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.sohh-home .video-card:hover img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.sohh-home .video-card:hover .play-btn i {
  transform: scale(1.15);
  transition: all 0.2s ease-in-out;
}

/* INSTRUCTORS */
.sohh-home .instructors {
  padding: 60px 8%;
  text-align: center;
}

.sohh-home .instructors h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 44px;
  font-weight: 700 !important;
}

.sohh-home .instructors-sub {
  font-family: "Poppins", sans-serif !important;
  color: #666;
  margin-bottom: 40px;
}

.sohh-home .instructor-grid {
  display: flex;
  gap: 25px;
  border-radius: 12px;
}

.sohh-home .instructor-card {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
  flex: 0 0 calc(33.33% - 10px);
  scroll-snap-align: start;
}

.sohh-home .instructor-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--red);
  overflow: hidden;
}

.sohh-home .instructor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sohh-home .instructor-card h4 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 20px;
  margin-bottom: 6px;
}

.sohh-home .role {
  color: var(--red);
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  margin-bottom: 10px;
}

.sohh-home .exp {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px;
  color: #555;
  margin-bottom: 18px;
}

.sohh-home .tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sohh-home .tags span {
  background: #222;
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif !important;
}

.sohh-home .instructor-card:hover {
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

/* TESTIMONIALS */
/* =========================
   TESTIMONIALS
========================= */

.sohh-home .testimonials {
  padding: 100px 6%;
  background-color: #f0f0f0;
  text-align: center;
}

.sohh-home .testimonials h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 44px;
  font-weight: 700 !important;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-viewport {
  padding: 0 20px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.83% - 20px);
  background-color: lightgray;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: left;
}

.testimonial-card .quote {
  color: var(--red);
  font-size: 34px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 18px;
  font-family: "Poppins", sans-serif !important;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-card .stars {
  color: var(--red);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  font-size: 16px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  margin: 0;
}

.testimonial-card span {
  font-size: 14px;
  color: #444;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--grey-dark);
  color: var(--white);
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}
.nav-btn.prev {
  left: -32px;
}

.nav-btn.next {
  right: -24px;
}

.nav-btn:hover {
  background: var(--red);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  width: 22px;
  border-radius: 10px;
  background: var(--red);
}

/* FINAL CTA */
.sohh-home .final-cta {
  padding: 120px 8%;
  text-align: center;
  background: var(--black);
}

.sohh-home .final-cta h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 900 !important;
  color: var(--white);
  font-size: 54px;
  margin-bottom: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.sohh-home .final-cta .cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sohh-home .btn-white {
  padding: 14px 30px;
  font-size: 16px;
  gap: 4px;
  font-weight: bold !important;
  color: white !important;
}

.sohh-home .btn-white:hover{
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.7) !important;
}

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

/* ---------- ≤ 912px ---------- */
@media (max-width: 912px) {
  /* HERO */
  .sohh-home .hero-content h1 {
    font-size: 56px !important;
  }

  /* WHAT IS */
  .sohh-home .what-is h2,
  .sohh-home .who-can h2,
  .sohh-home .why-skool h2 {
    font-size: 42px !important;
  }

  /* PILL GRID → ALWAYS 2x2 */
  .sohh-home .pill-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  /* WHO CAN */
  .sohh-home .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TRAINING */
  .sohh-home .training-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FEATURED VIDEOS */
  .sohh-home .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* INSTRUCTORS */
  .sohh-home .instructor-grid {
    gap: 18px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .sohh-home .instructor-card {
    flex: 0 0 calc(50% - 10px);
  }

  .sohh-home .instructor-grid::-webkit-scrollbar {
    height: 10px;
  }

  .sohh-home .instructor-grid::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 10px;
  }

  .sohh-home .instructor-grid::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
  }

  /* TESTIMONIALS → 2 cards */
  .testimonial-card {
    min-width: calc(50% - 20px);
  }
}

/* ---------- ≤ 778px ---------- */
@media (max-width: 778px) {
  .sohh-home .what-is,
  .sohh-home .who-can,
  .sohh-home .training-formats,
  .sohh-home .why-skool,
  .sohh-home .global-training,
  .sohh-home .featured,
  .sohh-home .instructors,
  .sohh-home .testimonials,
  .sohh-home .final-cta {
    padding: 60px 6%;
  }

  /* HERO */
  .sohh-home .hero-content h1 {
    font-size: 44px !important;
  }

  .sohh-home .what-is h2,
  .sohh-home .who-can h2,
  .sohh-home .why-skool h2 {
    font-size: 36px !important;
  }

  .sohh-home .hero-content ul {
    font-size: 18px !important;
  }

  .sohh-home .hero-content ul li {
    margin: 4px 0;
    font-size: 16px;
  }

  /* SECTIONS PADDING */
  .sohh-home section {
    padding-left: 6%;
    padding-right: 6%;
  }

  /* WHO CAN */
  .sohh-home .who-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .sohh-home .mobile-off {
    display: none;
  }

  .sohh-home .video-title {
    padding: 12px 8px;
  }

  .sohh-home .video-title .mobile-on {
    display: block;
    font-size: 13px;
  }

  .sohh-home .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .sohh-home .training-formats h2,
  .sohh-home .why-skool h2 {
    margin-bottom: 30px;
  }

  /* TRAINING */
  .sohh-home .training-grid {
    grid-template-columns: 1fr;
  }

  .sohh-home .training-card {
    min-height: auto;
  }

  /* FEATURED VIDEOS */
  .sohh-home .video-grid {
    grid-template-columns: 1fr;
  }

  /* INSTRUCTORS */
  .sohh-home .instructor-card {
    flex: 0 0 90%; /* 1 card + side peek */
  }

  /* TESTIMONIALS → 1 card */
  .testimonial-card {
    min-width: 100%;
  }

  /* TESTIMONIAL NAV BUTTONS INSET */
  .nav-btn.prev {
    left: -10px;
  }

  .nav-btn.next {
    right: -10px;
  }

  /* FINAL CTA */
  .sohh-home .final-cta h2 {
    font-size: 42px !important;
  }

  .sohh-home .final-cta .cta-buttons {
    flex-direction: column;
  }

  .sohh-home .hero {
    padding-left: 0% !important;
    padding-right: 0% !important;
  }
}

/* ---------- ≤ 460px ---------- */
@media (max-width: 460px) {
  /* HERO */
  .sohh-home .hero {
    height: 70vh;
  }
  .sohh-home .hero-content {
    justify-content: center;
    margin-top: 0;
  }

  .sohh-home .hero-content h1 {
    font-size: 34px !important;
    line-height: 1.3;
    font-weight: 700 !important;
  }

  .sohh-home .btn-primary {
    padding: 14px 28px;
    font-size: 16px !important;
    margin-top: 20px;
  }

  .sohh-home h2 {
    font-size: 32px !important;
  }

  .sohh-home p {
    font-size: 18px !important;
    margin-top: 20px;
  }

  .sohh-home .pill-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
  }

  .sohh-home .pill {
    font-size: 14px !important;
    padding: 18px 10px;
  }

  .sohh-home .global-training p,
  .sohh-home .who-card p {
    margin: 0;
    line-height: 1.4;
    font-size: 16px !important;
  }

  /* TESTIMONIAL */
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-card p {
    font-size: 16px mp !important;
  }

  /* FINAL CTA */
  .sohh-home .final-cta h2 {
    font-size: 34px !important;
  }

  .sohh-home .btn-white,
  .sohh-home .btn-outline {
    width: 100%;
  }

  .sohh-home .instructors {
    padding: 50px 3%;
  }

  .sohh-home .instructor-card {
    padding: 30px 20px;
    flex: 0 0 99%;
  }

  .sohh-home .instructor-card h4 {
    margin: 4px !important;
  }
  .sohh-home .role {
    margin: 7px !important;
  }

  .sohh-home .exp {
    margin: 12px !important;
  }
}

#smooth-wrapper {
  position: static !important;
  height: auto !important;
  overflow: visible !important;
}

#smooth-content {
  transform: translate3d(0, 0, 0) !important;
  will-change: auto !important;
}
