/* stickymenu.css - Sticky Navigation Component (Mobile Dropdown) */

.stickymenu-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stickymenu-links-desktop {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stickymenu-item {
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: wrap;
	letter-spacing:3px;
}

.stickymenu-item:hover {
    color: white;
}

.stickymenu-item.active {
    color: white;
}

.stickymenu-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #a4ce4c;
    border-radius: 2px;
}

.stickymenu-mobile {
    display: none;
    position: relative;
}

.stickymenu-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.stickymenu-dropdown-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.stickymenu-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    /*border-radius: 8px;*/
    margin-top: 0px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    pointer-events: none;
    z-index: 101;
}

.stickymenu-dropdown-menu.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
	z-index:9999;
}

.stickymenu-dropdown-item {
    padding: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.stickymenu-dropdown-item:last-child {
    border-bottom: none;
}

.stickymenu-dropdown-item:hover,
.stickymenu-dropdown-item.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 900px) {
    .stickymenu-links-desktop {
        display: none;
    }
    .stickymenu-mobile {
        display: block;
    }
    .stickymenu-nav {
        padding: 0;
    }
}