html,
body {
  margin: 0;
  overflow-x: hidden;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
}

p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

a {
  font-family: 'Poppins', sans-serif;
}

.highlight {
  background-color: #6022F8;
  /* neon/lime green */
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  color: white;
}

.paragraph-24 {
  font-size: 24px !important;
}

/*NAV BAR*/
.navbar-container {
  width: 100%;
  min-height: 12vh;
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  width: 100%;
  color: white;
  z-index: 1;
  border: 1px solid black;
  box-shadow: 0 5px 0 #1a1a1a;
  margin-left: 30px;
  margin-right: 30px;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #6022F8;
}

/* hamburger button */
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  color: #000;
}

.menu-toggle .bar {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* hide links by default on small */
  .nav-links {
    position: absolute;
    top: 110px;
    /* adjust to your navbar height */
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 50;
  }

  .nav-links.open {
    display: flex;
  }

  /* simple X animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 10;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/*NAV BAR*/

/*PAGE 1*/
#pg-1 {
  width: 100%;
  min-height: 100vh;
  margin-bottom: 40px;
}

#inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 8rem 4rem;
  gap: 2rem;
}

#right-side {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-underlay {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

.video-wrapper {
  width: 300px;
  height: 400px;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #F3F3F3;
  width: 100%;
}

/* Customization for pg-5 */
.video-wrapper-pg5 {
  margin-top: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container-vertical {
  border-radius: 25px;
}

.media-overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  max-height: 90%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 40px;
}

#right-side img {
  width: 600px;
  -webkit-user-drag: none;
  user-select: none;
}

.cta-btn {
  margin-top: 10px;
  padding: 20px 40px;
  background-color: #6022F8;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  border-radius: 15px;
  cursor: pointer;
}

#play-toggle {
  margin-top: 10px;
  padding: 20px 15px;
  background-color: #141623;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  border-radius: 50px;
  cursor: pointer;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slide {
  display: inline-block;
  animation: 40s slide infinite linear;
}

.carousel {
  height: 100%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
}

.carousel:before,
.carousel:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.slide img {
  height: 50px;
  margin: 0 40px;
}

.carousel-addon {
  margin-top: 80px;
  margin-bottom: 80px;
  top: 0 !important;
}

.carousel-icon {
  width: 200px !important;
  height: 200px !important;
  margin: 0 40px;
  display: inline-block;
}

/*PAGE 1*/

/*PAGE 2*/
#pg-2 {
  width: 100%;
  min-height: 100vh;
}

.headline-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-sub {
  position: relative;
  top: 8px;
  width: 50%;
  font-size: 24px;
}

#benefit-headline {
  text-align: left;
  margin-left: 30px;
}

.header-sub {
  padding: 20px;
}

#flex-benefit {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 20px;
}

.benefit-box {
  flex: 1 1 calc(33.33% - 2rem);
  max-width: 450px;
  height: 300px;
  background-color: #F3F3F3;
  border-radius: 25px;
  border: 1px solid black;
  box-shadow: 0 5px 0 #1a1a1a;
  margin: 3px;
}

.add-on-1 {
  background-color: #F3F3F3;
  color: black;
}

.add-on-2 {
  background-color: #141623;
  color: white;
}

/*PAGE 2*/

/*PAGE 3*/
#pg-3 {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-explaination {
  border: 1px solid black;
  box-shadow: 0 5px 0 #1a1a1a;
  background-color: #6022F8;
  width: 100%;
  padding: 10px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 20px;
  box-sizing: border-box;
}

#explaination-headline {
  text-align: left;
  margin-bottom: 60px;
}

.explaination {
  position: relative;
  font-size: 24px;
  text-align: left !important;
  margin-left: 40px;
  width: 70vw;
  top: -40px;
  color: white;
}

.headline-addon-center {
  text-align: left !important;
  margin-left: 40px !important;
  color: white;
}

.headline-addon-center-2 {
  text-align: left !important;
  color: black;
}

/*PAGE 3*/

