/* Grundlayout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
}

a {
  color: #ffb347;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header / Navigation */
header {
  background: #eeeeee;
  border-bottom: 2px solid #ff9f1c;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav a {
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #111111;
  border: 1px solid transparent;
}

nav a:hover {
  border-color: #ff9f1c;
  background: #fff4e6;
}


/* Logo im Header */
.logo img {
  height: 48px;          /* ideale Größe für Desktop */
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

/* Hauptinhalt */
.main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}

h1, h2, h3 {
  color: #ffffff;
  margin-top: 0;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-text {
  flex: 1 1 260px;
}

.hero-image {
  flex: 1 1 260px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* Boxen */
.card {
  background: #fff4e6;      /* helles Orange */
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid #ffd3a6; /* leichte Abgrenzung */
}


.card h2 {
  margin-top: 0;
}

/* Öffnungszeiten-Tabelle */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #ffd3a6;
  color: #111111;
}

.table tr:nth-child(odd) {
  background: #fff8f0;
}


/* Buttons / Links */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background: #ff9f1c;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
}

.btn:hover {
  background: #ffb347;
  text-decoration: none;
}

/* Kalender-Container */
.calendar-wrapper {
  margin-top: 1rem;
  overflow-x: auto;
}

.calendar-wrapper iframe {
  width: 100%;
  min-height: 600px;
}

/* Anfahrt Karte */
.map-wrapper iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
}

/* Footer */
footer {
  border-top: 1px solid #ffd3a6;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: #111111;
  background: #fffdfb;
}

footer a {
  color: #111111;
}

.hero-bg {
  background: url("_img/header.png") center/cover no-repeat;
  position: relative;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


/* Responsive */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .logo img {
    height: 40px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #111111 !important;
}

p, li, td, th, a {
  color: #111111 !important;
}

.table tr:nth-child(odd) td {
  color: #111111 !important;
}

nav a:hover {
  background: #ffe6c7;  /* ein ganz zarter Orange-Ton */
  border-color: #ff9f1c;
  color: #111111 !important;
}

* {
  color: inherit;
}