#waterwheel-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

#waterwheel-section {
    display: block;
  }
  #experience {
    display: none;
  }

  /* Mobile view (max-width: 768px is common breakpoint) */
  @media screen and (max-width: 768px) {
    #waterwheel-section {
      display: none;
    }
    #experience {
      display: block;
    }
  }

/* ============================
   RESPONSIVE FIXES FOR WATERWHEEL
   ============================ */

/* Small Laptops (1025px - 1366px) */
@media (max-width: 1366px) {
  #waterwheel-section {
    height: 95vh;
  }
}

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) {
  #waterwheel-section {
    height: 90vh;
  }
}

/* Canvas will be handled by Three.js resize in experience.js */

