html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background: #e4e4e4 !important; 
  margin: 0rem;
  padding-top: 100px;
  overflow-x: hidden;
}

* {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
}

/* HEADER */
.navbar {
  background-color: #e4e4e4 !important;
  border-bottom: 2px solid #3d3434 !important;
}

.navbar-brand h1 {
  color: #3d3434;
  font-family: "Gasoek One", sans-serif;
  font-size: 2rem;
}

.navbar-nav {
  gap: 2rem;
}

@media (min-width: 1200px) and (max-width: 1325px){
  .navbar-nav {
    gap: 0rem;
  }
}

.nav-link {
  color: #3d3434 !important;
}

.btn-custom {
  color: #fff !important;
  padding: 0.5rem 1rem;
}

.offcanvas-header {
	background-color: #e4e4e4;
}

.offcanvas-header img {
	width: 70px;
}

.offcanvas-body {
	background-color: #e4e4e4;
  font-family: "Gasoek One", sans-serif;
  font-weight: 0;
  font-size: 2rem;
  color: #3d3434;
}

@media (max-width: 1199px) {
  .offcanvas-body {
    justify-content: center;
  }
}

@media (min-width: 1200px){
  .offcanvas-body {
    justify-content: end;
  }
}

@media (min-width: 320px) and (max-width: 374px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 375px) and (max-width: 424px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 425px) and (max-width: 767px){
  .offcanvas-header img {
    width: 40px;
  }
  
  .offcanvas-body a {
    font-size: 3rem;
    line-height: 0.8;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  .offcanvas-body a {
    font-size: 4rem;
    line-height: 0.8;
  }
}

@media (min-width: 1024px) and (max-width: 1199px){
  .offcanvas-body a {
    font-size: 6rem;
    line-height: 0.8;
  }
}

.modal-title {
  font-family: 'Gasoek One', sans-serif;
  font-size: 2rem;
  color: #d21913;
}

.modal-body {
  font-family: 'Plus Jakarta Sans' sans-serif;
  font-size: 1rem;
  color: #3d3434;
}

/*HERO SECTION */
.herosection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 1300px; /* Optional: Limit max width */
  aspect-ratio: 3 / 1;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-headline {
  margin-top: -2.5rem;
  text-align: center;
  width: 100%;
  max-width: 1300px;
}

.font-gasoek {
  font-family: "Gasoek One", sans-serif;
  color: #3d3434;
  font-size: 8rem;
  line-height: 0.01;
}

.font-pinyon {
  font-family: "Pinyon Script", cursive;
  color: #d21913;
  font-size: 14rem;
}

/* watch, learn, and dance*/
.watchlearndance {
  width: 100vw;
  height: 40vh;
  background-color: #e4e4e4;
  padding: 2rem;
  text-align: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.watchlearndance h1 {
  font-family: "Gasoek One", sans-serif;
  font-size: 6rem;
  margin-bottom: 1rem;
  color: #d21913;
}

.watchlearndance p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  color: #3d3434;
}

/* ON STAGE */
.stage-section {
  background-color: #e4e4e4;
  padding: 2rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.headline-container {
  position: relative;
  text-align: left;
  padding: 2rem 1rem;
}

.main-title {
  font-size: 6rem;
  margin: 0;
  line-height: 0.6;
}

.bold-title {
  font-family: 'Gasoek One', sans-serif;
  color: #3d3434;
}

.script-title {
  font-family: 'Pinyon Script', cursive;
  color: #d21913;
  font-size: 12rem;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #3d3434;
}

.see-more {
  color: #d21913;
  font-style: italic;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0rem;
  gap: 0;
}

.stage-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.stage-card img {
  width: 100%;
  height: 100%; /* instead of auto */
  object-fit: cover;
  display: block;
}

.performer-name {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-family: 'Gasoek One', sans-serif;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.wrapper {
  background-color: #d21913;
  width: 90%;
  max-width: 1400px;
  margin-inline: auto;
  position: relative;
  height: 50px;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item {
  width: 400px;
  height: 100px;
  position: absolute;
  left: max(calc(200px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  font-size: 2rem;
}

.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item3 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item4 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item5 {
  animation-delay: calc(30s / 8 * (8 - 9) * -1);
}

.item6 {
  animation-delay: calc(30s / 8 * (8 - 11) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 13) * -1);
}

.item8 {
  animation-delay: calc(30s / 8 * (8 - 15) * -1);
}

/* OPEN CLASSES */
.open-classes {
  background-color: #e4e4e4;
  padding: 4rem 2rem;
  min-height: 20vh;
}

.text-content {
  max-width: 1300px;
  z-index: 2;
}

.text-content h2 {
  line-height: 0.6;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
}

.text-content .text-1 {
  font-family: "Gasoek One", sans-serif;
  color: #3d3434;
  font-size: 5rem;
  line-height: 1;
}

.text-content .text-2 {
  font-family: "Pinyon Script", cursive;
  font-size: 10rem;
  color: #d21913;
}

.text-content .text-3 {
  font-family: "Gasoek One", sans-serif;
  color: #3d3434;
  font-size: 5rem;
  line-height: 1;
}

.text-content p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #3d3434;
  margin: 1rem 0 0.5rem;
}

.text-content .open-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #d21913;
  font-style: italic;
}

.images-grid {
  display: flex;
  justify-content: center; /* center the whole row */
  align-items: center;
  width: 100%;
  margin-top: 2rem; /* space between text and images */
}


/* Optional: animation and styling */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.images-grid img {
  width: 16vw; /* responsive sizing */
  aspect-ratio: 4 / 5;
  object-fit: cover;
  animation: bounce 2s ease-in-out infinite;
}

.images-grid img:nth-child(1) { animation-delay: 0s; }
.images-grid img:nth-child(2) { animation-delay: 0.4s; }
.images-grid img:nth-child(3) { animation-delay: 0.8s; }
.images-grid img:nth-child(4) { animation-delay: 1.2s; }

/* FIND YOUR FAVORITE DANCES */
.favorite-dancers {
  background-color: #e4e4e4;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.fav-text {
  max-width: 600px;
}

.fav-text h2 {
  font-size: 4rem;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fav-text .text-1 {
  font-family: "Gasoek One", sans-serif;
  color: #3d3434;
}

.fav-text .text-2 {
  font-family: "Pinyon Script", cursive;
  color: #d21913;
  font-size: 12rem;
  line-height: 0.5;
  transform: translateY(-10px);
}

.fav-text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #3d3434;
  margin: 1rem 0;
}

.fav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #d21913;
  font-style: italic;
  text-decoration: underline;
}

.fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}

.card {
  padding: 0.5rem;
  position: relative;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #3d3434;
}

.card img {
  width: auto;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border: 1px solid #3d3434;
  aspect-ratio: 1/1;
}

.card .arrow {
  position: absolute;
  bottom: 0.25rem;
  right: 0.5rem;
  font-size: 1.2rem;
}

.opportunities {
  background-color: #e4e4e4;
  padding: 6rem 2rem;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #3d3434;
}

.oppo-block, .everyone-block {
  margin-bottom: 6rem;
}

.oppo-block h2,
.everyone-block h2 {
  font-size: 3rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bold-text {
  font-family: 'Gasoek One', sans-serif;
  color: #3d3434;
  font-size: 6rem;
}

.script-text {
  font-family: 'Pinyon Script', cursive;
  color: #d21913;
  font-size: 12rem;
  line-height: 0.4;
}

.oppo-block p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #3d3434;
}

.oppo-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-style: italic;
  color: #d21913;
  text-decoration: underline;
  font-size: 1.1rem;
}

