/* Reset menu styles */
ul.dc_mm-orange, ul.dc_mm-orange li {
    border: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Centering the menu */
ul.dc_mm-orange {
    background: #000;
    background: linear-gradient(to bottom, #414045 55%, #2f2e33 100%);
    font: normal 13px Arial, sans-serif;
    padding: 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure list items are displayed inline */
ul.dc_mm-orange li {
    display: inline-block;
    position: relative;
}

/* Style main menu links */
ul.dc_mm-orange li a {
    color: #fff;
    display: block;
    font-size: 15px;
    padding: 10px 20px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
    font-family: 'Doppio One', sans-serif;
    border-left: 2px groove #636363;
}

/* Hover effects */
ul.dc_mm-orange li a:hover {
    color: #FFF;
    background: linear-gradient(to bottom, #660033, #e48e14);
}

/* Full-width dropdown */
ul.dc_mm-orange .sub {
    display: none;
    position: absolute;
    background: #FFFFFF; /* ✅ Solid white background */
    width: 100%; /* Full width dropdown */
    left: 0;
    top: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 1000;
}

/* Dropdown row container */
ul.dc_mm-orange .row {
    display: flex;
    justify-content: space-around;
    max-width: 1200px; /* Restrict width for better readability */
    margin: auto;
    background: #FFFFFF; /* ✅ Solid white background */
}

/* Individual columns inside dropdown */
ul.dc_mm-orange .column {
    flex: 1; /* Each column takes equal space */
    text-align: left;
    padding: 20px;
    min-width: 200px;
    background: #FFFFFF; /* ✅ Ensures each column is white */
}

/* Column heading styling */
ul.dc_mm-orange .column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Dropdown list styling */
ul.dc_mm-orange .column ul {
    list-style: none;
    padding: 0;
}

/* Dropdown links */
ul.dc_mm-orange .column li {
    display: block;
    text-align: left;
}

ul.dc_mm-orange .column li a {
    padding: 8px 10px;
    color: #111;
    background: none;
    display: block;
    text-shadow: none;
    font-size: 14px;
}

ul.dc_mm-orange .column li a:hover {
    background: #CCC9C9;
    color: #e48e14;
}

/* Show dropdown on hover */
ul.dc_mm-orange li.has-dropdown:hover .sub {
    display: block;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    ul.dc_mm-orange .row {
        flex-direction: column;
        text-align: center;
    }
    ul.dc_mm-orange .column {
        width: 100%;
    }
}
