/**
 * Custom Theme Styles for Thracia Theme
 * Version: 1.1.0
 */

/* --- Font Definitions --- */
body {
    font-family: 'Merriweather', serif;
}

.font-sans {
    font-family: 'Source Sans Pro', sans-serif;
}

.font-display {
    font-family: 'Merriweather', serif;
}

/* --- Basic Link Styling --- */
.prose a {
    color: #2563eb; /* text-blue-600 */
    text-decoration: underline;
    transition: color 0.2s;
}
.prose a:hover {
    color: #1d4ed8; /* text-blue-800 */
}

/* --- Post Meta Styling --- */
.entry-meta {
    font-family: 'Source Sans Pro', sans-serif;
}

/* --- Cookie Consent Banner --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 41, 55, 0.95);
    color: #f9fafb;
    z-index: 1000;
    padding: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

.cookie-content p {
    margin: 0 0 0.75rem 0;
}

.cookie-accept-button {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Source Sans Pro', sans-serif;
}

.cookie-accept-button:hover {
    background-color: #2563eb;
}

@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    .cookie-content p {
        margin: 0 1rem 0 0;
    }
}

