/*
Theme Name: The Minted Post
Author: Aditya
Description: A custom, lightweight, dark-mode Crypto Web3 Magazine theme.
Version: 1.0
*/

/* --- CSS Variables (Design System) --- */
:root {
    /* Color Palette */
    --bg-color: #0F172A; /* Deep Midnight Navy / Charcoal */
    --surface-color: #1E293B; /* Slightly lighter for cards */
    --primary-mint: #00FFA3; /* Neon Mint Green */
    --primary-mint-hover: #3EB489; /* Darker Mint for hover effects */
    --text-main: #E2E8F0; /* Off-white for body text */
    --text-heading: #FFFFFF; /* Pure white for headings */
    --border-color: #334155; /* Subtle border for grids */

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Basic Reset & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-mint);
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header CSS --- */
.site-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--primary-mint);
    font-weight: bold;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
}

.btn-subscribe {
    background-color: var(--primary-mint);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-subscribe:hover {
    background-color: var(--primary-mint-hover);
    color: var(--bg-color);
}