/* Schild Feuerwehrbedarf – Website
   Farben orientieren sich am bestehenden Logo (Rot/Blau). */

:root {
  --color-red: #cc0000;
  --color-red-dark: #a30000;
  --color-blue: #002e99;
  --color-blue-dark: #001f66;
  --color-blue-light: #0057cc;
  --color-bg: #f6f7f9;
  --color-card: #ffffff;
  --color-text: #1c1f26;
  --color-muted: #5a6270;
  --color-border: #e3e6ec;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(20, 30, 60, 0.08);
  --shadow-hover: 0 8px 24px rgba(20, 30, 60, 0.14);
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-blue-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 6px rgba(20, 30, 60, 0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--color-blue-dark);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: #eef2fb;
  color: var(--color-blue-dark);
  text-decoration: none;
}

/* Hinweisleiste (frei editierbar, siehe Kommentar in index.html) */
.notice-bar {
  background: #fff4d6;
  border-bottom: 1px solid #f0d488;
}

.notice-bar .container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
}

.notice-bar .notice-icon {
  flex: none;
  font-size: 1.45rem;
  line-height: 1.4;
}

.notice-bar p {
  margin: 0;
  color: #6b4f04;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.notice-bar strong {
  color: #4a3600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
  color: #fff;
  padding: 56px 0 64px;
}

.hero .container {
  display: grid;
  gap: 28px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 72ch;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-red-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--color-blue-dark);
  border-color: #fff;
}

.btn-outline:hover {
  background: #eef2fb;
  color: var(--color-blue-dark);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--color-blue-dark);
}

.section-title .accent {
  color: var(--color-red);
}

.section-subtitle {
  color: var(--color-muted);
  margin: 0 0 8px;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  color: var(--color-blue-dark);
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.info-list li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.info-list .icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2fb;
  color: var(--color-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hours-highlight {
  background: #fff6f6;
  border: 1px solid #f3caca;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}

.hours-highlight .hours-day {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.hours-highlight .hours-icon {
  font-size: 1.1rem;
}

.hours-highlight .time {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-red-dark);
}

.hours-highlight .and {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shipping-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px 22px;
  background: #eef2fb;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.shipping-note .icon {
  flex: none;
  font-size: 1.6rem;
}

.shipping-note p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.badge {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 420px;
  padding: 40px 24px;
  background: linear-gradient(135deg, #eef2fb, #e4ebf9);
}

.map-placeholder strong {
  color: var(--color-blue-dark);
  font-size: 1.05rem;
}

.map-placeholder p {
  max-width: 46ch;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.map-placeholder .btn {
  margin-top: 6px;
}

.contact-details dt {
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-top: 14px;
}

.contact-details dt:first-child {
  margin-top: 0;
}

.contact-details dd {
  margin: 2px 0 0;
}

/* Legal pages */
.legal-content h2 {
  color: var(--color-blue-dark);
  font-size: 1.2rem;
  margin-top: 32px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

/* Footer */
.site-footer {
  background: #0b1830;
  color: #cfd6e6;
  padding: 40px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 24px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 12px;
}

.footer-grid a {
  color: #cfd6e6;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  font-size: 0.85rem;
  color: #8b93a7;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
}

.section-link {
  font-weight: 600;
  color: var(--color-blue-light);
  white-space: nowrap;
}

.section-link:hover {
  color: var(--color-blue-dark);
}

.besuch-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin: 16px auto;
  padding: 10px 20px;
  background: #eef2fb;
  border: 2px solid var(--color-blue);
  border-radius: 999px;
  color: var(--color-blue-dark);
  font-weight: 700;
  text-align: center;
  white-space: normal;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.besuch-link:hover {
  background: var(--color-blue);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.besuch-link-arrow {
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
}

/* Mobile */
@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 8px 0 14px;
  }

  .main-nav a {
    display: block;
    padding: 12px 10px;
  }

  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    padding: 40px 0 44px;
  }

  .section {
    padding: 40px 0;
  }
}
