/* Minimale Floating Icon Menu - Alleen iconen, geen achtergrond */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Floating Menu Container */
.floating-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Geen achtergrond container - alleen iconen */
.menu-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
}

/* Menu items - alleen het icoon */
.menu-item {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-item:hover {
    transform: scale(1.15);
}

.menu-item:active {
    transform: scale(1.05);
}

/* Iconen */
.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.menu-item:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(2, 248, 19, 0.15));
}

/* Tooltip (optioneel) */
.menu-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 15px);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.menu-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Pijltje voor tooltip */
.menu-item::before {
    content: '';
    position: absolute;
    right: calc(100% + 7px);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0.85);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover::before {
    opacity: 1;
}

/* Smooth entrance animatie */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item {
    animation: fadeInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

/* VERBERGEN OP TABLET EN MOBIEL */
@media (max-width: 1024px) {
    .floating-menu {
        display: none !important;
    }
}

/* Extra zeker voor tablets */
@media (max-width: 768px) {
    .floating-menu {
        display: none !important;
    }
}

/* En voor mobiel */
@media (max-width: 480px) {
    .floating-menu {
        display: none !important;
    }
}