/*PAGE 4*/
#pg-4 {
  width: 100vw;
  height: 100%;
  padding-bottom: 20px;
}

/* === Base container === */
.dropdown-benefit {
  width: 96vw;
  margin: 30px auto;
  background-color: #f3f3f3;
  border: 1px solid #000;
  border-radius: 20px;
  box-shadow: 0 5px 0 #1a1a1a;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* === Header section (always visible) === */
.benefit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* === Arrow icon styling === */
.benefit-header .arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* === Hidden content area (collapsible) === */
.benefit-content {
  max-height: 0;
  padding: 0 40px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.p-biggifier {
  font-size: 24px !important;
}

/* === Visible content when open === */
.dropdown-benefit.open .benefit-content {
  max-height: 1000px;
  /* Large enough to hold most text, or set based on JS scrollHeight */
  padding-top: 8px;
  padding-bottom: 20px;
}

/* === Arrow flips when open === */
.dropdown-benefit.open .arrow {
  transform: rotate(180deg);
}

/*PAGE 4*/

/*PAGE 5*/
#pg-5 {
  width: 100vw;
  height: 100%;
  padding-bottom: 60px;
}

.video-container-vertical {
  width: 100%;
  max-width: 360px;
  /* Adjust depending on how narrow/tall your video is */
  aspect-ratio: 9 / 16;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-container-vertical video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*PAGE 5*/

/*PAGE 6*/
#pg-6 {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  background-image: url("assets/final-cta-bg.svg");
  /* Update with your path */
  background-size: cover;
  /* Fill the entire section */
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Don't tile */
}

.cta-btn-addon {
  margin-top: 0px !important;
  padding: 80px 160px !important;
  font-size: 36px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/*PAGE 6*/

/*FOUNDER NUMBER*/
#pg-7 {
  width: 100vw;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.add-on-3 {
  background-color: #f3f3f3;
  color: black;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 5px 0 #1a1a1a;
}

.flex-wrapper {
  position: relative;
  top: -40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  box-sizing: border-box;
}

.explanation-text {
  font-size: 18px;
  line-height: 1.6;
  flex: 1 1 300px;
  min-width: 0;
  margin: 0;
}

.side-image {
  width: 150px;
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
  flex-shrink: 0;
}

/*FOUNDER NUMBER*/

/*MEDIA QUERIES*/
/* Mobile */
@media (max-width: 800px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px !important;
  }

  body {
    font-size: 16px;
    line-height: 1.6;
  }

  #inner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
  }

  #left-side,
  #right-side {
    width: 100%;
    max-width: 600px;
  }

  /* Add spacing */
  #right-side {
    margin-top: 2rem;
  }

  #right-side img,
  .media-overlay {
    display: block;
    margin: 0 auto;
  }

  .explaination {
    position: relative;
    font-size: 24px;
    text-align: left !important;
    margin-left: 40px;
    width: 70vw;
    top: -40px;
    color: white;
  }

  .flex-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: nowrap;
    /* Prevent image from wrapping under */
    padding: 2rem;
    margin: 0 auto;
    position: relative;
    top: -50px;
    overflow: hidden;
    /* Add this to contain children */
  }

  .side-image {
    width: 250px;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .cta-btn-addon {
    margin-top: 0px !important;
    padding: 20px 100px !important;
    font-size: 36px !important;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
  }

  #pg-2 {
    width: 100%;
    min-height: 100%;
  }

  #left-side {
    padding-bottom: 50px;
  }

  #inner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
  }

  #left-side,
  #right-side {
    width: 100%;
    max-width: 600px;
  }

  /* Add spacing */
  #right-side {
    margin-top: 2rem;
  }

  #right-side img,
  .media-overlay {
    display: block;
    margin: 0 auto;
  }
}

/* Small Desktop */
@media (max-width: 1200px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* Large Desktop (optional) */
@media (min-width: 1440px) {
  body {
    font-size: 19px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.4rem;
  }
}

/*MEDIA QUERIES*/