/* Basis-Styling */
body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  background-color: #F7F7FA;
  color: #444654;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
header, footer {
  background-color: #7D5AAE;
  color: white;
  text-align: center;
  padding: 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

nav a {
  color: #F5D6EB;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
  outline: none;
}

nav a[aria-current="page"] {
  text-decoration: underline;
  cursor: default;
}

/* Hauptbereich */
main {
  flex: 1;
  max-width: 900px;
  margin: 40px auto 40px;
  padding: 0 20px;
}

/* Spezielles für Startseite: Markenname zentrieren */
main.startseite {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

main.startseite > div {
  max-width: 700px;
}

main.startseite .markenname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: #B189DD;
  margin-bottom: 12px;
  margin-top: 0;
  text-shadow: 0 2px 16px rgba(203, 206, 218, 0.25);
  animation: fadeInDown 1s;
}

/* Überschriften */
h1, h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #7D5AAE;
  margin-top: 0;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Abschnitte */
section {
  background: #F5D6EB;
  border-radius: 12px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(203, 206, 218, 0.6);
}

/* Listen */
ul {
  list-style: inside disc;
  padding-left: 0;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #444654;
}

ul li {
  margin-bottom: 10px;
}

/* Referenzen */
blockquote {
  font-style: italic;
  border-left: 4px solid #B189DD;
  padding-left: 20px;
  margin: 0;
  color: #444654;
  line-height: 1.5;
}

cite {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #7D5AAE;
  font-size: 1rem;
}

/* Kontaktseite */
p.contact-info {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #444654;
  text-align: center;
}

p.contact-info a {
  color: #B189DD;
  text-decoration: none;
  font-weight: 700;
}

p.contact-info a:hover,
p.contact-info a:focus {
  text-decoration: underline;
  outline: none;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #7D5AAE;
  cursor: pointer;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #CBCEDA;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
  resize: vertical;
  color: #444654;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border-color: #F07FBB;
  outline: none;
}

textarea {
  min-height: 110px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #7D5AAE;
  margin-bottom: 25px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  color: #B189DD;
  text-decoration: none;
}

.checkbox-label a:hover,
.checkbox-label a:focus {
  text-decoration: underline;
  outline: none;
}

button[type="submit"] {
  background-color: #F07FBB;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(240,127,187,0.6);
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

button[type="submit"]:hover,
button[type="submit"]:focus {
  background-color: #B189DD;
  outline: none;
}

/* Responsive Design */
@media (max-width: 600px) {
  main {
    margin: 30px auto 30px;
    padding: 25px 20px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  ul li {
    font-size: 1rem;
  }
}

/* Animation für Markenname */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px);}
  100% { opacity: 1; transform: translateY(0);}
}