:root{ --gold: #C9A227; --dark: #121212; --light: #FDFBF7; }
body{ background: var(--light); font-family: 'Poppins', sans-serif; color: #444; overflow-x: hidden; }
h1,h2,h3,h5{ font-family: 'Playfair Display', serif; color: var(--dark); }
.text-gold{ color: var(--gold); }

/* NAVBAR STICKY */
#main-header{
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9999 !important;
    transition: background 0.4s ease;
    background: transparent;
}
#main-header.scrolled{
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
}
.topbar{ background: rgba(0,0,0,0.2); color: #fff; font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.topbar span{ margin-right: 20px; }
.topbar i{ color: var(--gold); margin-right: 5px; }
.topbar a{ color: #fff; margin-left: 15px; font-size: 16px; transition: color 0.3s; }
.topbar a:hover{ color: var(--gold); }

/* === NAVBAR LOGO KIRI FIX === */
.navbar{ padding: 12px 0; }
.navbar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand{
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Playfair Display', serif;
    font-size: 22px !important;
    color: #fff !important; 
    letter-spacing: 2px;
}
.cgv-logo{
    height: 45px !important; 
    width: auto !important;
    max-height: 45px !important;
    mix-blend-mode: screen; /* hapus bg putih */
    object-fit: contain;
    transition: transform 0.3s ease;
}
.navbar-brand:hover .cgv-logo{ transform: scale(1.05); }
.navbar .nav-link{ color: #fff !important; font-weight: 500; letter-spacing: 1px; margin-left: 20px; transition: color 0.3s; }
.navbar .nav-link:hover{ color: var(--gold) !important; }
.navbar-toggler-icon{ filter: invert(1); }

/* RESPONSIVE NAVBAR */
@media(max-width: 992px){
    .cgv-logo{ height: 35px !important; max-height: 35px !important; }
    .navbar-brand{ font-size: 16px !important; }
}
@media(max-width: 576px){
    .cgv-logo{ height: 32px !important; }
    .navbar-brand{ font-size: 14px !important; }
}

/* HERO - FIX UTAMA */
.hero{ 
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/bg/bg.jpg') center/cover fixed;
    min-height: 100vh;
    padding-top: 200px;
    padding-bottom: 100px;
    display:flex; 
    align-items:center; 
    color:#fff; 
    text-align:center;
    position: relative;
    z-index: 1;
}
/* LOGO HERO TENGAH - KECILIN */
.hero .container img{
    max-width: 160px !important;
    height: auto !important;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.hero h1{ font-size: 70px; color:#fff; letter-spacing: 3px; text-shadow: 0 3px 15px rgba(0,0,0,0.6)}
@media(max-width:768px){ .hero h1{ font-size: 40px; }}

.btn-gold{ background: var(--gold); color: #fff; border: none; border-radius: 2px; padding: 14px 35px; letter-spacing: 2px; font-weight: 500; transition: all 0.4s ease; }
.btn-gold:hover{ background: #a8831f; transform: translateY(-3px); color:#fff; }

/* ROOMS FINAL FIX */
#rooms { 
    background:#FDFBF7 !important; 
    padding:100px 0 !important; 
    position: relative;
    z-index: 1;
}
#rooms .cgv-room-card {
    border: 2px solid #E0E0E0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08) !important;
    transition: all .4s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}
#rooms .cgv-room-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(201,162,39,0.25) !important;
}
#rooms .cgv-room-img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .5s ease !important;
}
#rooms .cgv-room-card:hover .cgv-room-img { transform: scale(1.08) !important; }
#rooms .cgv-room-body { padding: 25px !important; text-align: center !important; flex-grow: 1 !important; }
#rooms .cgv-room-title { font-family: 'Playfair Display', serif !important; font-size: 20px !important; color: var(--dark) !important; margin-bottom: 12px !important; }
#rooms .cgv-room-desc { font-size: 14px !important; color: #777 !important; line-height: 1.7 !important; display: -webkit-box !important; -webkit-line-clamp: 4 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; min-height: 95px !important; }
#rooms .cgv-room-price { color: var(--gold) !important; font-weight: 600 !important; font-size: 17px !important; margin-top: 15px !important; display: block !important; font-family: 'Playfair Display', serif !important; }


/* FOOTER LUXURY */
.footer-lux{ background: #0e0e0e; color: #ccc; font-size: 14px; }
.footer-title{ font-family: 'Playfair Display', serif; color: var(--gold); font-size: 18px; margin-bottom: 20px; letter-spacing: 1px; }
.footer-desc{ font-style: italic; color: #aaa; font-size: 13px; margin-bottom: 15px; }
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin-bottom: 10px; }
.footer-links a{ color: #ccc; text-decoration: none; transition: all 0.3s; }
.footer-links a:hover{ color: var(--gold); padding-left: 5px; }
.footer-social a{ display: inline-block; width: 38px; height: 38px; line-height: 38px; text-align: center; background: rgba(201,162,39,0.1); color: var(--gold); border-radius: 50%; margin-right: 8px; transition: all 0.3s; }
.footer-social a:hover{ background: var(--gold); color: #0e0e0e; transform: translateY(-3px); }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.1); color: #888; font-size: 13px; }