
/* Reset & Basis */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  background: #f9fafb;
  color: #1f2937;
}
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 2rem 0; }

/* Navigation */
nav {
  background: linear-gradient(90deg, #10b981, #0ea5e9);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
nav ul li a {
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}
nav ul li a:hover {
  background: rgba(255,255,255,0.25);
}

/* Mobile nav toggle */
.nav-toggle { display: none; cursor: pointer; font-size: 1.5rem; }
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    display: none;
    border-bottom: 2px solid #0ea5e9;
  }
  nav ul li a { color: #0e7490; }
  nav ul.show { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero */
header.hero {
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
}
header.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}
header.hero p {
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

/* Sections */
section {
  margin-top: 4rem;
}
section h2 {
  color: #0e7490;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  margin-top: 0.5rem;
  margin-bottom: 0.5rem;

  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  background: #111827;
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
  color: #9ca3af;
}
footer p { margin: 0.5rem 0; }



.faq-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 1.5rem 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #00b894; /* grünlich */
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: #f0f4f8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 1rem 1.5rem;
    max-height: 500px; /* groß genug für den Inhalt */
}

.faq-img {
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
    border-radius: 0.5rem;
}

.arrow {
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(180deg);
}

.card {
    display: block;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.card-icon {
    width: 32px;       /* Breite */
    height: 32px;      /* Höhe */
    vertical-align: middle; /* Text mittig ausrichten */
    margin-right: 0.5rem;   /* Abstand zum Text */
}



.book {
    background: #fdf6e3;
    border: 2px solid #d4b483;
    border-radius: 12px;
    padding: 1rem;
    max-width: 1700px;
    height: 500px;
    margin: 2rem auto;
    text-align: center;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 7rem;
}

.images img {
    max-width: 45%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.buttons {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button {
    padding: 0.5rem 1rem;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #45a049;
}


/* Cookie

 */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 16px 20px;
    max-width: 280px;
    font-size: 14px;
    color: #333;
    display: none;
    flex-direction: column;
    gap: 10px;
    animation: fadeIn 0.4s ease;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 6px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-buttons .accept {
    background-color: #4caf50;
    color: white;
}

.cookie-buttons .accept:hover {
    background-color: #43a047;
}

.cookie-buttons .decline {
    background-color: #f44336;
    color: white;
}

.cookie-buttons .decline:hover {
    background-color: #e53935;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-container {
    margin: 30px auto;
    max-width: 400px;
    font-family: Arial, sans-serif;
}
.status-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
}
.online { background: #28a745; }
.offline { background: #dc3545; }



.status-card {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0.5rem auto;
    width: 560px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.status-card h2 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.status-box {
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

.online { background: #28a745; }
.offline { background: #dc3545; }




.status-grid {
    display: flex;
    flex-wrap: wrap;         /* Karten gehen in die nächste Reihe, wenn nicht genug Platz */
    gap: 20px;               /* Abstand zwischen den Karten */
    justify-content: center; /* Zentriert die Karten in der Zeile */
    margin: 30px auto;
    max-width: 600px;        /* optional: maximale Breite für die gesamte Grid */
}

.status-card {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: calc(50% - 10px); /* zwei Karten pro Reihe, minus Abstand */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.status-card h2 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.status-box {
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

.online { background: #28a745; }
.offline { background: #dc3545; }

/* Responsive: auf kleinen Bildschirmen nur eine Karte pro Reihe */
@media (max-width: 500px) {
    .status-card {
        width: 100%;
    }
}


