body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-image: url('extras/737.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
  }
  
  header {
    text-align: center;
    margin-top: 3rem;
  }

  .animated-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
    text-shadow: 0 0 20px #43c6ac, 0 0 40px #191654;
  }

  @keyframes glow {
    from { text-shadow: 0 0 10px #43c6ac, 0 0 20px #191654; }
    to { text-shadow: 0 0 30px #43c6ac, 0 0 60px #191654; }
  }
  
  .center-text {
    text-align: center;
    margin: 2rem 0;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
  }
  
  @keyframes blink {
    50% { opacity: 0; }
  }
  
  .foto-hinweis {
    margin: 3rem auto;
    text-align: center;
    background: rgba(25,22,84,0.7);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    box-shadow: 0 4px 30px rgba(67,198,172,0.3);
  }
  
  .foto-hinweis p {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: bold;
  }
  
  .galerie-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #43c6ac;
    color: #191654;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
  }
  
  .galerie-button:hover {
    background: #191654;
    color: #fff;
  }
  
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .galerie {
    display: flex;
    gap: 20px; 
    padding: 20px; 
    flex-wrap: wrap; 
    justify-content: center;
  }

  .galerie img {
    width: 400px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .galerie img:hover {
    transform: scale(1.5);
    z-index: 1;
  }
  
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .lightbox.active {
    display: flex;
  }
  
  .lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
  
  .lightbox .close {
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    font-family: sans-serif;
  }
  
  .back {
    text-align: center;
    margin-top: auto;
  }

 
 .link, 
 .link:visited, 
 .link:hover,
 .link:active {
 text-decoration: none;
 color: white;
 }

 .cloud-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.cloud-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25,22,84,0.85);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px #43c6ac80;
  transition: background 0.3s, transform 0.2s;
}

.cloud-fab a:hover {
  background: #43c6ac;
  transform: scale(1.15);
}

.cloud-fab svg {
  display: block;
}

/* Floating Action Button (FAB) und Dropdown */
.arrow-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.fab-btn {
  background: #191654;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px #43c6ac80;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, transform 0.15s;
  outline: none;
}

.fab-btn:hover, .fab-btn:focus {
  background: #43c6ac;
  box-shadow: 0 8px 24px #43c6ac80;
  transform: scale(1.08);
}

/* Pfeil-Icon sichtbar und animiert */
.fab-btn svg path {
  fill: #43c6ac;
  transition: fill 0.2s;
}
.fab-btn:hover svg path,
.fab-btn:focus svg path {
  fill: #fff;
}

/* Cleanes, modernes Dropdown-Menü mit Blur und Slide-Animation */
.fab-dropdown {
  display: none;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(67,198,172,0.10);
  padding: 14px 0;
  min-width: 180px;
  align-items: flex-start;
  position: absolute;
  bottom: 70px;
  right: 0;
  border: 1.5px solid rgba(67,198,172,0.18);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
}

.fab-dropdown.show {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #191654;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 26px 12px 18px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
  font-size: 1em;
  backdrop-filter: none;
}

.fab-dropdown a:hover {
  background: rgba(67,198,172,0.18);
  color: #191654;
}

.fab-dropdown a svg path,
.fab-dropdown a svg circle {
  transition: stroke 0.2s;
}

.fab-dropdown a:hover svg path,
.fab-dropdown a:hover svg circle {
  stroke: #43c6ac;
}

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