:root {
    --bg-dark: #120800;
    --bg-mid: #1a0d05;
    --bg-light: #2a1406;
    --accent: #ff8c2b;
    --accent-soft: #ffb066;
    --text-main: #f5e9df;
    --text-muted: #c9b8aa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, var(--bg-light), var(--bg-dark));
    color: var(--text-main);
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(180deg, var(--bg-light), var(--bg-mid));
}

nav {
    display: flex;
    gap: 20px;
    padding: 14px 16px;
    overflow-x: auto;
    white-space: nowrap;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: var(--accent);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 6px 0;
}

.logo-container img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

main {
    min-height: 80vh;
    padding: 40px 20px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.4rem);
    color: var(--accent-soft);
    text-shadow: 0 0 30px rgba(255,140,43,0.25);
}

h1, h2, h3 {
    color: var(--accent);
}

p {
    color: var(--text-muted);
    line-height: 1.6;
}

footer {
    padding: 20px 16px;
    background: #140a04;
    font-size: 0.85rem;
    opacity: 0.85;
}

@media (max-width: 600px) {
    nav {
        justify-content: flex-start;
    }

    .logo-container img {
        width: 48px;
        height: 48px;
    }
}
