
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    min-height: 60px;
}

.logo-img {
    height: 70px;
    width: auto;
    margin-left: 15px;
}

.navbar-links {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-grow: 1;
    flex-wrap: nowrap;
}

.navbar-links li {
    position: relative;
    margin: 0 15px;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    padding: 5px 10px;
    height: 45px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(47, 46, 46, 0.8);
    transition: background-color 0.3s ease;
    width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.reserve-appointment {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.custom-navbar .button.fit.small {
    background-color: white;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 18px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    min-width: 160px;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-navbar .button.fit.small:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
    .custom-navbar {
        flex-wrap: wrap;
    }

    .reserve-appointment {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .navbar-links {
        flex-wrap: nowrap;
    }

    .navbar-links a:not(.reserve-appointment) {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .navbar-links {
        flex-direction: row;
        justify-content: flex-start;
    }

    .navbar-links a:not(.reserve-appointment) {
        display: none;
    }

    .navbar-links a {
        font-size: 12px;
    }

    .custom-navbar {
        padding: 15px;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu .dropdown-menu {
        display: none;
        padding-left: 20px;
    }

    .mobile-menu .dropdown-menu.active {
        display: block;
}
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1050;
    position: relative;
}

.hamburger-menu .bar {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: rgba(0, 0, 0, 0.9);
    width: 250px;
    height: 100vh;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1050;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .dropdown-menu {
    display: none;
    position: relative;
    background-color: rgba(47, 46, 46, 0.8);
    padding-left: 20px;
}

.mobile-menu .dropdown-menu.active {
    display: block;
}

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

.mobile-menu .dropdown-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    text-transform: uppercase;
    display: block;
}

@media screen and (max-width: 1024px) {
    .navbar-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu .dropdown-menu {
        display: none;
        padding-left: 20px;
    }

    .mobile-menu .dropdown-menu.active {
        display: block;
    }
}
