:root {
    /* Warna disesuaikan dengan Logo Green Paon */
    --primary-color: #4A6B3A;       /* Hijau Olive / Sage Green Alami */
    --accent-color: #6B7F5E;        /* Hijau daun sekunder lembut */
    --whatsapp-green: #25d366;
    --dark: #2B3A22;                /* Hijau sangat gelap mendekati hitam untuk teks */
    --light: #F7F3EB;               /* Krem bayangan lembut */
    --white: #FDFBF7;               /* Off-white / Krem hangat latar belakang logo */
    --earth-cream: #FDFBF7; 
    --dark-wood: #3E2D1F;   
    --shadow: 0 4px 15px rgba(74, 107, 58, 0.08); /* Shadow organik bernuansa hijau samar */
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body { 
    /* Menggunakan Montserrat/Helvetica agar bersih dan spasi terbaca baik */
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    color: var(--dark-wood); 
    background-color: var(--white);
}

/* --- 2. NAVIGATION (MODERN & STICKY) --- */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(74, 107, 58, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Meniru struktur font "Green Paon" di Logo */
.logo {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo span { color: var(--dark-wood); }

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li { margin-left: 25px; }

/* Meniru struktur font "sidemen cooking class" (Spasi lebar, bersih) */
nav ul li a {
    background: none !important;
    text-decoration: none;
    color: var(--dark-wood);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

nav ul li a:hover { color: var(--primary-color); }

.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Perbaikan Logo & Sembunyikan Judul --- */
.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-brand img {
    height: 85px; /* PERBAIKAN: Logo diperbesar di desktop agar lebih menonjol */
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-brand img:hover {
    transform: scale(1.05); 
}

/* Teknik SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- 3. HERO SECTION --- */
.hero {
    height: 85vh;
    /* Lapisan overlay diubah ke hijau gelap transparan agar menyatu dengan alam */
    background: linear-gradient(rgba(43, 58, 34, 0.6), rgba(43, 58, 34, 0.6)), 
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 0; 
}

.hero h1 { 
    font-family: 'Lora', 'Georgia', serif;
    font-size: 3.5rem; 
    margin-bottom: 15px; 
}

.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 25px; 
    max-width: 700px; 
    letter-spacing: 0.5px;
}

/* --- 4. TYPOGRAPHY & LAYOUT --- */
.container { 
    max-width: 1000px; 
    margin: auto; 
    padding: 40px 20px; 
}

section { padding: 60px 0; border-bottom: 1px solid rgba(74, 107, 58, 0.1); }

/* PERBAIKAN: Sektor pengantar/about otomatis rata tengah seimbang */
#about {
    text-align: center;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
}

h2 { 
    font-family: 'Lora', 'Georgia', serif;
    color: var(--primary-color); 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    text-align: center; 
}

h3 { 
    font-family: 'Lora', 'Georgia', serif;
    color: var(--primary-color); 
    font-size: 1.5rem; 
    margin-bottom: 10px; 
}

/* --- 5. GRID & CARDS --- */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 107, 58, 0.05);
    transition: var(--transition);
}

.card:hover { transform: translateY(-5px); }

/* --- 6. BUTTONS --- */
.cta-button { 
    background: var(--primary-color); 
    color: var(--white); 
    padding: 16px 32px; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    display: inline-block; 
    transition: var(--transition); 
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.cta-button:hover { 
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 107, 58, 0.3);
    filter: brightness(1.1);
}

.whatsapp-color { background: var(--whatsapp-green); }

/* --- Gallery & Process Styling --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; 
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(74, 107, 58, 0.75); /* Disesuaikan ke Hijau Utama Logo */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--white);
    padding-bottom: 5px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Responsive Gallery --- */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 580px) {
    .gallery-grid {
        grid-template-columns: 1fr; 
        grid-auto-rows: 250px;
        gap: 10px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-overlay {
        opacity: 1; 
        background: linear-gradient(transparent, rgba(43, 58, 34, 0.8));
        align-items: flex-end;
        padding: 15px;
    }
}

/* --- 7. CONTACT & FOOTER --- */
.contact-box {
    text-align: center; 
    background-color: var(--light); 
    border-radius: 20px;
    padding: 50px 20px;
    margin: 40px 0;
}

.location-text {
    margin-top: 15px; 
    font-size: 0.9rem; 
    color: var(--dark-wood);
    opacity: 0.8;
}

/* --- 8. MOBILE MENU LOGIC --- */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 10px; }

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--dark-wood);
    height: 2px;
    width: 25px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before { content: ''; position: absolute; bottom: 8px; }
.nav-toggle-label span::after { content: ''; position: absolute; top: 8px; }

/* --- Package Section Sync --- */
.section-subtitle {
    text-align: center;
    color: var(--dark-wood);
    opacity: 0.7;
    margin-top: -15px;
    margin-bottom: 40px;
}

.package-card {
    padding: 0;
    border: none;
    background: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    width: 100%;
}

.package-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-content {
    padding: 25px;
    text-align: center;
}

.package-content h3 {
    font-family: 'Lora', 'Georgia', serif;
    color: var(--dark-wood); 
    font-size: 1.35rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* --- Single Package Layout --- */
.package-single-layout {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 107, 58, 0.1);
    margin-top: 40px;
}

.package-visual {
    flex: 1;
    height: 800px; 
    position: relative;
    overflow: hidden;
}

