/* ===========================================
   Stil der Gästebuchseite – SOS VéloSolex
   =========================================== */
body.gaestebuch {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-style: italic;
  background-color: #626262; /* Hauptfarbe der Seite */
  color: #fff;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/* Hauptcontainer – keine hellen Streifen mehr */
main.container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: rgba(0,0,0,0.25); /* ← HIER */
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Überschriften */
h1 {
  text-align: center;
  font-size: 1.7em;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.05em;
  font-weight: normal;
  color: #f2f2f2;
}

/* Info-Boxen */
.info-box {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  padding: 1.5rem;
  background-color: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255,255,255,0.25);
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ffea91;
  text-decoration: none;
}

/* Gästebuch-Iframe */
iframe.guestbook-frame {
  display: block;
  margin: 2rem auto;
  width: 95%;
  max-width: 700px;
  height: 850px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  background-color: #626262;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

iframe.guestbook-frame:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(255,255,255,0.25);
}

/* Fußnote */
.footer-note {
  text-align: center;
  margin-top: 2.5rem;
  color: #ccc;
  font-size: 0.9em;
}