footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0 120px;
    position: relative;
    z-index: 1;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    margin-bottom: 0px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.footer-nav li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav li a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.whatsapp-button {
    margin-top: 90px;
    margin-bottom: 2px;
    text-align: center;
}

.whatsapp-button a {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #1da851;
    transform: scale(1.05);
}

.whatsapp-button i {
    font-size: 20px;
}

.footer-socials {
    margin-top: 20px;
    text-align: center;
    padding: 10px 0;
}

.footer-socials a {
    color: white;
    margin: 0 10px;
    font-size: 1.8rem;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #FFD700;
    transform: scale(1.2);
}

.footer-socials i {
    display: inline-block;
    font-size: inherit;
    line-height: normal;
}
/* Sticky-CTA-Leiste */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta-button {
    background-color: #FFD700;
    color: #333;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #FFC107;
    color: white;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .sticky-cta {
        flex-direction: column;
        padding: 10px 15px;
        gap: 8px;
        width: 90%; /* Nicht mehr ganz Bildschirmbreite */
        max-width: 500px; /* Für große Phones */
    }

    .sticky-cta span {
        font-size: 0.9rem;
    }

    .sticky-cta-button {
        font-size: 0.95rem;
        padding: 10px 18px;
        white-space: normal;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .whatsapp-button a {
        transform: scale(0.7);
    }
}
@media (max-width: 380px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

