body {
  background: linear-gradient(180deg, #fcfaf7 0%, #f4ede5 100%);
  color: #2f2621;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}


/* Hero */
.kontakt-hero {
  text-align: center;
  padding: 100px 20px 60px;
}
.kontakt-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.kontakt-hero p {
  font-size: 1.25rem;
  opacity: 0.8;
}

/* Kontaktformular */
.kontakt-form .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.68);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(128, 102, 82, 0.12);
  border: 1px solid rgba(117, 93, 77, 0.12);
}
.input-group {
  display: flex;
  gap: 15px;
}
textarea {
  resize: none;
}
input, select, textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(117, 93, 77, 0.16);
  background-color: rgba(255, 252, 248, 0.92);
  color: #2f2621;
  font-size: 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}
input:focus, select:focus, textarea:focus {
  border-color: #c49b72;
}
textarea::placeholder,
input::placeholder {
  color: #9b8c82;
}
button {
  padding: 15px 25px;
  background-color: #2f2621;
  color: #fffaf6;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
button:hover {
  background-color: #8b6f5a;
  transform: scale(1.03);
}
#date {
  max-width: 100%;
  min-width: 100%;
}
#message {
  min-height: 120px;
  max-width: 100%;
  min-width: 100%;
  max-height: 200px;
  min-height: 200px;
}

/* FLASH MESSAGE */
#flash {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 90%;
    text-align: center;
}

#flash.show-success {
    display: block !important;
    background: #4CAF50;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    opacity: 1;
    bottom: 30px;
}

#flash.show-error {
    display: block !important;
    background: #f44336;
    color: white;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
    opacity: 1;
    bottom: 30px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        bottom: -120px;
    }
    to {
        opacity: 1;
        bottom: 30px;
    }
}

#flash.show-success,
#flash.show-error {
    animation: slideUp 0.4s ease forwards;
}
