/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--black);
    color: #eeeeee;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--pink);
}

.top-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
}

.top-bar .contact-info i {
    color: var(--pink);
    margin-right: 6px;
    width: 1.3rem;
}

.top-bar .social-login {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-bar .social-icons a {
    color: #cccccc;
    margin-left: 10px;
    transition: color var(--transition);
    font-size: 1.1rem;
}

.top-bar .social-icons a:hover {
    color: var(--pink);
}

.btn-login {
    background: var(--pink);
    color: var(--white);
    border: none;
    padding: 5px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background var(--transition);
}

.btn-login:hover {
    background: var(--pink-dark);
}

/* ============================================================
   TOP BAR - MOBILE HIDE
   ============================================================ */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Optional: Also hide on tablets if you prefer */
@media (min-width: 769px) and (max-width: 1024px) {
    .top-bar {
        display: none; /* Comment this out if you want it visible on tablets */
    }
}