/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}
body {
  cursor: none;
  overflow: hidden;
  height: 100vh;
  background-color: #e0e0e0;
  background-image: url('https://www.transparenttextures.com/patterns/dark-circles.png');
}

/* ---------- Custom Cursor ---------- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid red;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
}

.custom-header {
   padding-top: 100px;
  z-index: 10;
  position: relative;
  height: 10vh;
}

.bamboo-img {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(90px, 20vw, 200px);
  z-index: 100;
  pointer-events: none;
  filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.5));
}

/* section1 starts here  */
.section1 {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section {
  width: 75%;
  margin: auto;
}
.submit-container {
  color: red;
  background-color: rgba(255, 255, 255, 0.525);
  text-align: center;
  padding: 10px 0;
}
.submit-container:hover {
  color: white;
  background-color: red;
  transition: 0.2s;
}

.custom-input {
  background-color: rgba(255, 255, 255, 0.525);
  padding-left: 20px;
}
#message-box {
  padding-left: 20px;
}
.details-col p {
  font-weight: 500;
}
.map-placeholder {
  height: 220px;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.thank-you-text {
  font-family: 'Great Vibes', cursive;
  color: rgb(87, 86, 86);
  font-size: clamp(30px, 2vw, 40px);
}
