/* =========================================================
   FEIERSTUNDE – KONTAKTSEITE (in sich geschlossen)
   ========================================================= */

/* ===== CONTACT HERO ===== */
.contact-hero {
  padding-block: 90px 60px;
}

.contact-hero .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-hero__title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  max-width: 12ch;
}

.contact-hero__email {
  font-size: 18px;
  color: var(--white);
}

.contact-hero__email:hover {
  color: var(--red);
}

/* ===== CONTACT – Bild + Formular ===== */
.contact {
  padding-bottom: 100px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__image {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--grey-500);
  aspect-ratio: 4 / 5;
}

.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__form-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  color: var(--grey-100);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: var(--grey-500);
  border: 1px solid var(--grey-op-18);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-100);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--grey-op-30);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--grey-100);
}

.form-consent input {
  margin-top: 3px;
  accent-color: var(--red);
}

.form-consent a {
  color: var(--white);
  text-decoration: underline;
}

.contact__submit {
  width: 100%;
}

/* ===== FAQ – 1:1 aus der Home-Seite ===== */
.faq {
  padding-block: 40px 40px;
}

.faq__list {
  max-width: 100%;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--grey-op-30);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  text-align: left;
  font-size: 16px;
  color: var(--white);
}

.faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: var(--white);
}

.faq__icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq__icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 0 4px 24px;
  color: var(--grey-100);
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
}

.faq__item.is-open .faq__answer {
  max-height: 320px;
}

.faq__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-bottom: 90px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero .container {
    align-items: flex-start;
  }
}