/* Scrolly Section Styles */
#scrolly {
  position: relative;
}

.scroll__graphic {
  position: sticky;
  top: 0;
  top: 40px;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  max-width: 1200px;
  margin: auto;
}

.chart {
  width: 100%;
  /* height: 100%; */
  height: 100vh;
}

.chart img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  object-position: top;
  display: block;
}

.scroll__text {
  position: relative;
  z-index: 1;
}

/* Typography */
#scrolly {
  font-family: "ArtHouseRegular", sans-serif;
  /* color: #3a3a3a !important; */
}

#scrolly .step-text {
  background-color: white;
  color: #474747;
  /* border: 1px solid #ababab; */

  /* border-radius: 10px; */
  padding: 20px 30px;
  width: 500px;
  line-height: 1.3;

  /* border: 1px solid #d2d2d2; */
  box-shadow: 0px 0px 14px 0px #cbcbcb;
}

#scrolly .left {
  transform: translateX(-20%);
}

#scrolly .right {
  transform: translateX(20%);
}

#scrolly .step-text .heading {
  margin: 10px 0 20px 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

#scrolly .step-text .flag {
  width: 26px;
  height: 17px;
  border: 1px solid #474747;
  margin: auto 0;
}

#scrolly .step-text .country {
  margin: 0;
  font-size: 17px;
  text-transform: uppercase;
  font-family: "ArtHouseMed", sans-serif;
}

#scrolly .step-text p {
  /* margin: 5px 0; */
  margin: 0;
}

#scrolly .step-text .name {
  font-size: 20px;
  font-weight: 500;
  font-family: "ArtHouseMed", sans-serif;
}

#scrolly .step-text p.orange {
  color: #DA693D;
}

#scrolly .step-text p.purple {
  color: #9A39CF;
}

#scrolly .step-text .team {
  font-size: 16px;
  /* font-weight: 700; */
  margin-bottom: 10px;
  font-family: "ArtHouseMed", sans-serif;
}

#scrolly .step-text .description {
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "ArtHouseRegular", sans-serif !important;
  line-height: 1.2;
}

/* Step Styles */
.step {
  margin: 0 auto;
  padding: 1rem;
  min-height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 10vh; */
}

.step:first-child,
.step:last-child {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.step:last-child {
  min-height: auto;
  height: auto;
}

.step:last-child .chart {
  height: auto;
}

.step:last-child .chart img {
  height: auto;
  object-fit: contain;
}

/* Background Wrapper */
.background-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

/* Columns Layout */
.columns {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 1rem -0.5rem;
}

.columns div {
  flex: 1;
  padding: 0 0.5rem;
  min-width: 0;
}

/* Scroll Indicator */
#scroll-indicator {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid white;
  margin: 10px auto 0;
  animation: bounce 2s infinite !important;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Media Queries */
@media (max-width: 720px) {
  .step {
    /* padding: 0.5rem; */
    padding: 0;
  }

  #scrolly .scroll__graphic {
    top: 10% !important;
  }

  #scrolly .step-text {
    padding: 10px 20px;
    /* box-shadow: 2px 2px 0 0 #474747; */
  }

  #scrolly .step-text .country,
  #scrolly .step-text .name {
    font-size: 16px;
  }

  #scrolly .step-text .team,
  #scrolly .step-text .description {
    font-size: 14px;
  }
}

/* Remove pseudo-elements */
#scrolly *::before,
#scrolly *::after {
  content: none;
}