﻿.wmc-navbar {
    background-color: #f8f8f8;
    padding: 10px 20px;
    height: 70px;
    position: relative;
    z-index: 1000;
}

.wmc-logo {
    height: 40px;
    margin-right: 10px;
}

.wmc-link {
    color: #0056b3;
    margin-left: 20px;
}

.wmc-btn {
    background-color: #0056b3;
    color: #fff;
    margin-right: 15px;
    border-radius: 20px;
}

.wmc-nav-icon {
    color: #0056b3;
    margin-right: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
}

.text-icon img {
    height: 20px;
}

.border-nav {
    background-color: #0e56b6;
    height: 80px;
    border-radius: 0px 0px 30px 30px;
}

.text-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.left-group {
    display: flex;
    gap: 10px;
    position: absolute;
    left: 3%;
    top: 40%;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #0e56b6;
    font-size: 12px;
    gap: 0px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.icon-circle-p {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border-radius: 50%;
    padding: 10px;
}

    .icon-circle-p img {
        width: 45px;
        height: 45px;
        border-radius: 50px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    }

.icon-circle img {
    width: 65px;
    height: 65px;
}

.icon-item:hover .icon-circle {
    transform: translateY(-5px);
}

.icon-item:hover .icon-circle-p {
    transform: translateY(-5px);
}

.tickets {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
}

    .tickets .icon-circle img {
        width: 70px;
        height: 70px;
    }

    .tickets .icon-circle {
        border-radius: 50%;
        padding: 10px;
    }

/* Food section specific styles */
.food-nav {
    height: auto;
    padding-bottom: 30px;
}

.food-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.food-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}

    .food-option img {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 10px;
    }

.search-section {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.search-container {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 25px;
    width: 80%;
    max-width: 800px;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid #ddd;
}

    .search-input:last-child {
        border-right: none;
    }

    .search-input input {
        border: none;
        outline: none;
        width: 100%;
    }

.search-button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-icon.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto !important;
    z-index: 1001;
    min-width: 200px;
    padding: 8px 0;
    margin-top: 0.5rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform-origin: top;
    animation: dropdownAnimation 0.2s ease;
}

    .dropdown-menu.show {
        display: block;
    }

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #f8f9fa;
        color: #0056b3;
    }

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 600px) {
    .fav-icon{
        display:none;
    }
    .left-group {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 15px;
        gap: 15px;
        transform: none;
        z-index: 1001;
    }

        .left-group.show {
            display: flex;
        }

        .left-group .icon-item {
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            padding: 10px;
            gap: 15px;
        }

    .icon-circle,
    .icon-circle-p,
    .tickets .icon-circle {
        width: 50px;
        height: 50px;
        padding: 6px;
    }
        .tickets .icon-circle img{
            height:60px;

        }
        .tickets {
            right: 220px;
            top: 60%;
            transform: translateY(-50%);
        }
    .wmc-container container-fluid{
        display:flex;
        align-items:center;
        justify-content:center;
        flex-direction:row;
    }
    .wmc-logo{
        height:30px;
    }

    .icon-item span {
        color: #0e56b6;
        font-size: 14px;
    }
}


