
/* Reset some default styles */
body, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

/* Style for the fixed navigation menu */
.navbar {
    background-color: #7b86ad;
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar-menu li {
    margin-right: 20px;
}

.navbar-menu li:last-child {
    margin-right: 0;
}

.navbar-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold; /* Add this line to make the font bold */
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: #000000;
}

/* Style for the 3-line menu (hamburger menu) */
.navbar-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 10px;
}

.bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 5px 0;
    transition: background-color 0.3s;
}

/* Style for the 3-line menu icon when active (open) */
.navbar-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive menu styles - Show the hamburger menu in mobile view */
@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #0078d4;
        padding: 10px;
        z-index: 1;
        box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        margin: 10px 0;
    }

    .navbar-toggle {
        display: block;
    }
}

.vendor-link {
    /* Customize the background colors and adjust other styles as needed */
    background: radial-gradient(circle, #ff6347, #ff4500);
    color: #fff; /* Text color (white) */
    text-decoration: none; /* Remove underlines from the link */
    padding: 10px 20px; /* Adjust padding as needed */
    border-radius: 25px; /* Adjust border radius for a rounded appearance */
    transition: background 0.3s; /* Add a smooth transition effect */
}

.vendor-link:hover {
    /* Change the gradient and text color on hover */
    background: radial-gradient(circle, #ff4500, #ff6347);
    color: #fff; /* Text color (white) */
}
