.nav-link {
  --bs-nav-link-color: #ffffff;
  --bs-nav-link-hover-color: #3700af;
}

.navbar-gradient {
  background: linear-gradient(to bottom, 
      rgba(52, 184, 255, 0.9) 0%, 
      rgba(0, 110, 255, 0.7) 100%) !important;
}

.carousel-indicators li {
  background-color: gray;
  height: 10px;
  width: 10px;
  border-radius: 15px;
}

.carousel-indicators .active{
  background-color: cornflowerblue;
}

.carousel-inner img {
  margin: auto;
}

.carousel-caption {
  position: relative;
  left: 0;
  top: 0;
}

.impressum {
  background-color: #e7e7e7;
  height: 100%;
  margin: 0 0;
  padding: 25px 25px;
}

.btn-xl {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

li.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Dies stellt sicher, dass das Bullet trotz Flexbox angezeigt wird */
  display: list-item;
  list-style-type: disc;
}

/*li.price span:first-child {
}*/

li.price span:last-child {
  float: right;
  padding-right: 7em;
}

@media (max-width: 990px) {
  li.price span:last-child {
    padding-right: 0em;
  }
}

ol li {
  margin-bottom: 9px;
  padding-bottom: 5px;
}

#privacy_policy h5 {
  font-weight: bold;
  /* font-weight: 700; */
}

.alert.fade {
  transition: opacity 0.5s linear;
}

.form-label {
  font-weight: 500;
  font-size: 0.95rem;
}

.text-shadow-black {
  text-shadow: 2px 2px 4px #000000;
}

.text-shadow-white {
  text-shadow: 1px 1px 2px #FFFFFF;
}

.text-shadow-gray {
  text-shadow: 1px 1px 2px #5d5d5d;
}


/*.hero-section .container {
    backdrop-filter: blur(10px);          / Macht das Muster darunter unscharf /
    border-radius: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3); / Dezenter Goldrand /
}*/

.hero-section {
    /* Dein blau-goldener Hintergrund hier als Background-Image oder Color */
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Beispiel-Blau */
    padding: 4rem 0;
}

.hero-section .container {
    background: rgba(255, 255, 255, 0.12); /* Hauchdünner weißer Schleier */
    backdrop-filter: blur(15px);           /* Etwas stärkerer Blur für bessere Lesbarkeit */
    -webkit-backdrop-filter: blur(15px);    /* Support für Safari */
    border-radius: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.4); /* Goldener Rand etwas sichtbarer */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 3rem;
}

/* Text-Farben für den dunklen Hintergrund anpassen */
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section p {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Die System-Badges etwas kräftiger im Kontrast */
.badge-system {
    background: rgba(255, 255, 255, 0.9) !important; /* Fast weiß für Lesbarkeit */
    border: none !important;
}

/* Bild-Anpassung für Gold-Thema */
.hero-img-border {
    border: 5px solid rgba(255, 215, 0, 0.6) !important; /* Goldener Rahmen ums Bild */
}


.price-hero {
    height: 70vh; /* 45% der Bildschirmhöhe */
    min-height: 300px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Etwas höher für den Scroll-Spielraum */
    background-size: cover;
    background-position: center 15%; 
    background-attachment: fixed; /* Erzeugt den Parallax-Effekt */
    z-index: 0;
}

/* Fallback für Mobilgeräte (viele Handys unterstützen 'fixed' nicht gut) */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
        height: 100%;
    }
    .price-hero {
        height: 35vh;
    }
}

.price-hero .container {
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hover-opacity-100:hover {
  opacity: 1 !important; transition: 0.2s;
}

.support-card {
  border: none;
  border-top: 4px solid #0d6efd;
  transition: transform 0.2s;
}

.support-card:hover {
  transform: translateY(-5px);
}

.copy-box {
  cursor: pointer;
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  transition: 0.2s;
}

.copy-box:hover {
  background: #e9ecef;
}

#copy-toast {
    visibility: hidden;
    min-width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    position: fixed;
    z-index: 1050;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#copy-toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 1.5s;
}

@keyframes fadein { from { bottom: 0; opacity: 0; } to { bottom: 30px; opacity: 1; } }
@keyframes fadeout { from { bottom: 30px; opacity: 1; } to { bottom: 0; opacity: 0; } }
