* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Arial", sans-serif;
}

.full-img {
  width: 100%;
}

.primary-heading {
  font-size: 2rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1rem;
}

/* Carousel */

.vs-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 3rem;
  width: 100%;
}

.vs-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.vs-carousel-slide {
  flex: 0 0 100%; /* each slide takes full width of carousel */
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.carousel-case {
  width: 50%;
  position: absolute;
  right: 5vw;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.carousel-inner-image {
  position: absolute;
  width: 30%;
  right: 15vw;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.carousel-text {
  width: 40%;
  position: absolute;
  left: 5vw;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto 0;
  color: white;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.3;
}

.vs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  color: white;
  border: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.vs-carousel-btn.prev {
  left: 1rem;
}

.vs-carousel-btn.next {
  right: 1rem;
}

.vs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.vs-carousel-dots button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.vs-carousel-dots button.active {
  background: #333;
}

.carousel-hero {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .vs-carousel-btn {
    display: none;
  }

  .vs-carousel-slide {
    flex-direction: column;
  }

  .vs-carousel-slide .full-img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .carousel-case {
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .carousel-inner-image {
    width: 60%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 19vw;
  }

  .carousel-text {
    position: relative;
    color: black;
    width: 80%;
    margin: 0 auto;
    left: 0;
  }
}

/* Carousel */

.section-ambient {
  position: relative;
  width: 90%;
  margin: 2rem auto;
  border-radius: 18px;
}

.section-ambient .full-img {
  border-radius: 18px;
}

.ambient-text {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3vw;
  width: 40%;
  margin: auto 0;
  height: fit-content;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amb-img {
  width: 100%;
}

.ambient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .section-ambient .full-img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .ambient-text {
    position: relative;
    width: 80%;
    margin: 2rem auto;
    right: auto;
    color: black;
  }
}

@media (max-width: 576px) {
  .ambient-grid {
    grid-template-columns: 1fr;
  }
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #242424;
  color: white;
  width: 90%;
  margin: 2rem auto;
  border-radius: 18px;
}

.section-grid video {
  border-radius: 18px;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .grid-text {
    padding: 3rem 0;
    grid-area: 2 / 1 / 3 / 2;
  }
}

.section-play {
  position: relative;
}

.section-play img {
  margin-bottom: -5px;
}

.play-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3vw;
  height: fit-content;
  margin: auto 0;
  width: 40%;
  color: white;
  text-shadow: black 1px 1px 1px;
}

@media (max-width: 768px) {
  .play-text {
    position: relative;
    width: 80%;
    margin: 2rem auto;
    left: auto;
    color: black;
    text-shadow: none;
  }
}

.section-persona {
  background: radial-gradient(
    circle,
    #728481 0,
    #4f5681 23%,
    #403d83 36%,
    #4f5681 50%,
    #728481 100%
  );
}

.persona-text {
  color: white;
}

.pers-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  align-items: center;
}

.persona-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 992px) {
  .pers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .persona-text {
    grid-area: 1 / 1 / 2 / 5;
  }
}

@media (max-width: 576px) {
  .pers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .persona-text {
    grid-area: 1 / 1 / 2 / 3;
  }
}
