/* ---------- GLOBAL ---------- */

body {
    background-color: #0b1220;
    color: #e5e7eb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.2px;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    letter-spacing: -0.5px;
    font-weight: 600;
}

p {
    color: #cbd5e1;
}

.text-muted {
    color: #94a3b8 !important;
}

section {
    padding: 80px 0;
}

/* Prevent weird narrow layout issues */
.container {
    max-width: 1200px;
}

/* ---------- NAVBAR ---------- */

.navbar {
    background: rgba(11, 18, 32, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand {
    letter-spacing: 2px;
    font-size: 14px;
    color: #94a3b8 !important;
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    margin-left: 20px;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* ---------- HERO ---------- */

/* Homepage hero */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}

/* Blog hero override */
.blog-hero {
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    text-align: center;
    padding: 120px 0 100px 0;
}

.blog-hero h1 {
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero .lead {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0 auto;
    color: #94a3b8;
}

.accent-text {
    color: #2563eb;
}

/* ---------- BUTTONS ---------- */

.btn-primary {
    background-color: #2563eb;
    border: none;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.2);
    color: #e5e7eb;
    border-radius: 6px;
    padding: 14px 28px;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.05);
}

/* ---------- BLOG CARDS ---------- */

.card {
    background-color: #111827;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-title {
    color: #ffffff;
}

.card-text {
    color: #94a3b8;
}

/* ---------- BLOG CONTENT PAGES ---------- */

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.blog-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-content img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
}

/* ---------- CTA ---------- */

.blog-cta {
    background: #0f172a;
    text-align: center;
    padding: 80px 0;
}

/* ---------- FOOTER ---------- */

.footer-main,
footer {
    background-color: #0b1220;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    padding: 30px 0;
    text-align: center;
}
