/* Mobile Navigation Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.5rem;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.5);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
}
.mobile-menu-close:hover {
    border-color: #a30000;
    background: rgba(163, 0, 0, 0.3);
}
.mobile-nav-link {
    color: #d1d5db;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.85rem 2.5rem;
    border-radius: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.05em;
}
.mobile-nav-link:hover {
    color: white;
    background: rgba(163, 0, 0, 0.2);
}
.mobile-nav-link.active-link {
    color: white;
    border-bottom: 2px solid #a30000;
    font-weight: 700;
}
.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.hamburger-btn:hover {
    border-color: #a30000;
    background: rgba(163, 0, 0, 0.2);
}
