/*
Theme Name: Feedcue Journal
Author: AI Design Partner
Description: Energetisches Bento-Theme für Feedcue Journal.
Version: 1.3
Text Domain: feedcue-journal
*/

/* STICKY FOOTER LOGIC */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #FDFCF6;
    font-family: 'Poppins', sans-serif;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* CUSTOM SCROLLBAR (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 16px !important;
}
::-webkit-scrollbar-track {
    background: #FDFCF6 !important;
}
::-webkit-scrollbar-thumb {
    background-color: #000000 !important;
    border-radius: 10px !important;
    border: 4px solid #FDFCF6 !important;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent, #F59E0B) !important;
}

/* CUSTOM SCROLLBAR (Firefox) */
* {
    scrollbar-width: thin;
    scrollbar-color: #000000 #FDFCF6;
}

/* BENTO CARD HOVER EFFECT */
.bento-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    z-index: 1;
}

.bento-card:hover {
    transform: scale(1.02) rotate(-1.5deg) !important;
    box-shadow: 16px 16px 0px 0px rgba(0,0,0,1) !important;
    z-index: 10;
}

/* BUTTON ANIMATION */
.btn-animate {
    transition: all 0.2s ease;
}
.btn-animate:hover {
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0px 0px black;
}

/* WP CONTENT FIXES */
.entry-content h2, .entry-content h3 { font-family: 'Fredoka', sans-serif; font-weight: bold; margin-top: 1.5em; }
.entry-content p { margin-bottom: 1.2em; line-height: 1.8; }