/* ==============================
   NAVBAR
============================== */
.navbar {
    background-color: black !important;
    padding: 10px 80px;
    z-index: 1030;
    transition: background 0.3s ease;
}

.navbar-logo { width: auto; height: 81px; }

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fcbf49 !important;
}

.nav-link {
    color: white !important;
    margin: 0 15px;
    font-weight: 500;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #fcbf49 !important;
    border-bottom: 4px solid #fcbf49;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #fcbf49 !important;
    border-bottom: 4px solid #fcbf49;
}

/* Navbar Responsive */
@media (max-width: 991px) {
    .navbar { padding: 15px 15px; }
    .navbar-collapse {
        background-color: #1a1a1a;
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px;
    }
    .nav-link {
        margin: 5px 0;
        text-align: center;
        border-bottom: none;
    }
    .nav-link.active { border-bottom: 4px solid #fcbf49; transform: none; }
}