/* Ruang Puisi Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --font-heading: 'Cinzel', serif;
    --font-reading: 'Lora', Georgia, serif;
    --font-ui: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-ui);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.heading-font {
    font-family: var(--font-heading);
}

.poem-reading-font {
    font-family: var(--font-reading);
}

.poem-content {
    white-space: pre-line;
    line-height: 2.2;
    letter-spacing: 0.02em;
}

/* Glassmorphism Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dark .glass-card {
    background: rgba(28, 25, 23, 0.85);
}

/* Subtle Hover Animation */
.hover-lift {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
    transform: translateY(-3px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(168, 162, 158, 0.4);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 162, 158, 0.7);
}

