/* Fleur Vermeulen - ferganova.shop
   Unique modern magazine-style blog with warm yellow/amber theme
   Fully responsive, no images, text + color focused, Google Ads safe
*/

:root {
    --accent-yellow: #d97706;
    --warm-bg: #faf7f0;
    --text-warm: #3f3a36;
    --card-border: #e7e0d5;
}

body {
    font-feature-settings: "kern" "liga" "tnum";
}

/* Smooth everything */
* {
    transition-property: color, background-color, border-color, transform, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better focus states for accessibility */
input:focus, textarea:focus, button:focus {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

/* Magazine card polish */
.article-card {
    box-shadow: 0 1px 3px rgba(60, 50, 40, 0.04);
}

.article-card:hover {
    box-shadow: 0 10px 15px -3px rgba(60, 50, 40, 0.08), 0 4px 6px -4px rgba(60, 50, 40, 0.08);
}

/* Typography refinements */
h1, h2, h3 {
    font-feature-settings: "kern" "tnum";
}

/* Footer links */
footer a {
    transition: color 0.15s ease;
}

footer a:hover {
    color: #f5e8c7;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.2s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Subtle decorative elements */
.decorative-line {
    background: linear-gradient(to right, transparent, #d4b78a 20%, #d4b78a 80%, transparent);
}

/* Ensure long legal texts are readable */
.prose-legal {
    max-width: 100%;
}

/* Yellow accent buttons and pills already styled inline for uniqueness */
