/**
 * Mobile Menu Styling
 * This file contains styles for the mobile menu and close button
 */

/* Hide close button on desktop */
@media (min-width: 992px) {
    .close-menu {
        display: none !important;
    }
}

/* Style close button for mobile */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.close-menu:hover {
    background-color: var(--deep-red);
    transform: scale(1.05);
}

/* Ensure close button is properly positioned within the mobile menu */
.main-navigation .close-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-navigation.toggled .close-menu {
    opacity: 1;
    transform: translateY(0);
}
