.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 25, 32, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5c98a;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 4px; /* Smooth out harsh corners */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5c98a;
    transition: width 0.3s;
}

.nav-link:hover,
    .nav-link.active {
    color: #f5c98a;
}

.nav-link:hover::after,
    .nav-link.active::after {
    width: 100%;
}

.menu-icon {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}
