/* Top Bar */
.top-bar {
    padding: 32px 0;
    z-index: 1000;
    background-color: transparent;
}

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

.logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-dark);
}

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

.instagram-link-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
    }
    .instagram-link-header {
        display: none;
    }
}
