/* ===== Reset & Basis ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #3a1c0e;
  --color-bg-2: #512b19;
  --color-gold: #c9a70d;
  --color-gold-light: #fddc04;
  --color-cream: #f7efe2;
  --color-text: #f7efe2;
  --color-muted: #e8c98a;
}

html {
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, var(--color-bg-2), var(--color-bg));
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

/* ===== Logo-Container ===== */
.logo-wrap {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: 12px;
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

/* ===== Logo ===== */
.logo {
  width: 400px;
  max-width: 80vw;
  height: auto;
  display: block;
}

/* ===== Wartungshinweis ===== */
.maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(201, 167, 13, 0.10);
  border: 1px solid rgba(253, 220, 4, 0.40);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  max-width: 800px;
  width: 100%;
}

.maintenance h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--color-gold-light);
  letter-spacing: 0.5px;
}

.maintenance p {
  color: var(--color-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.maintenance .contact-info {
  margin-top: 0.5rem;
  color: var(--color-cream);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.maintenance .contact-info a {
  color: var(--color-gold-light);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.maintenance .contact-info a:hover {
  text-decoration: underline;
}

/* Spinner-Animation */
.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(253, 220, 4, 0.25);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Verkaufsdaten-Bild ===== */
.sales-figure {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sales-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(253, 220, 4, 0.30);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ===== Stahler Bier Fest ===== */
.fest-figure {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.fest-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(253, 220, 4, 0.30);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ===== Google Maps Karte ===== */
.map-section {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: 1px solid rgba(253, 220, 4, 0.30);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .map-iframe {
    height: 280px;
  }
}

/* ===== Footer ===== */
.footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===== Responsive Anpassungen ===== */
@media (max-width: 600px) {
  .page {
    padding: 2rem 1rem 1.5rem;
    gap: 1.5rem;
  }

  .logo-wrap {
    padding: 0.75rem;
  }

  .logo {
    width: 220px;
  }
}

@media (min-width: 901px) {
  .page {
    padding-top: 4rem;
  }
}

@media (min-width: 1100px) {
  .page {
    padding-top: 5rem;
  }
}