/* ============================================================
   Kontakt – Styles spécifiques à la page
   ============================================================ */

/* ─── HERO ──────────────────────────────────────────────────── */
.kontakt-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    #b71c1c 0%,
    #8b2010 18%,
    #5a4020 40%,
    #2d4a1e 65%,
    #1a3320 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

.kontakt-hero-content {
  text-align: center;
  padding: 64px 40px 96px;
  max-width: 720px;
}

.kontakt-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}

.kontakt-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.85);
  font-weight: 400;
}

/* ─── BODY ──────────────────────────────────────────────────── */
.kontakt-body {
  background: #fff;
  padding: 64px 0 80px;
}

/* ─── LEFT COLUMN ───────────────────────────────────────────── */
.kontakt-left-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #c0392b;
  margin-bottom: 8px;
}

.kontakt-left-sub {
  font-size: .97rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 32px;
}

/* ─── CONTACT ITEMS ─────────────────────────────────────────── */
.kontakt-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kontakt-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.kontakt-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}

.kontakt-item-label {
  font-size: .8rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.kontakt-item-value {
  font-size: 1rem;
  font-weight: 700;
  color: #c0392b;
  text-decoration: none;
}

.kontakt-item-value:hover { color: #a93226; }

.kontakt-item-note {
  font-size: .82rem;
  color: #888;
}

/* ─── INFO BOXES ────────────────────────────────────────────── */
.kontakt-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.kontakt-info-box--gold {
  background: #fffbea;
  border-left: 4px solid #d4a017;
}

.kontakt-info-box--green {
  background: #f0f7f2;
  border-left: 4px solid #1a3320;
}

.kontakt-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.kontakt-info-icon svg {
  width: 24px;
  height: 24px;
}

.kontakt-info-title {
  font-size: .97rem;
  font-weight: 700;
  color: #c0392b;
  margin: 0 0 4px;
}

.kontakt-info-text {
  font-size: .88rem;
  color: #555;
  margin: 0;
}

.lang-tag {
  font-size: .75rem;
  font-weight: 700;
  background: #e8e8e8;
  color: #444;
  padding: 1px 5px;
  border-radius: 4px;
}

/* ─── FORM CARD ─────────────────────────────────────────────── */
.kontakt-form-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px 40px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.kontakt-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #c0392b;
  margin-bottom: 28px;
}

/* ─── FORM FIELDS ───────────────────────────────────────────── */
.kf-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #c0392b;
  margin-bottom: 6px;
}

.kf-required { color: #c0392b; }

.kf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: .93rem;
  color: #333;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.kf-input:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

.kf-input::placeholder { color: #bbb; }

.kf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.kf-textarea {
  height: 130px;
  resize: vertical;
}

/* ─── SUBMIT BUTTON ─────────────────────────────────────────── */
.kf-submit {
  width: 100%;
  padding: 14px 24px;
  background: #d4a017;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 18px rgba(212,160,23,.35);
}

.kf-submit svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a1a;
}

.kf-submit:hover {
  background: #f0b820;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,.5);
}

.kf-note {
  text-align: center;
  font-size: .8rem;
  color: #aaa;
  margin: 12px 0 0;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 600px) {
  .kontakt-hero         { min-height: 220px; }
  .kontakt-hero-content { padding: 52px 24px 80px; }
  .kontakt-body         { padding: 40px 0 56px; }
  .kontakt-form-card    { padding: 28px 20px 24px; }
}
