/*FOOTER - Formatierung*/
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer{
  margin-top: 50px;
}


/*Contact - Text*/
.contact-section {
  padding: 150px 10%;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #ff9800;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-social img {
  width: 32px;
  margin: 0 8px;
  transition: transform 0.2s;
}

.contact-social img:hover {
  transform: scale(1.1);
}


/*Contact - Input*/
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: #ff9800;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: #e68900;
  transform: scale(1.05);
}