/* Modal Video Player Performances */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal video {
  width: 80%;
  max-height: 80%;
  background: black;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* FOOTER */
.site-footer {
  background-color: #e4e4e4;
  border-top: 2px solid #3d3434;
  padding: 3rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  font-size: 2rem;
  font-weight: 100;
  color: #3d3434;
  font-family: 'Gasoek One', sans-serif;
  line-height: 1.4;
  list-style: none;
  text-align: left;
}

.footer-center .footer-logo {
  width: 60px;
  height: 60px;
  border: 1px solid #3d3434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3d3434;
}

.footer-logo img {
  width: 100%;
  max-width: 150px;
}

.footer-right {
  text-align: center;
  color: #3d3434;
}

.footer-right a {
  text-decoration: none;
  color: #d21913;
}

.social-icons {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-icons i {
  margin: 0 0.5rem;
  cursor: pointer;
}


@media (min-width: 320px) and (max-width: 424px){
  /*HERO SECTION */
  .hero-headline {
    margin-top: -1rem;
  }

  .font-gasoek {
    font-size: 3rem;
  }

  .font-pinyon {
    font-size: 6rem;
  }

  /* WATCH, LEARN, AND DANCE */
  .watchlearndance {
    height: 20vh;
  }

  .watchlearndance h1 {
    font-size: 2rem;
  }
  
  .watchlearndance p {
    font-size: 1rem;
  }

  /* ON STAGE*/
  .bold-title {
    font-size: 2rem;
  }

  .script-title {
    font-size: 4rem;
    line-height: 1;
  }

  .subtitle {
    font-size: 1rem;
  }

  .see-more {
    font-size: 1rem;
  }

  .performer-name {
    font-size: 1rem;
  }

  /* OPEN CLASSES */
  .text-content .text-1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .text-content .text-2 {
    font-size: 5rem;
  }

  .text-content .text-3 {
    font-size: 2.5rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .text-content .open-link {
    font-size: 1rem;
  }

  .images-grid img {
    width: 20vw;
  }

  /* FIND YOUR FAV DANCERS */
  .favorite-dancers {
    grid-template-columns: 1fr;
  }

  .fav-text .text-1 {
    font-size: 2.5rem;
  }

  .fav-text .text-2 {
    font-size: 5rem;
  }

  .fav-text p {
    font-size: 1rem;
  }

  .fav-link {
    font-size: 1rem;
  }

  .fav-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .card img {
    height: 16vh !important;
  }

  .card .arrow {
    font-size: 0.5rem;
  }

  .card img {
    height: 10vh;
  }

  /* OPPORTUNITIES AND END TEXT*/
  .bold-text {
    font-size: 2rem;
  }

  .script-text {
    font-size: 4rem;
  }

  .oppo-block p {
    font-size: 1rem;
  }

  .oppo-link {
    font-size: 1rem;
  }
}

@media (min-width: 425px) and (max-width: 767px){
  /*HERO SECTION */
  .hero-headline {
    margin-top: -1rem;
  }

  .font-gasoek {
    font-size: 2.5rem;
  }
  
  .font-pinyon {
    font-size: 5rem;
  }

  /* WATCH, LEARN, AND DANCE */
  .watchlearndance {
    height: 20vh;
  }

  .watchlearndance h1 {
    font-size: 2rem;
  }
  
  .watchlearndance p {
    font-size: 1rem;
  }

  /* ON STAGE*/
  .bold-title {
    font-size: 2.5rem;
  }
  
  .script-title {
    font-size: 5rem;
    line-height: 1;
  }

  .subtitle {
    font-size: 1rem;
  }
  
  .see-more {
    font-size: 1rem;
  }

  .performer-name {
    font-size: 1rem;
  }
  
  /* OPEN CLASSES */
  .text-content .text-1 {
    font-size: 2.5rem;
    line-height: 1;
  }
  
  .text-content .text-2 {
    font-size: 5rem;
  }
  
  .text-content .text-3 {
    font-size: 2.5rem;
  }
  
  .text-content p {
    font-size: 1rem;
  }
  
  .text-content .open-link {
    font-size: 1rem;
  }

  .images-grid img {
    width: 20vw;
  }

  /* FIND YOUR FAV DANCERS */
  .favorite-dancers {
    grid-template-columns: 1fr;
  }
  
  .fav-text .text-1 {
    font-size: 2.5rem;
  }
  
  .fav-text .text-2 {
    font-size: 5rem;
  }
  
  .fav-text p {
    font-size: 1rem;
  }
  
  .fav-link {
    font-size: 1rem;
  }

  .fav-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .card img {
    height: 16vh !important;
  }
  
  .card .arrow {
    font-size: 0.5rem;
  }

  .card img {
    height: 10vh;
  }
  
  /* OPPORTUNITIES AND END TEXT*/
  .bold-text {
    font-size: 2.5rem;
  }
  
  .script-text {
    font-size: 5rem;
  }
  
  .oppo-block p {
    font-size: 1rem;
  }
  
  .oppo-link {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  /*HERO SECTION */
  .font-gasoek {
    font-size: 6rem;
  }
  
  .font-pinyon {
    font-size: 12rem;
  }

  /* WATCH, LEARN, AND DANCE */
.watchlearndance {
    height: 20vh;
  }
  
  .watchlearndance h1 {
    font-size: 2rem;
  }
  
  .watchlearndance p {
    font-size: 1rem;
  }

  /* ON STAGE*/
  .bold-title {
    font-size: 4rem;
  }
  
  .script-title {
    font-size: 8rem;
    line-height: 0.8;
  }

  .subtitle {
    font-size: 1rem;
  }
  
  .see-more {
    font-size: 1rem;
  }

  .performer-name {
    font-size: 1.6rem;
  }
  
  /* OPEN CLASSES */
  .text-content .text-1 {
    font-size: 4rem;
  }
  
  .text-content .text-2 {
    font-size: 8rem;
  }
  
  .text-content .text-3 {
    font-size: 4rem;
  }
  
  .text-content p {
    font-size: 1rem;
  }
  
  .text-content .open-link {
    font-size: 1rem;
  }

  /* FIND YOUR FAV DANCERS */
  .favorite-dancers {
    grid-template-columns: 1fr;
  }

  .fav-text .text-1 {
    font-size: 4rem;
  }
  
  .fav-text .text-2 {
    font-size: 8rem;
  }
  
  .fav-text p {
    font-size: 1rem;
  }
  
  .fav-link {
    font-size: 1rem;
  }

  .fav-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .card img {
    height: 28vh;
  }

  .card .arrow {
    font-size: 1rem;
  }
  
  /* OPPORTUNITIES AND END TEXT*/
  .bold-text {
    font-size: 4rem;
  }
  
  .script-text {
    font-size: 8rem;
  }
  
  .oppo-block p {
    font-size: 1rem;
  }
  
  .oppo-link {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) and (max-width: 1439px){
  /*HERO SECTION */
  .font-gasoek {
    font-size: 6rem;
  }
  
  .font-pinyon {
    font-size: 12rem;
  }

  /* WATCH, LEARN, AND DANCE */
  .watchlearndance {
    height: 20vh;
  }
  
  .watchlearndance h1 {
    font-size: 4rem;
  }
  
  .watchlearndance p {
    font-size: 1rem;
  }

  /* ON STAGE*/
  .bold-title {
    font-size: 4rem;
  }
  
  .script-title {
    font-size: 8rem;
  }

  .subtitle {
    font-size: 1rem;
  }
  
  .see-more {
    font-size: 1rem;
  }
  
  /* OPEN CLASSES */
  .text-content .text-1 {
    font-size: 4rem;
  }
  
  .text-content .text-2 {
    font-size: 8rem;
    line-height: 0.3;
  }
  
  .text-content .text-3 {
    font-size: 4rem;
    line-height: 1;
  }
  
  .text-content p {
    font-size: 1rem;
  }
  
  .text-content .open-link {
    font-size: 1rem;
  }

  /* FIND YOUR FAV DANCERS */
  .fav-text .text-1 {
    font-size: 3rem;
  }
  
  .fav-text .text-2 {
    font-size: 6rem;
  }
  
  .fav-text p {
    font-size: 1rem;
  }
  
  .fav-link {
    font-size: 1rem;
  }

  .fav-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  
  .card img {
    height: 24vh;
  }
  
  .card .arrow {
    font-size: 1rem;
  }
  
  /* OPPORTUNITIES AND END TEXT*/
  .bold-text {
    font-size: 4rem;
  }
  
  .script-text {
    font-size: 8rem;
  }
  
  .oppo-block p {
    font-size: 1rem;
  }
  
  .oppo-link {
    font-size: 1rem;
  }
}