/* styles.css - Brozilla (Final Clean Version, no banding) */

/* Color Palette */
:root {
    --bg-1: #0e0e0f;
    --bg-2: #121214;
    --card-bg: #161617;
    --text: #e6e6e6;
    --muted: #9a9a9a;
    --accent: #df961e;
    --max-width: 1100px;
}

/* Base Reset */
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family:
        "Montserrat",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 2rem;
}

/* Page Layout */
.page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    background: var(--card-bg);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    font-weight: 600;
    border-radius: 8px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.main-nav a.active {
    background: var(--accent);
    color: #0b0b0b;
}

.main-nav a:hover {
    background: rgba(223, 150, 30, 0.25);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 14px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.mascot {
    width: 200px;
    height: auto;
    border-radius: 16px;
    display: block;
    margin: 0 auto 1rem;
    object-fit: contain;
    background: #141414;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--text);
}

.hero-sub {
    margin: 8px 0 0;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.05rem;
}

.tagline {
    margin: 12px auto 0;
    max-width: 820px;
    color: var(--muted);
    font-weight: 500;
}

/* Call-to-action Row */
.cta-row {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.app-badge img {
    height: 60px;
    display: block;
    border-radius: 8px;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.secondary-cta:hover {
    background: rgba(223, 150, 30, 0.15);
    color: var(--accent);
}

/* Features Section */
.features {
    margin-bottom: 2rem;
}

.features h2 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 800;
    text-align: center;
}

/* Feature Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 18px;
    min-height: 140px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(223, 150, 30, 0.08);
}

.icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    color: var(--accent);
}

.card h3 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.card p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 18px;
    color: var(--muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 820px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .mascot {
        width: 160px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
