/* ===== Global ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

/* ===== Hero ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 40%, #1a3a5c 100%);
    padding-top: 80px;
}

.hero-section h1 {
    letter-spacing: -1px;
}

/* ===== Story Card ===== */
.story-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

/* ===== Cards ===== */
.card {
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Sections ===== */
section {
    overflow: hidden;
}

section h2 {
    font-size: 2rem;
}

/* ===== Footer ===== */
footer a {
    text-decoration: none;
}

footer a:hover {
    color: #fff !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.6rem;
    }
}
