/* -------------------------------------------------------------------------------------------------------------------------------- */

/* Default */

body {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* -------------------------------------------------------------------------------------------------------------------------------- */

/* Universal */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.debug * {
    outline: 1px solid rgba(255, 0, 0, 0.5);
}

/* -------------------------------------------------------------------------------------------------------------------------------- */

/* Classes */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.below-hero {
    height: 100vh;   /* gives enough space to scroll */
    background: white;
}

.hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: white;

    z-index: 10;

    width: min(90%, 750px);
}

.hero-title {
    font-family: "Google Sans", sans-serif;
    font-size: 56px;
    font-weight: 700;

    margin-bottom: 10px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;

    line-height: 1.5;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    height: 40px;
    width: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 60px;

    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);

    display: flex;
    align-items: center;

    padding-left: 50px;

    z-index: 100;
}

.welcome-video {
    width: 100%;
    height: 100vh;
    filter: brightness(35%);
    object-fit: cover;
    display: block;
}

/* -------------------------------------------------------------------------------------------------------------------------------- */

/* Elements */

#debug-indicator {
    position: fixed;
    bottom: 10px;
    left: 10px;

    background: rgba(255, 0, 0, 0.5);
    color: white;

    padding: 6px 10px;
    font-family: Arial;
    font-size: 16px;

    border-radius: 0px;

    display: none; /* hidden by default */
    z-index: 9999;
}

/* -------------------------------------------------------------------------------------------------------------------------------- */