/* ===== Navigation Arrow Guide Styles ===== */

/* Arrow Guide Container - Mobile First */
.navigation-arrow-guide {
    position: absolute;
    top: -61px;
    right: 56%;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    transform: rotate(-26deg);
    width: 80px;
    height: auto;
    display: none;
}

.navigation-arrow-guide img {
    content: url('../../../img/arrow-mob.svg');
    display: block;
    width: 80px;
    height: auto;
    animation: gentleBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Bounce Animation - Mobile */
@keyframes gentleBounce {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-2px) scale(1.02); 
        opacity: 1; 
    }
}

/* Desktop (768px+) - Switch to arrow.svg */
@media (min-width: 768px) {
    .navigation-arrow-guide {
        top: -118px;
        right: 34%;
        transform: rotate(32deg);
        width: 150px;
        height: auto;
    }
    
    .navigation-arrow-guide img {
        content: url('../../../img/6.svg');
        width: 216px;
    }
    
    /* Desktop Bounce Animation with rotation */
    @keyframes gentleBounce {
        0%, 100% { 
            transform: rotate(90deg) translateY(0) scale(1); 
            opacity: 0.9; 
        }
        50% { 
            transform: rotate(90deg) translateY(-2px) scale(1.02); 
            opacity: 1; 
        }
    }
}
