/* The general convention for all sites under the "Lachl.au" banner */
/* (One day there will be a light and a dark mode)(and a mobile mode) */

body {
    font-family: 'Manrope', sans-serif;
    background-color: #101010;
    color: white;
}

a {
    color: #01cafe;
    text-decoration: none;
}

.signupClick {
    text-decoration: underline dotted white 5px;
}

#header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2vw;
    flex-wrap: wrap;
}

/* Match mainBody left padding to header's left offset */
.mainBody {
    padding-left: 2vw;
    padding-right: 2vw;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.2rem 0 1.5rem 0;
    align-items: flex-start;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 0.7rem 1vw;
    box-shadow: 0 1px 6px rgba(1,202,254,0.04);
}
.blog-filters label {
    font-weight: 500;
    margin-right: 0.5rem;
    color: #01cafe;
    font-size: 0.95rem;
}
.blog-filters button {
    background: #181818;
    color: #01cafe;
    border: 1px solid #01cafe;
    border-radius: 6px;
    padding: 0.32rem 0.7rem;
    margin: 0 0.25rem 0.25rem 0;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
}
.blog-filters button:hover, .blog-filters button:focus {
    background: #01cafe;
    color: #101010;
    border: 1px solid #01cafe;
}

@media (max-width: 600px) {
    .blog-filters {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 2vw;
    }
    .blog-filters label {
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
    }
    .blog-filters button {
        font-size: 0.9rem;
        padding: 0.32rem 0.7rem;
        margin: 0 0.15rem 0.25rem 0;
    }
}

#footer {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    text-align: center;
}

.linkLists {
    list-style-type: none;
}

.headLogo {
    width: 70px;
    max-width: 10vw;
    height: auto;
    vertical-align: middle;
}

#header a {
    margin: 0 0.5rem;
    font-size: 1.1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    transition: background 0.2s;
    display: inline-block;
}

#header a:hover {
    background: rgba(1,202,254,0.1);
}

@media (max-width: 600px) {
    #header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.7rem 2vw;
    }
    .headLogo {
        width: 80px;
        max-width: 50vw;
    }
    #header a {
        font-size: 1rem;
        padding: 0.4rem 0.5rem;
    }

    #footer {
        position: static;
        width: 100%;
        margin-top: 2rem;
        text-align: center;
    }

    .mainBody {
        margin-bottom: 3.5rem;
        padding-left: 2vw;
        padding-right: 2vw;
    }
}