body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #222;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  background-image: url("Comb.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  /* Enable scroll-snap on main page */
  scroll-snap-type: y mandatory;
  overflow-y: auto; /* Use auto to avoid forcing a scrollbar */
}

.bee-image {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.hero {
  position: fixed;
  font-size: 20px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 1rem 1rem;
  z-index: 100;
  text-align: center;
  pointer-events: none;
  
}

.logo {
  font-size: 40px;
  font-weight: bolder;
}

.tagline {
  font-size: 30px;
  padding-bottom: 1rem;
}

.section {
  display: flex;
  flex-direction: column;
  text-align: justify;
  padding: 1rem;
  border-radius: 1rem;
  min-height: 20vh; /* Full viewport height */
  margin-top: 25rem;
  justify-content: center;
  background: rgba(255, 225, 0, 0.22);
  backdrop-filter: blur(10px);
}

button {
  position: fixed;
  bottom: 10%;
  right: 10%;
  background-color: #ffe100;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer{
    margin-top: 1rem;
    font-size: 20px;
    padding: 3rem 1rem 1rem;
  z-index: 100;
  text-align: center;
}