﻿body {
    margin: 0;
    font-family: "Lato", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1rem 8rem;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s;
}

    a:hover {
        opacity: 0.75;
    }

.bottom-nav,
footer {
    background-color: var(--color-surface);
    width: 100%;
}

.bottom-nav {
    position: fixed;
    bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

footer {
    position: fixed;
    bottom: 0;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.5rem;
}

.container {
    max-width: 400px;
}

.content-container {
    max-width: 800px;
}

.container,
.content-container {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
}

    input:focus,
    textarea:focus {
        outline: 2px solid var(--color-text);
    }

button {
    padding: 0.75rem;
    background-color: var(--color-text);
    color: var(--color-bg);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

    button:hover {
        opacity: 0.85;
    }

h1 {
    margin-top: 0;
    text-align: center;
}

p {
    line-height: 1.6;
    margin: 1rem 0;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .container,
    .content-container {
        padding: 1.5rem 1rem;
        border-radius: 0;
    }

    .bottom-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    body {
        padding: 4rem 1rem 10rem;
    }
}

/* Top nav area with burger */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem;
    z-index: 100;
}

/* Burger button */
.burger {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
}

/* Hidden menu (initially) */
.menu {
    position: absolute;
    max-width: 200px;
    top: 3.5rem;
    left: 1rem;
    background-color: var(--color-surface);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

    /* Show menu when toggled */
    .menu.open {
        display: flex;
    }

    /* Menu links */
    .menu a {
        color: var(--color-text);
        text-decoration: none;
        font-size: 1rem;
    }

