/* VisitOracle.com — Static rebuild 2026 */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #fafaf8;
    --white: #fff;
    --accent: #1a5276;
    --accent-light: #2980b9;
    --border: #e0ddd8;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

html {
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent);
    text-decoration: none;
}

.site-title:hover {
    color: var(--accent-light);
}

.site-nav {
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-nav a:hover {
    color: var(--accent);
}

/* Main container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Front page */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.hero .tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s;
}

.article-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.article-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-date {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.card-title {
    font-size: 1.3rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
    color: var(--accent);
}

.card-author {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Article page */
.article-header {
    text-align: center;
    padding: 2.5rem 0 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.article-header h1 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.article-meta {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-hero-img {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 4px;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.article-body p {
    margin-bottom: 1.2rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
}

.article-body strong {
    font-weight: 700;
}

.article-body em {
    font-style: italic;
}

/* About / Guidelines page */
.page-body {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.page-body h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-top: 2rem;
}

.page-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.page-body p {
    margin-bottom: 1.2rem;
}

/* Series nav */
.series-nav {
    max-width: 720px;
    margin: 0 auto 2rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.82rem;
}

.series-nav strong {
    color: var(--accent);
}

.series-nav a {
    color: var(--accent-light);
    text-decoration: none;
}

.series-nav a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

/* Responsive */
@media (min-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    html { font-size: 16px; }
    .header-inner { flex-direction: column; gap: 0.8rem; }
    .hero h1 { font-size: 1.7rem; }
    .article-header h1 { font-size: 1.6rem; }
}
