/* ---------- Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #F5F5F5; /* light gray background */
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ---------- Header ---------- */
header {
    background: #000000; /* jet black */
    color: #fff;
    padding: 25px 0;
    text-align: center;
}

header h1 a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: #D7263D; /* crimson */
    text-decoration: none;
}

header h1 a span {
    color: #39FF14; /* neon accent for ORA */
}

/* ---------- Navigation ---------- */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 15px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: #39FF14;
}

/* ---------- Content ---------- */
h2, h3, .post h1 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

h2 {
    margin: 30px 0 15px;
    color: #D7263D;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* ---------- Cards ---------- */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 4px solid #D7263D;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    border-radius: 6px;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 1.4em;
}

.excerpt {
    font-size: 0.95em;
    color: #555;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    background: #D7263D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #39FF14;
    color: #000;
}

/* ---------- Footer ---------- */
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    color: #aaa;
    margin-top: 50px;
}

/* ---------- Post Page ---------- */
.post h1 {
    font-size: 2.4em;
    margin: 20px 0 10px;
    color: #D7263D;
}

.post .meta {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.post img.featured {
    width: 100%;
    border-radius: 6px;
    margin: 20px 0;
}

.post .content {
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ---------- Tags ---------- */
.tags a {
    background: #eee;
    padding: 5px 9px;
    border-radius: 4px;
    margin-right: 5px;
    text-decoration: none;
    color: #333;
    font-size: 0.9em;
}

.tags a:hover {
    background: #D7263D;
    color: #fff;
}
