@font-face {
    font-family: "PlaywriteBaseFont";
    src: url(../fonts/Playwrite_AU_VIC_Guides/PlaywriteAUVICGuides-Regular.ttf);}
@font-face {
    font-family: "Supermercado1";
    src: url(../fonts/Supermercado_One/SupermercadoOne-Regular.ttf);
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* Background */
#page {
    position: fixed;
    inset: 0;
    background: url("https://pan6.vercel.app/aassets/img/index2-background-test1.jpg")
        center center / cover no-repeat;
    filter: blur(22px);
    transform: scale(1.1);
    z-index: -2;
}

/* Dark overlay for readability */
#page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Main content area */
#indoor {
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
}

/* Navigation bar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 70px;
    padding: 0 30px;

    background: rgb(26, 177, 207);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    box-sizing: border-box;
}

/* Logo / Title */
.topbar h2 {
    font-family: "PlaywriteBaseFont";
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigation list */
.topbar ul {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 0;
    padding: 0;
    list-style: none;
}

/* Links */
.topbar a {
    font-family: "Supermercado1";
    font-size:xx-large;
    text-decoration: none;
    color: white;
    cursor: pointer;

    padding: 8px 14px;
    border-radius: 6px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.topbar a:hover {
    background: rgba(255,255,255,0.25);
    color:aliceblue;
    transform: translateY(-1px);
}

/* Example content area */
.content {
    padding: 40px;
}

.content h1 {
    margin-top: 0;
    font-size: 3rem;
}

.content p {
    max-width: 700px;
    line-height: 1.6;
    font-size: 1.1rem;
}