/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

/* Scene Styling */
.scene {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  padding: 2rem;
  transition: background 0.5s ease;
}

/* Overlay Text */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
}

.overlay h1, .overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  margin: 1rem 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff8800;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ffaa00;
}

/* Form Section */
.form-section input {
  padding: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 300px;
  border: none;
  border-radius: 4px;
}

.output {
  margin-top: 1rem;
  font-style: italic;
  color: #ccc;
}
