/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-brown: #3E2723; /* Coklat Kopi Tua */
    --secondary-brown: #6D4C41; /* Coklat Susu */
    --gold: #FFB300;          /* Emas Logo */
    --gold-hover: #FFCA28;
    --cream: #FFF8E1;         /* Krem Background */
    --white: #FFFFFF;
}

body {
    background-color: var(--cream);
    font-family: 'Poppins', sans-serif; /* Font utama bersih */
    color: var(--primary-brown);
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif; /* Font Judul Elegan */
    font-weight: 700;
}

.handwritten {
    font-family: 'Caveat', cursive; /* Font Tulisan Tangan (Cozy vibe) */
}

/* --- NAVBAR --- */
.navbar {
    background-color: rgba(62, 39, 35, 0.95) !important; /* Coklat transparan */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold) !important;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.nav-link {
    color: #eee !important;
    font-weight: 400;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* --- HERO SECTION (Layar Depan) --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    /* Tambahkan background-color coklat tua sebagai cadangan jika gambar error */
    background-color: #3E2723; 
    /* Pastikan path gambar benar: naik 2 folder (../../) dari folder css */
    background-image: url('../../assets/img/galeri/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
}

/* Overlay Gelap di atas gambar Hero */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(62, 39, 35, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

/* --- BUTTONS --- */
.btn-custom {
    background: linear-gradient(45deg, var(--gold), var(--gold-hover));
    color: var(--primary-brown);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.6);
    color: var(--primary-brown);
}

/* --- FEATURES SECTION --- */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--gold);
}
.feature-icon {
    font-size: 3rem;
    color: var(--secondary-brown);
    margin-bottom: 1rem;
}
.section-title {
    position: relative;
    display: inline-block;
    color: var(--primary-brown);
    margin-bottom: 3rem;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 10px auto 0;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-brown);
    color: var(--cream);
    padding-top: 3rem;
}

/* Responsive Text */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
}