/* Logo */
.logo {
    height: 40px;
    width: auto;
    vertical-align: middle;
    display: block;
}

/* Navigation Layout */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 32px;
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Navigation Menu */
nav.nav-bar {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Contact Button */
.top-bar .contact-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.top-bar .contact-btn:hover {
    background-color: #fff;
    color: #000;
}

nav ul li a {
    position: relative;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e5b8cc; /* soft pink, matches your brand */
}

/* Optional underline animation */
nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #e5b8cc;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}
