

/* ---------------- Top Bar ---------------- */
body {
    margin: 0;
}

#top-bar {
    display: flex;
    justify-content: space-between;  /* key change */
    align-items: center;

    padding: 15px 20px;

    background-color: #111;
    border-bottom: 1px solid #333;
}

#top-bar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

#top-bar a:hover {
    color: #aaa;
}

button {
    cursor: pointer;
}



.contact-hover {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: white;
}

.contact-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: #111;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: nowrap;

    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 1000;
}

.contact-hover:hover .contact-popup {
    display: block;
}


.site-footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    border-top: 1px solid #2a2a2a;
}