/* ===============================
   🎁 Geschenkefinder Stylesheet
   Datei: css/stylegeschenkefinder.css
   =============================== */

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: #faf6f2;
  color: #333;
  margin: 0;
  padding: 20px;
  text-align: center;
}

/* Hauptüberschrift */
h1 {
  color: #b22222;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Abschnittsüberschriften */
h2 {
  color: #444;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Schritt-Container */
.step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 20px auto;
  max-width: 800px;
  padding: 25px;
}

/* Buttons-Gruppe */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons allgemein */
button[data-category] {
  background: #f7e0d3;
  border: 2px solid #b22222;
  color: #b22222;
  font-size: 1.1rem;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-width: 160px;
}

/* Hover-Effekt */
button[data-category]:hover {
  background: #b22222;
  color: #fff;
  transform: translateY(-2px);
}

/* Aktiver Button */
button[data-category].active {
  background: #b22222;
  color: #fff;
  box-shadow: 0 0 10px rgba(178,34,34,0.4);
}

/* Preis-Slider */
#step4 input[type="range"] {
  width: 80%;
  max-width: 400px;
  margin: 10px auto;
  display: block;
}

.output {
  margin-top: 8px;
  font-size: 1.1rem;
  color: #555;
}

/* Absende-Button */
#submitBtn {
  background: #b22222;
  color: #fff;
  font-size: 1.2rem;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.2s ease-in-out;
}

#submitBtn:hover {
  background: #8b0000;
  transform: scale(1.05);
}

/* Mobile Ansicht */
@media (max-width: 700px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  button[data-category] {
    width: 80%;
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }
}
