:root {
    /* Cassette Futurism */
    --accent: #e2b053;
    --secondary: #8d2d88;
    --terminal: #b6ab9f;
    --dune: #bda38a;
    --oak: #6d5533;
    --bright: #fce8cd;
    --midtone: #fce8cd;
    --space: #0c0807;
    --galaxy: #383737;

}

@font-face {
    font-family: 'notosans';
    src: url('assets/fonts/NotoSans.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: normal;
}

@font-face {
    font-family: 'orbitron';
    src: url('assets/fonts/orbitron.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: normal;
}

@font-face {
    font-family: 'jetbrains';
    src: url('assets/fonts/jetbrains.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: normal;
}

/* hide scrollbar */
.container {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
    .container::-webkit-scrollbar { 
        display: none;  /* Older Safari and Chromium */
    }

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/wallpaper_city.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    margin-left: 50px;
    color: var(--onyx);
    font-family: 'orbitron';
}

h2, h3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
    margin-left: 52px;
    margin-right: 52px;
    font-family: 'notosans';
    font-size: 16px;
    color: var(--offwhite)
}

a {
    color: var(--accent)
}



.scrolling-text {
    position: fixed;
    top: 10%;
    padding: 8px;
    font-size: 40px;
    font-family: 'orbitron';
    color: var(--space);
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}
    @keyframes scroll {
        0% { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
}

/* ---- Dock ---- */

.dock {
    position: fixed;
    bottom: 8px; 
    width: 70vw;
    margin-left: 15vw;
    padding: 8px;
    z-index: 100;

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

    background-color: var(--space);
    border: 2px solid var(--bright);
}
    .dock .dock-icon {
        position: relative;
        float: left;
        background-color: var(--bright);
        border: 2px solid var(--accent);
    }

.dock-icon {
    width: 40px;
    height: 40px;
    padding: 12px;
    margin-left: 20px;
}
    .dock-icon img {
        width: 100%;
        height: 100%;
    }
    .dock-icon img:nth-child(2) {
        display: none;
    }
    .dock-icon:hover img:nth-child(1) {
        display: none;
    }
    .dock-icon:hover img:nth-child(2) {
        display: block;
    }
/* ---- END Dock ---- */


/* ---- Status Bar ---- */

.status-bar {
    position: sticky;
    top: 8px;
    display: flex;
    justify-content: right;
    align-items: center;
    
    margin: 8px;
    padding: 8px;

    z-index: 100;
    
    border: 2px solid var(--bright);
    background-color: var(--space);
}
    .status-bar .time {
        position: fixed;
        left: 50vw;
        font-family: "orbitron";
        color: var(--bright)
    }
    .status-bar .dock-icon {
        margin: 0;
        margin-right: 20px;
        padding: 0;
        
        width: 30px;
        height: 30px;
    }
    .status-bar h1 {
        position: fixed;
        left: 50%;
        margin: 0;
        padding: 3px;
            font-size: 20px;
            color: var(--bright);
    }
    .status-bar p {
        margin: 0;
        padding: 0px;
        position: relative;
        top: 50%;
        font-family: "orbitron";

        font-size: 12px;
        color: var(--bright);
    }

/* ---- END Status Bar ---- */


/* ---- Window ---- */

.window {
    position: relative;
    background-color: var(--bright);
    border: 2px solid var(--space);
    z-index: 10;
}
    .window::before {
        
        content: attr(title);
        display: block;
        padding: 8px;
        font-family: 'jetbrains';
        color: var(--accent );
        background-color: var(--space);
        border-bottom: 1px solid var(--bright);

        overflow-y: hidden;;
    }

    .window h1 {
        margin: 8px;
        font-family: 'orbitron';
        color: var(--space);
    }

    .window p {
        margin-left: 32px;
        margin-right: 32px;
    }

    .window p a {
        color: var(--secondary);
    }

    .window li {
        margin: 8px;
        font-family: 'notosans';
        color: var(--space);
        
    }
        .window ul li::marker {
            content: '💿 ';
            font-size: 15px;
        }

        .window ul li a {
            color: var(--secondary);
        }

.spacer {
    position: relative;
    height: 100px;
    background-color: transparent;
}
/* ---- END Window ---- */


/* ---- Screen ---- */
.screen_grid {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    column-gap: 24px;
    row-gap: 8px;

    padding: 16px;
    background-color: transparent;
}
    .screen_grid .right_spacer {
        background-color: transparent;
        grid-area: 1 / 3 / span 2 / span 1;
    }

    .screen_grid .left_spacer {
        background-color: transparent;
        grid-area: 1 / 1 / span 2 / span 1;
    }

    .screen_grid .window {
        padding: 0px;
        padding-bottom: 8px;
        
    }
    .screen_grid .popup {
        background-color: var(--bright);
        border: 2px solid var(--space);
        
        grid-area: 1 / 1 / span 2 / span 1;
        font-family: "notosans";
        margin-left: 8px;
    }
        .popup h1 {
            font-size: 24px;
            margin-left: 16px;
            color: var(--onyx);
            font-family: 'orbitron';
        }

        .popup ol li {
            padding-bottom: 8px;
        }
            .popup ol li::marker {
                content: '〇 ';
                font-size: 15px;
            }
        .popup ul li::marker {
            content: '💿 ';
            font-size: 15px;
        }

/* ---- END Screen ---- */


