/* Navbar Luxury - villakita.com 
   Skema Warna: Utama (#212323) | Scrolled (#131718)
*/

.navbar {
    /* Dibuat lebih pekat (0.8) agar tidak terlalu transparan */
    background: rgba(33, 35, 35, 0.8) !important; 
    padding: 20px 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed; /* Menggunakan fixed agar selalu terlihat pekat */
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* State saat di-scroll menjadi warna section yang solid */
.navbar.scrolled {
    background: rgba(19, 23, 24, 0.98) !important; /* Hampir solid #131718 */
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #ffffff !important;
}

.navbar-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-right: 12px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 12px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* Tombol Contact dengan Border Lebih Jelas */
.btn-contact {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 100px !important;
    padding: 10px 24px !important;
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600 !important;
    transition: all 0.4s ease !important;
}

.btn-contact:hover {
    background: #ffffff !important;
    color: #131718 !important;
}