/* Prime Elementor Theme main stylesheet */
:root {
    --prime-color-primary: #0057ff;
    --prime-color-secondary: #ff5a5f;
    --prime-color-accent: #ffb400;
    --prime-color-body-bg: #ffffff;
    --prime-color-heading: #111827;
    --prime-color-text: #4b5563;

    --prime-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --prime-font-body-size: 16px;
    --prime-font-body-line-height: 1.6;

    --prime-font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --prime-font-h1-size: 42px;
    --prime-font-h2-size: 32px;
    --prime-font-h3-size: 26px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--prime-color-body-bg);
    color: var(--prime-color-text);
    font-family: var(--prime-font-body);
    font-size: var(--prime-font-body-size);
    line-height: var(--prime-font-body-line-height);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--prime-font-heading);
    color: var(--prime-color-heading);
    margin-top: 0;
}

h1,
.h1 {
    font-size: var(--prime-font-h1-size);
}

h2,
.h2 {
    font-size: var(--prime-font-h2-size);
}

h3,
.h3 {
    font-size: var(--prime-font-h3-size);
}

a {
    color: var(--prime-color-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--prime-color-secondary);
    text-decoration: underline;
}

.site-header {
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--prime-color-heading);
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.primary-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.primary-navigation a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
}

.primary-navigation a:hover {
    color: var(--prime-color-primary);
}

.site-footer {
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
    margin-top: 3rem;
}

.site-footer-inner {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-post-card {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.entry-title {
    margin-bottom: 0.25rem;
}

.entry-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.entry-summary {
    font-size: 0.95rem;
}

.page-header {
    padding: 2rem 0 1rem;
}

.page-title {
    margin-bottom: 0.25rem;
}

.archive-description {
    color: #6b7280;
    font-size: 0.95rem;
}