/* --------------------------------------
   Forms & Inputs (global für alle Seiten)
----------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

/* Labels */
label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* Textarea Resizing kontrollieren */
textarea {
  resize: vertical;
}

/* --------------------------------------
   Buttons (global)
----------------------------------------- */
.btn-primary {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* --------------------------------------
   Cards (Leistungen, Testimonials usw.)
----------------------------------------- */
.leistung-item,
.testimonial-item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem;
}

.leistung-item:hover,
.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
