/* GAYA UTAMA LANDING PAGE JALADRI */
body {
    background-color: #111111 !important;
    color: #F5E6CA !important;
    font-family: 'Georgia', serif;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.95)), 
                url('https://images.unsplash.com/photo-1461360370896-922624d12aa1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: 6px;
    color: #F5E6CA;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C5A880;
}

.hero-tagline {
    font-style: italic;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #C5A880;
    color: #F5E6CA;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #C5A880;
    color: #111111;
    box-shadow: 0 0 15px #C5A880;
}

/* 7 BABAK GRID SYSTEM */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.chapter-card {
    background: rgba(26, 22, 19, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 35px 25px;
    text-decoration: none;
    color: #F5E6CA !important;
    transition: all 0.3s ease;
    display: block;
}

.chapter-card:hover {
    border-color: #C5A880;
    transform: translateY(-5px);
    background: rgba(26, 22, 19, 0.9);
}

.chapter-number {
    font-size: 1.5rem;
    color: #C5A880;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* PETA INTERAKTIF */
#map-jaladri {
    width: 100%;
    height: 500px;
    border: 2px solid #C5A880;
    border-radius: 8px;
    background-color: #1a1613;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background-color: #111111 !important;
    color: #F5E6CA !important;
    border: 1px solid #C5A880 !important;
}