/* Sticky Icons Sidebar START */
.sticky-icon-box {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10000;
    height: 210px; /* Feste Höhe für 3 Buttons */
}

.sticky-icon-box a span {color:white}

.fa-arrow-right-to-bracket, .fa-envelope, .fa-calendar-days {color: white;}

.sticky-icon {
    display: flex;
    align-items: center;
    background-color: var(--color-brand-primary);
    border: solid 2px #ffffff;
    border-radius: 5px 0 0 5px;
    padding: 12px;
    box-shadow: -2px 0px 10px 0px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    color: #ffffff;
    text-decoration: none;
    position: absolute;
    right: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    transition: width 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.sticky-icon:nth-child(1) {
    top: 0;
}

.sticky-icon:nth-child(2) {
    top: 70px;
}

.sticky-icon:nth-child(3) {
    top: 140px;
}

.sticky-icon:hover {
    width: 200px;
    opacity: 1;
    box-shadow: -5px 0px 15px 0px rgba(0, 0, 0, 0.4);
}

.sticky-icon i {
    font-size: 24px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.sticky-icon span {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-left: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.sticky-icon:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .sticky-icon:hover {
        width: 180px;
    }
}

@media screen and (max-width: 768px) {
    .sticky-icon-box {
        height: 180px;
    }
    
    .sticky-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
        border-radius: 3px 0 0 3px;
    }
    
    .sticky-icon:nth-child(1) {
        top: 0;
    }

    .sticky-icon:nth-child(2) {
        top: 60px;
    }

    .sticky-icon:nth-child(3) {
        top: 120px;
    }
    
    .sticky-icon:hover {
        width: 160px;
    }
    
    .sticky-icon i {
        font-size: 20px;
        width: 25px;
    }
    
    .sticky-icon span {
        font-size: 12px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 480px) {
    .sticky-icon-box {
        height: 165px;
    }
    
    .sticky-icon {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .sticky-icon:nth-child(1) {
        top: 0;
    }

    .sticky-icon:nth-child(2) {
        top: 55px;
    }

    .sticky-icon:nth-child(3) {
        top: 110px;
    }
    
    .sticky-icon:hover {
        width: 140px;
    }
    
    .sticky-icon i {
        font-size: 18px;
        width: 22px;
    }
    
    .sticky-icon span {
        font-size: 11px;
        margin-left: 8px;
    }
}

/* Zusätzliche Hover-Effekte für einzelne Buttons */
.sticky-icon:nth-child(1):hover {
    background-color: var(--color-brand-primary);
}

.sticky-icon:nth-child(2):hover {
    background-color: var(--color-brand-secondary);
}

.sticky-icon:nth-child(3):hover {
    background-color: var(--color-brand-tertiary);
}

/* Smooth Scroll für bessere UX */
html {
    scroll-behavior: smooth;
}

/* Sticky Icons Sidebar ENDE */
