/* style.css - The Digital Garden Fixes */

/* Paksa Warna Background (jika Tailwind belum load) */
body {
    background-color: #fdfbf7;
    color: #334155;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Mencegah scroll samping di HP */
}

/* Glass Navbar Effect */
.glass-nav {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.05);
}

/* Font Consistency */
h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Lora', serif;
}

/* Link Hover Effect */
a {
    transition: color 0.2s ease;
}

/* Search Modal styling */
.search-form input:focus {
    box-shadow: none;
    outline: none;
}

/* Progress Bar */
#progress-bar {
    z-index: 9999;
}

/* Memperbaiki tampilan Gambar di Content */
.prose img {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Z-Index Fix */
.menu-mobile {
    z-index: 9999;
}

/* Search Modal Styling */
.search-form {
    background-color: rgba(253, 251, 247, 0.98) !important; /* Warna Paper agak transparan */
    backdrop-filter: blur(5px); /* Efek blur di belakang modal */
}

/* Biar Input Teksnya Besar & Elegan */
.search-form input {
    font-family: 'Lora', serif;
    font-size: 2rem; /* Besar */
    text-align: center;
    background: transparent;
    border: none;
    border-bottom: 2px solid #064e3b; /* Emerald */
}

.search-form input:focus {
    outline: none;
    border-bottom-color: #ea580c; /* Orange saat fokus */
}