/* IMPORT FONTS: Playfair (Mewah) & Manrope (Modern) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --dark-bg: #0b0f19;       /* Hitam Kebiruan (Sangat Gelap) */
    --card-bg: #161b26;       /* Abu Gelap untuk Card */
    --gold: #d4af37;          /* Warna Emas Mewah */
    --gold-hover: #b5952f;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

a { text-decoration: none; transition: 0.3s; }

/* --- NAVBAR --- */
#mainNav {
    padding: 20px 0;
    transition: 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}
#mainNav.scrolled {
    background: rgba(11, 15, 25, 0.95); /* Solid dark saat scroll */
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.brand-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}
.btn-book-gold {
    background: var(--gold);
    color: var(--dark-bg) !important;
    padding: 10px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: 1px solid var(--gold);
    transition: all 0.3s;
}
.btn-book-gold:hover {
    background: transparent;
    color: var(--gold) !important;
}

/* --- HERO SLIDER (FULL SCREEN) --- */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
}
.swiper-slide {
    overflow: hidden;
}
.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s linear; /* Efek Zoom Lambat */
}
.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* Gelapkan gambar agar teks terbaca */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 10;
}
.hero-subtitle {
    display: block;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1rem;
}
.hero-title {
    font-size: 4rem; /* Judul Besar */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

/* --- SECTION STYLES --- */
.section-padding { padding: 100px 0; }
.section-header { margin-bottom: 60px; text-align: center; }
.sub-heading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.main-heading { font-size: 3rem; margin-bottom: 20px; color: white; }

/* --- PROPERTY CARDS (LIST KOS) --- */
.property-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    group: hover;
}
.property-card:hover { transform: translateY(-10px); border-color: var(--gold); }

.card-image-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
}
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.property-card:hover .card-image-wrapper img { transform: scale(1.1); }

.price-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 10px 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}
.card-details { padding: 30px; }
.prop-title { font-size: 1.8rem; margin-bottom: 10px; color: white; }
.prop-address { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.prop-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    color: var(--text-white);
}
.prop-features span i { color: var(--gold); margin-right: 5px; }
.btn-link-gold {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}
.btn-link-gold:hover { letter-spacing: 4px; color: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .main-heading { font-size: 2.2rem; }
}