body {
  margin: 0;
  overflow-y: hidden;
  font-family: 'Playfair Display', serif;
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.section {
  scroll-snap-align: start;
  flex: 0 0 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  flex-direction: column;
  padding: 20px;
}

p {
  margin: 2rem;
}

h2 {
  margin-bottom: 20px;
}

.buying-panels {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.panel {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  width: 40%;
}

.wheel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 300px;
  height: 300px;
  position: relative;
}

.season {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.season.spring {
  background-color: #6FBF73;
  color: #333333;
  font-weight: bold;
}

.season.summer {
  background-color: #FFC107;
  color: #333333;
  font-weight: bold;
}

.season.autumn {
  background-color: #FF7043;
  color: #333333;
  font-weight: bold;
}

.season.winter {
  background-color: #29B6F6;
  color: #333333;
  font-weight: bold;
}

.season:hover {
  transform: scale(1.1);
}

.season-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

button {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 20px;
  font-family: 'Edu AU VIC WA NT Pre', sans-serif;
  font-weight: 700;
}

.petal {
  position: fixed;
  top: -50px;
  width: 20px;
  height: 20px;
  background-color: #fdb8ff;
  border-radius: 50%;
  opacity: 0.7;
  animation: fall 5s linear infinite, sway 1.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
}

.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}
