/* ========================================
   LERNORT KISLAU - KUNDENSPEZIFISCHE STYLES
   Version: 2.0 (Dezember 2025)
   ======================================== */



/* ========================================
   MOBILE KLEIN (max 766px) - Timeline spezifisch
   ======================================== */

@media (max-width: 766px) {
    /* Marginale komplett verstecken - CSS-Linie wird NICHT benötigt */
    .timeline-marginale,
    .timeline-marginale-op,
    .lernort-floating-buttons {
        display: none !important;
    }
}

/* ========================================
   FLOATING BUTTONS - Rechts neben Header
   ======================================== */

.lernort-floating-buttons {
    position: fixed;
    right: 0px;
    top: calc(50% + 100px); /* 100px tiefer */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px; /* 4px weniger (war 24px) */
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lernort-floating-buttons.visible {
    opacity: 0.9;
    pointer-events: auto;
}

.floating-btn {
    background-color: rgba(199, 161, 90, 0.8); /* Kislau Gold */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0; /* Eckig, kein Border-Radius */
    box-shadow: 0 4px 12px rgba(199, 161, 90, 0.3);
}

.floating-btn:hover {
    background-color: #be963c; /* Dunkleres Gold */
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(199, 161, 90, 0.4);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .lernort-floating-buttons {
        right: 10px;
        gap: 16px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

/* Platz für Buttons rechts neben Header schaffen */
.header-with-floating-buttons {
    /*padding-right: 100px; /* Platz für Buttons */
}

@media (max-width: 768px) {
    .header-with-floating-buttons {
        padding-right: 0; /* Mobile: kein Padding */
    }
}
