/* =========================
   GLOBAL
========================= */

body {
    margin: 0;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #0f0f0f;
    color: white;

    font-family: Arial, sans-serif;
}

.hidden {
    display: none;
}


/* =========================
   LAYOUT
========================= */

.container {
    text-align: center;
}


/* =========================
   TYPOGRAPHY
========================= */

h1 {
    color: #d7ffe0;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

p {
    color: #bdbdbd;
    font-size: 1.2rem;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 20px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
}

.logo {
    color: white;
    text-decoration: none;

    font-size: 1.2rem;
    font-weight: bold;
}


/* =========================
   NAVIGATION
========================= */

.nav-toggle {
    background: none;
    border: none;

    color: white;
    font-size: 2rem;

    cursor: pointer;
}

.nav {
    position: fixed;
    top: 70px;
    right: 40px;

    background-color: #111;
    border: 1px solid #333;

    padding: 15px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.nav.hidden {
    display: none;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:hover {
    color: #888;
}


/* =========================
   FOOTER
========================= */

#footer {
    position: fixed;
    bottom: 24px;
    left: 0;

    width: 100%;
    text-align: center;
}

footer {
    font-size: 0.9rem;
}

footer a {
    color: #777;
    text-decoration: none;
}

footer a:hover {
    color: white;
}


/* =========================
   PAGE-SPECIFIC ELEMENTS
========================= */

.construction {
    margin-top: 30px;
    font-size: 1.1rem;

    animation: pulse 2s infinite;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}