/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 12px clamp(12px, 3vw, 24px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

/* Logo */
.logo-img {
    height: 40px;
    vertical-align: middle;
}

.navbar-left {
    gap: 20px;
    display: flex;
    align-items: center;
}

/* Right side */
.navbar-right {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 16px);
    flex-wrap: wrap;
}

.nav-link,
.nav-btn {
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    border-radius: 6px;
    padding: 6px 12px;
    transition: background-color 0.2s;
}

.nav-link-left, .nav-btn-left {
    background-color: white;
    color: #06AB78;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    border-radius: 6px;
    padding: 6px 12px;
    transition: background-color 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-link-left:hover {
    color: white;
    background-color: #06AB78;
}

.nav-link {
    background-color: #06AB78;
    color: #fff;
}

.nav-link:hover {
    background-color: #059267;
}

.nav-btn {
    background-color: #06AB78;
    color: #fff;
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    background-color: #059267;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    color: #30313D;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    padding: 6px 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #30313D;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 6px;
    padding: 8px;
}

.dropdown-item,
.dropdown-item-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item-btn:hover {
    background-color: #059267;
}

/* 👇 show menu when hovering */
.dropdown:hover .dropdown-menu {
    display: block;
}
