*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Full-screen meadow scene */
.scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sky gradient */
.sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #b9e8ff 0%, #e4f6ff 45%, #fffbe9 100%);
  z-index: -4;
}

/* Sun */
.sun {
  position: absolute;
  top: 8%;
  left: 14%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, #fff6b5, #ffc928);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 200, 50, 0.7);
  z-index: -2;
}

/* Clouds */
.cloud {
  position: absolute;
  width: 180px;
  height: 70px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow:
    -40px 10px 0 #ffffff,
    40px 5px 0 #ffffff,
    10px -10px 0 #ffffff;
  opacity: 0.9;
  z-index: -3;
}

.cloud-left {
  top: 14%;
  right: 18%;
}

.cloud-right {
  top: 26%;
  left: 55%;
}

/* Hills and grass */
.hill {
  position: absolute;
  bottom: -12vh;
  width: 60vw;
  height: 40vh;
  background: radial-gradient(circle at top, #9af6a0, #43b862);
  border-radius: 50%;
  z-index: -1;
}

.hill-left {
  left: -10vw;
}

.hill-right {
  right: -18vw;
}

.grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18vh;
  background: linear-gradient(to top, #3aa74e 0%, #69d168 70%, transparent 100%);
  z-index: -1;
}

/* Centered content */
.content {
  position: relative;
  text-align: center;
  padding: 24px;
}

.logo {
  max-width: 300px;
  width: min(80vw, 300px);
  height: auto;
  margin: 0 auto 24px;
}

h1 {
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2876d8;
  margin-bottom: 8px;
}

p {
  font-weight: 400;
  font-size: 1rem;
  color: #334;
}

/* Small screens */
@media (max-width: 640px) {
  .sun {
    width: 100px;
    height: 100px;
    top: 6%;
    left: 6%;
  }

  .cloud-left,
  .cloud-right {
    width: 140px;
    height: 54px;
  }

  .hill {
    width: 80vw;
    height: 34vh;
  }

  .logo {
    margin-bottom: 18px;
  }
}



