:root {
        --color: #FFEB3B;
        --color-transparent: #FFF9C4;
        --bee-black: #222;
        --bee-accent: #FFC107;
            --menu-bg: #fffbe7;
            --menu-hover: #ffe066;
}

::selection {
    background: var(--color-transparent);
}

html,
body {
        background: var(--color);
        height: 100%;
        margin: 0;
        font-family: 'Segoe UI', 'Arial', sans-serif;
}

body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        cursor: default;
    }

    nav {
        width: 100%;
        background: var(--menu-bg);
        box-shadow: 0 2px 8px rgba(34,34,34,0.04);
        padding: 0.5rem 0;
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
    }
    .menu {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .menu li {
        display: inline;
    }
    .menu a {
        color: var(--bee-black);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 999px;
        transition: background 0.2s;
    }
    .menu a:hover {
        background: var(--menu-hover);
    }
    .branding {
    }

    .branding {
        text-align: center;
        background: var(--color-transparent);
        border-radius: 24px;
        box-shadow: 0 4px 24px rgba(34,34,34,0.08);
        padding: 2.5rem 2rem 2rem 2rem;
        max-width: 400px;
    }
    .bee-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    h1 {
        color: var(--bee-black);
        font-size: 2.5rem;
        margin: 0 0 0.5rem 0;
        font-weight: 800;
        letter-spacing: 2px;
    }
    .tagline {
        color: var(--bee-accent);
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
    }
    .cta {
        display: inline-block;
        background: var(--bee-accent);
        color: var(--bee-black);
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 999px;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(34,34,34,0.08);
        transition: background 0.2s;
    }
    .cta:hover {
        background: #FFD600;
    }

    .section {
    background: var(--color-transparent);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(34,34,34,0.06);
    padding: 2rem 1.5rem;
    max-width: 500px;
    margin: 2rem auto;
    color: var(--bee-black);
}
.section h2 {
    color: var(--bee-accent);
    font-size: 1.6rem;
    margin-top: 0;
}
.section p {
    font-size: 1.05rem;
    line-height: 1.7;
}