.img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; 
}

.badge-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    letter-spacing: 1px;
}

.package-info-box {
    flex: 1;
    padding: 60px;
    text-align: left;
}

.category-label {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-info-box h2 {
    text-align: left;
    margin: 10px 0 20px 0;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.price-container {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.new-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.8rem;
}

.package-description {
    line-height: 1.8;
    color: var(--dark-wood);
    opacity: 0.9;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
}

.package-features li {
    margin-bottom: 10px;
    color: var(--dark-wood);
    font-size: 0.95rem;
}

.price-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(74, 107, 58, 0.15);
}

.package-content p {
    font-size: 0.9rem;
    color: var(--dark-wood);
    opacity: 0.8;
    margin-bottom: 25px;
    min-height: 60px; 
}

.package-buttons {
    display: flex;
    gap: 10px;
}

.btn-book {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    flex: 2;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.btn-info {
    background: transparent;
    border: 1px solid rgba(74, 107, 58, 0.2);
    color: var(--dark-wood);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

.btn-info:hover {
    background: var(--light);
}

.package-action {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; 
}

.btn-primary-wa {
    background: var(--whatsapp-green) !important; 
    color: #ffffff !important;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s;
    flex: 2; 
    min-width: 200px;
}

.btn-primary-wa:hover { filter: brightness(0.9); }

.btn-secondary-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s;
    flex: 1;
}

.btn-secondary-outline:hover { background: var(--light); }

/* --- Testimonial Section --- */
.testimonial-card {
    text-align: left;
    padding: 40px;
    background: var(--white);
    border: 1px solid rgba(74, 107, 58, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.stars {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #D4AF37; 
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-wood);
    opacity: 0.9;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Lora', serif; 
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(74, 107, 58, 0.1);
    padding-top: 20px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.grid div:nth-child(2) .avatar-circle { background-color: var(--accent-color); }
.grid div:nth-child(3) .avatar-circle { background-color: var(--dark); }

.customer-name {
    display: block;
    font-weight: bold;
    color: var(--dark-wood);
    font-size: 1rem;
}

.customer-origin {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* --- Modern Footer Style (PERBAIKAN: FULL RATA TENGAH & TEKS CERAH) --- */
.main-footer {
    background-color: var(--dark); /* Latar belakang hijau daun gelap */
    color: #D1D7CD; 
    padding: 70px 0 20px;
    margin-top: 50px;
    text-align: center; /* Membuat seluruh teks di footer rata tengah */
}

/* Mengatur agar kolom-kolom footer berbaris rapi di tengah */
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-bottom: 30px;
}

.footer-column h4 {
    font-family: 'Lora', serif;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

/* Menyesuaikan garis bawah judul h4 agar presisi di tengah kata */
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--light);
}

/* Reset list menu di footer agar tidak melenceng ke kanan */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #D1D7CD;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

/* Mengatur barisan icon sosial media di tengah */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(253, 251, 247, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0; 
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info a {
    color: var(--white) !important;
    font-weight: bold;
}

/* PERBAIKAN UTAMA: Nama bisnis (text logo) di footer diubah ke PUTIH CERAH (#FFFFFF) */
.main-footer .logo span,
.main-footer .logo {
    color: #FFFFFF !important;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #D1D7CD;
}

/* --- Floating WhatsApp Button --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 3000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-float:hover {
    transform: translateY(-5px);
    background-color: #1ebd59;
    color: #FFF;
}

/* --- Location Section Styling --- */
.location-section {
    background-color: var(--light); 
    padding: 100px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
    align-items: center;
    text-align: left; 
}

.location-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.location-desc {
    margin-bottom: 40px;
    color: var(--dark-wood);
    opacity: 0.7;
    font-style: italic;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
    margin-right: 20px;
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--dark-wood);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 107, 58, 0.15);
    line-height: 0; 
}

/* --- 9. RESPONSIVE MEDIA QUERIES (OPTIMASI FULL MOBILE-FRIENDLY) --- */
@media (max-width: 768px) {
    .nav-toggle-label { display: block; }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        width: 100%;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: var(--shadow);
    }

    nav ul { flex-direction: column; padding: 20px 0; }
    nav ul li { margin: 15px 0; text-align: center; width: 100%; }
    nav ul li { margin-left: 0; } /* Reset spasi kiri menu navigasi di HP */
    
    .nav-toggle:checked ~ nav { transform: scale(1, 1); }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }

    /* PERBAIKAN MOBILE: Tinggi logo dikecilkan aman di HP agar tidak merusak navbar */
    .logo-brand img {
        height: 65px; 
    }

    /* PERBAIKAN MOBILE: Single package layout berubah menjadi tumpuk vertikal atas-bawah */
    .package-single-layout {
        flex-direction: column;
    }

    .package-visual {
        width: 100%;
        height: 350px; 
    }

    .package-info-box {
        padding: 30px 20px; 
    }

    .package-info-box h2 {
        font-size: 1.8rem;
    }

    /* PERBAIKAN MOBILE: Layout grid info lokasi di HP menjadi 1 kolom penuh */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-info h2 {
        text-align: center; 
    }

    /* PERBAIKAN MOBILE: Tombol-tombol booking paket dibuat fleksibel memanjang vertikal */
    .package-buttons {
        flex-direction: column;
    }
}