/* File: css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #822C31;
  --secondary: #BDCF7C;
  --font: 'Open Sans', sans-serif;
  --text-dark: #333;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 2rem 0;
}
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section {
  margin-bottom: 4rem;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
/* Überschrift sichtbar machen: Abstand oberhalb */
#ausstellung {
  margin-top: 8rem;
}
.table-responsive {
  overflow-x: auto;
}
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
}
/* Tabellenränder für Zellen */
.table-responsive th,
.table-responsive td {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
}
/* Neuer Abstand über der Tabelle */
.kontakttermine .table-responsive {
  margin-top: 1.5rem;
}
.kontakt-info {
  display: grid;
  grid-template-columns: 1fr max(300px, 40%);
  gap: 2rem;
  align-items: center;
}
.kontakt-info img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.kontakt-info .details h2 {
  margin-bottom: 0.5rem;
}
.selbstbedienungsstand,
.hochzeitsfloristik,
.angebote,
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2rem;
}
.section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.section .text p {
  margin-bottom: 1rem;
}
ul {
  list-style: disc inside;
}
footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .kontakt-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
}