/* eZe Smart Menu Styles */

/* Scope styles to the plugin container */
.eze-smart-menu {
    /* Apply a dark radial gradient to the entire template */
    background: radial-gradient(ellipse at center, #0E665E, #00191d );
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.eze-smart-menu .menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0;
}

/* Individual menu section with enhanced drop shadow and dark gradient */
.eze-smart-menu .menu-box {
    flex: 1 1 calc(20% - 20px); /* 5 columns (20% width per item minus gap) */
    min-width: 220px; /* Prevents shrinking too much */
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Lighter border for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* Enhanced, darker drop shadow */
    /* Removed the box gradient and set a transparent background to show the template gradient */
    background-color: rgba(255, 255, 255, 0.05);
}

/* Header label styles */
.eze-smart-menu .menu-header {
    font-size: 13px; /* Increased font size slightly */
    margin: -15px -15px 15px -15px; /* Adjust margin to span the full width of the box */
    padding: 10px 15px;
    font-weight: bold;
    text-align: center; /* Centered the text */
    background: linear-gradient(to right, #43088A, #035C2C, #5C0346); /* More vibrant gradient */
    color: white;
    border-radius: 8px 8px 0 0; /* Rounded top corners */
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* Added a subtle border */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added text shadow for depth */
    text-transform: uppercase; /* Uppercase text for a stronger header feel */
}

/* Menu styles */
.eze-smart-menu .menu-list {
    list-style-type: none;
    padding: 1px;
    margin: 1px;
}

.eze-smart-menu .menu-list li {
    display: block;
}

/* Smooth hover effect styles */
.eze-smart-menu .smooth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #f0f0f0; /* Lighter color for better visibility on dark background */
    font-size: 14px;
    position: relative;
    transition: color 0.5s ease, transform 0.5s ease;
    line-height: 2.50;
}

.eze-smart-menu .smooth-link i {
    font-size: 16px;
}

.eze-smart-menu .smooth-link:hover {
    color: #0dcefd;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .eze-smart-menu .menu-box {
        flex: 1 1 calc(33.33% - 20px); /* 3 columns for medium screens */
    }
}

@media (max-width: 900px) {
    .eze-smart-menu .menu-box {
        flex: 1 1 calc(50% - 20px); /* 2 columns for smaller screens */
    }
}

@media (max-width: 600px) {
    .eze-smart-menu .menu-box {
        flex: 1 1 100%; /* 1 column for mobile screens */
    }
}
