/* Custom styles for productivity blog */
:root {
    --bulma-primary: #2563eb; /* Trustworthy blue for Google Ads compliance */
    --transition-smooth: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Push footer to bottom */
main {
    flex: 1;
}

/* Card hover visual effects */
.article-card {
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

/* Smooth transitions for buttons */
.button {
    transition: var(--transition-smooth);
}

/* Cookie Modal animation */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    z-index: 9999;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: none; /* Controlled by JavaScript */
}

@media (min-width: 769px) {
    .cookie-banner {
        right: auto;
        left: 20px;
    }
}

