:root {
  --deep-teal: #0f3b40;
  --ocean: #1c6b78;
  --coral: #e8703f;
  --sand: #f3ead9;
  --ink: #10262a;
  --white: #ffffff;
  --font-display: "Archivo Black", sans-serif;
  --font-body: "Work Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--deep-teal);
  color: var(--white);
  padding: 18px 0;
}
.site-header .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.logo-dot { color: var(--coral); }
.tagline {
  font-size: 0.85rem;
  color: #cfe4e6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  width: 100%;
  line-height: 0;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Heading row: "Lass uns shooten" + the neon-orange "?" easter-egg button next to it */
.heading-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1cm;
  margin: 0 0 14px;
}
.heading-row h1 { margin: 0; }

.hero-easter-egg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.question-mark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ff6a1a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px 5px rgba(255,106,26,0.7), 0 0 28px 10px rgba(255,106,26,0.4);
  animation: pulse-glow 2s ease-in-out infinite;
  transition: transform .2s ease;
}
.hero-easter-egg:hover .question-mark { transform: scale(1.08); }
.hint-text {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--deep-teal);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: lowercase;
  white-space: nowrap;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 14px 5px rgba(255,106,26,0.7), 0 0 28px 10px rgba(255,106,26,0.4); }
  50% { box-shadow: 0 0 20px 7px rgba(255,106,26,0.9), 0 0 36px 14px rgba(255,106,26,0.55); }
}
@media (max-width: 640px) {
  .question-mark { width: 54px; height: 54px; font-size: 1.7rem; }
  .hint-text { font-size: 0.72rem; padding: 2px 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .question-mark { animation: none; }
}

/* Wave divider — signature element bridging the beach imagery and the form */
.wave-divider {
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.wave-divider path {
  fill: var(--deep-teal);
}

/* Contact section */
.contact-section {
  background: var(--deep-teal);
  color: var(--white);
  padding: 56px 0 72px;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 8px;
  font-weight: 600;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.intro {
  color: #d8e9ea;
  max-width: 46ch;
  margin: 0 0 36px;
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-teal);
}
.required { color: var(--coral); }

input[type="text"],
input[type="email"] {
  border: 1.5px solid #d9cfba;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--sand);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input::placeholder { color: #8a9a9c; }
input:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(28,107,120,0.18);
}
input:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.submit-btn {
  margin-top: 24px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.submit-btn:hover { background: #d55f30; transform: translateY(-1px); }
.submit-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #c9d6d6;
  padding: 22px 0;
  font-size: 0.85rem;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer a {
  color: var(--sand);
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 640px) {
  .contact-form { padding: 20px; }
  .form-row { flex-direction: column; gap: 16px; }

  /* Verhindert, dass iOS Safari beim Fokussieren von Eingabefeldern
     automatisch reinzoomt (passiert bei Schriftgröße < 16px) */
  input[type="text"],
  input[type="email"] {
    font-size: 16px;
    padding: 13px 14px;
  }

  /* Größere, leichter tippbare Buttons auf dem Handy */
  .submit-btn {
    width: 100%;
    padding: 15px 24px;
  }

  .contact-section { padding: 40px 0 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .submit-btn { transition: none; }
}
