/* ====== Basis-Layout mit Sticky Footer ====== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body, p, a, td, th, input, textarea, button, label {
  font-family: Verdana, Arial, sans-serif;
}

main {
  flex: 1;
}

footer {
  background-color: #f4f4f4; /* das gleiche Grau wie nav */
  padding: 40px 0;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

nav ul li a:hover {
  background-color: #ddd;
  color: #007bff;
}

/* Navigation Schrift */
nav, nav ul, nav li, nav a {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1rem; /* optional, f?r Einheitlichkeit */
}

/* Ueberschriften */
h1, h2, h3 {
  color: #000000;
  font-family: Verdana, Arial, sans-serif;
}

/* Links & Akzente 08.09.2025 */
a, .link-accent {
  color: var(--accent);           /* Hauptfarbe */
  text-decoration: none;          /* keine Unterstreichung */
  transition: color 0.25s ease;   /* sanfter Farbwechsel beim Hover */
}

a:hover, .link-accent:hover {
  color: var(--accent-hover);     /* Hover-Farbe */
  text-decoration: none;          /* auch beim Hover keine Unterstreichung */
}

/* Akzent-Farben */
:root {
  --bg: #E9EAE4;           /* Hintergrund */
  --text: #1a1a1a;         /* Standard-Text */
  --accent: #0e7490;       /* Akzent-Blau */
  --accent-hover: #0c617a; /* Hover-Blau */
}


/* Grundelemente */
body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, sans-serif;
}

/* Links - Loeschvormerkung
a, .link {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
}
*/

/* Kalender-Stile */
#kalender {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.monat {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  vertical-align: top;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 1px 4px #ccc;
}

.monat-titel {
  background: #f5f5f5;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
}

.tage {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #ccc;
}

.tag {
  padding: 6px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.belegt { background: #ffb3b3; }
.angefragt { background: #ffe099; }
.frei { background: #c9f7c9; }
.leer { background: #f9f9f9; }
.wochentag {
  background: #e0e0e0;
  font-weight: bold;
  font-size: 12px;
}

/* Legende */
.legende {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  align-items: center;
}
.legende div {
  display: flex;
  align-items: center;
}
.farbe {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border: 1px solid #999;
  border-radius: 3px;
}
.farbe.frei { background: #c9f7c9; }
.farbe.angefragt { background: #ffe099; }
.farbe.belegt { background: #ffb3b3; }

/* Wrapper fuer Layoutzentrierung */
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* OpenStreetMap proportional und floating */
.map-wrapper-float {
  max-width: 700px;         /* optionale maximale Breite */
  margin: 1.5em auto;       /* zentriert mit Abstand */
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;      /* 4:3 Format */
  height: 0;
  overflow: hidden;
  border-radius: 16px;      /* abgerundete Ecken */
  box-shadow: 0 6px 16px rgba(0,0,0,0.2); /* kr?ftigerer Schatten */
}

.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.map-wrapper-float small {
  display: block;
  text-align: right;
  margin-top: 0.5em;
}

.map-wrapper-float a {
  color: #004080;
  text-decoration: none;
}

.map-wrapper-float a:hover {
  text-decoration: underline;
}

/* Flash-Button-Footer 28.08.2025 */
.flash-button {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  color: #E4E6E5;               /* Standard-Schriftfarbe */
  background: #22365C;           /* Button-Hintergrund */
  border-radius: 12px;           /* leicht abgerundete Ecken */
  border: 2px solid #E4E6E5;    /* Rahmenfarbe */
  box-shadow: 0 0 8px #E4E6E5;  /* leichter Schatten */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;         /* keine Unterstreichung */
}

.flash-button::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
 }

.flash-button:hover {
  background: #4F709E;            /* Hintergrund beim Hover */
  color: #add8e6;                  /* Schriftfarbe beim Hover */
  box-shadow: 0 0 15px #E4E6E5, 0 0 20px #22365C inset;
  transform: scale(1.05);
  text-decoration: none;           /* keine Unterstreichung auch beim Hover */
 }

footer table {
  margin: 0 auto;       /* Tabelle horizontal zentrieren */
  border-collapse: collapse;
}

footer td {
  padding: 0 10px;      /* Abstand zwischen den Buttons */
}


/* Responsive Anpassung f?r Mobilger?te 28.08.2025 */
@media (max-width: 600px) {
  footer table, footer tr, footer td {
    width: 100% !important;
    display: block;
    text-align: center;
  }

  .flash-button {
    display: inline-block;
    width: auto;
    margin: 6px 0;
  }


 /* Bilder innerhalb von Links ausschließen - am 05.092025 deaktiviert
 a img {
   display:none; 
   }
*/

---
Wenn es um eine schnelle Lösung geht:
```css
a[href^='http'] {background-image:none;}

	
/* Body mit optionalem Hintergrund */
body.mit-hintergrund {
  background-image: url('./images/succulent.jpg');
  background-repeat: repeat;
  background-size: auto;
}

/* Accordion für Gästemappe 11.03.2026 */

.accordion-content{
    display:block;
}

.accordion-title.is-clickable{
    cursor:pointer;
}

.accordion-content.is-hidden{
    display:none;
}

.accordion-title.is-clickable::before {
	content: "▾ ";
	font-weight: normal;
}

/* Accordion Panels 11.03.2026 */

.accordion-section{
    margin:18px 0;
    border-radius:10px;
    overflow:hidden;
}

.accordion-title{
    background:#f4f6f8;
    padding:14px 16px;
    font-weight:600;
    cursor:pointer;
    border:1px solid #dcdcdc;
    border-radius:10px;
}

.accordion-title:hover{
    background:#e9edf1;
}

.accordion-content{
    padding:16px;
    border:1px solid #dcdcdc;
    border-top:none;
    background:#ffffff;
}	
	
/* Ende */