/* custom.css - overrides & visual polish for JogjaJateng */

/* Variables */
:root {
  --jj-primary: #CC0000;
  --jj-bg: #ffffff;
  --jj-text: #0F172A;
  --jj-muted: #6B7280;
  --jj-surface: #f8fafc;
}

/* Dark mode (we toggle `dark-mode` class on html element) */
html.dark {
  --jj-bg: #071025;
  --jj-text: #E6EEF8;
  --jj-muted: #9AA6B2;
  --jj-surface: #071827;
}

/* Base */
body {
  background: var(--jj-bg);
  color: var(--jj-text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Primary */
.text-primary { color: var(--jj-primary); }
.bg-primary { background-color: var(--jj-primary); }
.border-primary { border-color: var(--jj-primary); }

/* Header / topbar */
.jjp-topbar { background: #0f1724; }
.jjp-header { transition: box-shadow .2s ease, transform .2s ease; }
.jjp-header.sticky { box-shadow: 0 8px 30px rgba(2,6,23,0.08); }

/* Buttons / icons */
.jjp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
  color: var(--jj-muted);
  border: none;
  cursor: pointer;
}
.jjp-btn-icon:hover { color: var(--jj-primary); background: rgba(0,0,0,0.03); }

/* Navigation */
.jjp-nav a { color: inherit; text-decoration: none; padding: .25rem .35rem; }
.jjp-nav a:hover { color: var(--jj-primary); }

/* Mobile panel */
#jjp-mobile-panel { transition: transform .28s cubic-bezier(.2,.8,.2,1); }
#jjp-mobile-panel.open { transform: translateX(0); }
#jjp-mobile-panel.close { transform: translateX(100%); }

/* Floating quick buttons */
.jjp-float-btn {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: white; box-shadow: 0 6px 18px rgba(2,6,23,0.08);
  color: var(--jj-text);
  border: 1px solid rgba(15,23,42,0.04);
}
.jjp-float-btn:hover { transform: translateY(-4px); transition: transform .18s; }

/* Footer */
.jjp-footer a { color: inherit; text-decoration: none; }
.jjp-footer a:hover { color: var(--jj-primary); }

/* Quick-info */
.jjp-quick-info > div { min-height: 64px; display:flex; flex-direction:column; justify-content:center; }

/* Reader mode */
.reader-mode .prose { max-width: 780px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9; }

/* Small helpers */
.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

/* Responsiveness tweaks */
@media (max-width: 1024px) {
  .jjp-header .text-2xl { font-size: 1.25rem; }
  .jjp-topbar { padding: .4rem 0; }
}

/* Accessibility: focus states */
a:focus, button:focus, input:focus { outline: 3px solid rgba(204,0,0,0.12); outline-offset: 2px; }

/* Small visual polish for images in cards */
.article-card img { border-radius: .5rem; object-fit: cover; }


/* =================================================== */
/* 2. KODE CSS UNTUK TAMPILAN PRODUK LENGKAP & MODERN */
/* =================================================== */

/* PALET WARNA: Merah Marun (#8B0000), Emas (#F0A300), Oranye CTA (#FF6600) */

/* CONTAINER UTAMA */
.sandal-product-page-v2 {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
}

.product-title-v2 {
    text-align: center;
    color: #8B0000;
    border-bottom: 3px solid #F0A300;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 800;
}

/* BAGIAN HEADER (GAMBAR & INFO SEBELAH-MENYEBELAH) */
.product-header-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Agar responsif di mobile */
}

.product-image-area-v2 {
    flex: 1;
    min-width: 300px; /* Ukuran minimum untuk gambar */
    text-align: center;
}
.product-main-image-v2 {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-info-panel {
    flex: 1;
    min-width: 300px;
}

/* HARGA KEREN */
.price-box-v2 {
    padding: 15px;
    background-color: #FFFBEB;
    border: 1px solid #F0A300;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}
.original-price-v2 {
    font-size: 1.1em;
    color: #999;
    text-decoration: line-through;
    display: block;
}
.discount-badge-v2 {
    background-color: #8B0000;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85em;
    margin: 5px 0;
    display: inline-block;
}
.sale-price-v2 {
    font-size: 2.5em;
    color: #8B0000;
    font-weight: 900;
    display: block;
}

/* PILIHAN UKURAN (SIZE CHART) */
.size-selection-v2 h3 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}
.sizes-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.size-input {
    display: none;
}
.size-label {
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}
.size-input:checked + .size-label {
    background-color: #F0A300;
    border-color: #8B0000;
    color: #8B0000;
    box-shadow: 0 0 5px rgba(240, 163, 0, 0.5);
}
.size-label:hover {
    border-color: #F0A300;
}

/* TOMBOL CHECKOUT (SHOPEE STYLE) - Diulang untuk memastikan override */
.cta-area-v2 {
    text-align: center;
    margin-bottom: 25px;
}

.checkout-button-v2.shopee-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(145deg, #FF6600, #FF4500); /* Orange - Merah */
    color: #FFFFFF;
    border-radius: 50px;
    border: 3px solid #FFD700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(255, 69, 0, 0.5), 0 0 0 0 rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease-in-out;
    width: 100%; /* Lebar penuh di panel info */
}

.checkout-button-v2.shopee-style:hover {
    background: linear-gradient(145deg, #FF7711, #FF5511);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.7);
}

.checkout-button-v2 .button-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Animasi Pulse */
.pulse {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% { box-shadow: 0 6px 15px rgba(255, 69, 0, 0.5), 0 0 0 0 rgba(255, 69, 0, 0.4); }
    70% { box-shadow: 0 6px 15px rgba(255, 69, 0, 0.5), 0 0 0 15px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 6px 15px rgba(255, 69, 0, 0.5), 0 0 0 0 rgba(255, 69, 0, 0.4); }
}


/* JAMINAN */
.guarantee-box {
    padding: 15px;
    background-color: #e9ffe9;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    font-size: 0.95em;
    color: #333;
}
.guarantee-box p {
    margin: 5px 0;
}


/* SEPARATOR DAN BAGIAN BAWAH */
.separator-line {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 40px 0;
}
.section-title {
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.6em;
}
.section-title-philosophy {
    color: #8B0000;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6em;
}


/* SPESIFIKASI DETAIL */
.product-specs-container-v2 {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
}
.specs-table-v2 {
    width: 100%;
    border-collapse: collapse;
}
.specs-table-v2 td {
    padding: 12px 10px;
    border-bottom: 1px dashed #ccc;
}
.spec-label-v2 {
    font-weight: bold;
    width: 40%;
    color: #555;
}
.spec-value-v2 {
    width: 60%;
    color: #333;
}
.specs-table-v2 tbody tr:last-child td {
    border-bottom: none;
}


/* FILOSOFI BOX */
.philosophy-box-v2 {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #FFFBEB;
    border-left: 5px solid #F0A300;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}
.philosophy-text-v2 {
    text-align: justify;
    color: #555;
}

/* DAFTAR FITUR */
.feature-list-container-v2 {
    margin-bottom: 40px;
}
.feature-list-v2 {
    list-style: none;
    padding-left: 0;
}
.feature-list-v2 li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.feature-icon-v2 {
    color: #8B0000;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 15px;
    line-height: 1.2;
}
.feature-list-v2 li p {
    margin: 0;
    flex: 1;
}


/* MEDIA QUERIES (RESPONSIVITAS) */
@media (max-width: 768px) {
    .product-header-content {
        flex-direction: column; /* Tumpuk gambar dan info di mobile */
    }
    .product-title-v2 {
        font-size: 1.8em;
    }
    .checkout-button-v2.shopee-style {
        font-size: 1.2em;
        padding: 12px 20px;
    }
}

/* =================================================== */
/* CSS POST WISATA TAMAN WATU RESORT */
/* =================================================== */

/* CONTAINER UTAMA POST */
.wisata-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #333;
}

/* JUDUL UTAMA POST (H1) */
.post-title-wisata {
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: #004d40; /* Hijau Tua/Emerald */
    border-bottom: 4px solid #f9a825; /* Garis bawah Emas */
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
}

/* META INFO (Rating & Lokasi) */
.post-meta-wisata {
    text-align: center;
    margin-bottom: 30px;
    padding: 10px;
    background-color: #e8f5e9; /* Latar Belakang Hijau Muda */
    border-radius: 8px;
    font-size: 1.1em;
}

/* HEADING BAGIAN (H2) - Penting untuk SEO */
.section-heading-wisata {
    color: #00695c; /* Hijau Lebih Gelap */
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid #f9a825;
    padding-left: 15px;
    font-size: 1.8em;
    font-family: 'Arial', sans-serif;
}

/* GAMBAR DAN CAPTION */
.image-placeholder {
    margin: 30px 0;
    text-align: center;
}
.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.image-caption-wisata {
    font-style: italic;
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}

/* INFO BOX (Untuk Harga & Rincian Penting) */
.info-box-wisata {
    padding: 20px;
    border: 1px solid #c8e6c9;
    background-color: #f1f8e9;
    border-radius: 8px;
    margin: 20px 0;
}
.info-box-title {
    color: #004d40;
    border-bottom: 2px dashed #a5d6a7;
    padding-bottom: 8px;
    margin-top: 0;
    font-size: 1.3em;
}
.note-wisata {
    font-size: 0.9em;
    color: #888;
    margin-top: 15px;
}

/* TABEL MENU */
.menu-table-wisata table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.menu-table-wisata th, .menu-table-wisata td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.menu-table-wisata th {
    background-color: #f9a825;
    color: #333;
    font-weight: bold;
}
.menu-table-wisata tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* DAFTAR FITUR/KEGIATAN */
.feature-list-wisata {
    list-style: none;
    padding-left: 0;
}
.feature-list-wisata li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.feature-list-wisata li::before {
    content: "✔️"; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #00695c;
    font-weight: bold;
}

/* CTA BAWAH */
.cta-bottom-wisata {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    padding: 15px;
    background-color: #f9a825;
    color: #004d40;
    border-radius: 8px;
    margin-top: 40px;
}



/* =================================================== */
/* CSS POST REDAKSI / EDITORIAL */
/* =================================================== */

/* CONTAINER UTAMA POST */
.redaksi-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    font-family: 'Times New Roman', serif; /* Font klasik untuk editorial */
    line-height: 1.8;
    color: #222;
    background-color: #ffffff;
}

/* JUDUL UTAMA POST (H1) */
.post-title-redaksi {
    font-family: Georgia, serif;
    text-align: center;
    color: #4b0082; /* Warna Ungu Tua/Indigo untuk kesan formal */
    border-bottom: 4px solid #f0a300; /* Garis bawah emas */
    padding-bottom: 15px;
    margin-bottom: 35px;
    font-size: 2.2em;
    font-weight: 700;
}

/* META INFO */
.post-meta-redaksi {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px;
    background-color: #f7f3ff; /* Latar Belakang sangat terang */
    border: 1px dashed #dcdcdc;
    font-size: 0.9em;
    color: #555;
}

/* KUTIPAN PEMBUKA (Blokquote) */
.redaksi-quote-intro {
    font-size: 1.5em;
    font-style: italic;
    color: #4b0082;
    border-left: 5px solid #f0a300;
    padding: 10px 0 10px 20px;
    margin: 30px 0;
    line-height: 1.4;
    text-align: justify;
}

/* HEADING BAGIAN (H2) */
.section-heading-redaksi {
    color: #4b0082;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    font-size: 1.6em;
    font-weight: bold;
}

/* SUB-HEADING (H3) */
.section-sub-heading-redaksi {
    color: #222;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* INFO BOX (Studi Kasus Fiktif) */
.info-box-redaksi {
    padding: 18px;
    border: 1px solid #e0b0ff;
    background-color: #fcfaff;
    border-radius: 6px;
    margin: 25px 0;
}
.info-box-title {
    color: #4b0082;
    margin-top: 0;
    font-size: 1.1em;
    font-weight: bold;
}

/* DAFTAR PILAR */
.feature-list-redaksi {
    list-style: decimal;
    padding-left: 20px;
    margin: 20px 0;
}
.feature-list-redaksi li {
    margin-bottom: 10px;
    font-weight: normal;
}
.feature-list-redaksi li strong {
    color: #4b0082;
}

/* TANDA TANGAN PENUTUP */
.signature-redaksi {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    text-align: right;
    font-style: italic;
}
.signature-redaksi p {
    margin: 5px 0;
    line-height: 1.5;
}
.signature-redaksi strong {
    font-size: 1.1em;
    color: #4b0082;
}



/* =================================================== */
/* CSS POST KULINER TAMAN WATU RESORT */
/* =================================================== */

/* CONTAINER UTAMA POST */
.kuliner-post-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 25px;
    font-family: 'Poppins', sans-serif; 
    line-height: 1.7;
    color: #333;
}

/* JUDUL UTAMA POST (H1) */
.post-title-kuliner {
    font-family: 'Playfair Display', serif; 
    text-align: center;
    color: #4CAF50; /* Hijau Segar */
    border-bottom: 3px solid #FF9800; /* Orange Hangat */
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.3em;
    font-weight: 700;
}

/* META INFO */
.post-meta-kuliner {
    text-align: center;
    margin-bottom: 30px;
    padding: 10px 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    font-size: 1.0em;
    color: #555;
}

/* HEADING BAGIAN (H2) */
.section-heading-kuliner {
    color: #388E3C; /* Hijau Lebih Gelap */
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid #FF9800;
    padding-left: 15px;
    font-size: 1.8em;
    font-weight: 600;
}

/* SUB-HEADING (H3) */
.section-sub-heading-kuliner {
    color: #555;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 500;
}

/* GAMBAR DAN CAPTION */
.image-placeholder-kuliner {
    margin: 30px 0;
    text-align: center;
}
.image-placeholder-kuliner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.image-caption-kuliner {
    font-style: italic;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

/* TABEL MENU */
.menu-table-kuliner {
    margin: 20px 0;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    overflow: hidden;
}
.info-box-title-kuliner {
    background-color: #A5D6A7; /* Hijau Muda Background */
    color: #388E3C;
    padding: 12px 15px;
    margin: 0;
    font-size: 1.3em;
    font-weight: 600;
}
.menu-table-kuliner table {
    width: 100%;
    border-collapse: collapse;
}
.menu-table-kuliner td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}
.menu-table-kuliner tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.menu-table-kuliner td strong {
    color: #FF9800; /* Menonjolkan nama menu */
}

/* DAFTAR FITUR/HARGA */
.feature-list-kuliner {
    list-style: none;
    padding-left: 0;
}
.feature-list-kuliner li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.1em;
}
.feature-list-kuliner li::before {
    content: "🍽️"; /* Ikon makanan */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA BAWAH */
.cta-bottom-kuliner {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    padding: 15px;
    background-color: #FF9800;
    color: white;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.4);
}


/* Minor utility */
.hidden-mobile { display:none; }
@media(min-width:768px){ .hidden-mobile{ display:inline-block; } }
