/* CSS styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
    cursor: none;
    background-color: black;
    color: white;
    transition: background-color 3s ease, color 3s ease;
}

body.is-day {
    background-color: white;
    color: black;
}

body.is-day .custom-cursor {
    background-color: black;
}

#cursors {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.custom-cursor {
    background-color: white; /*white for night mode, black for day mode*/
    position: absolute;
    z-index: 1000;
    width: 50px;
    height: 10px;
    background-color: white; /*white for night mode, black for day mode*/
    pointer-events: none;
    transform-origin: 50% 0%;
    border-radius: 1px;
    transition: background-color 3s ease;
}

/* .cursor-shadow {
    position: absolute;
    z-index: 999;
    width: 50px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transform-origin: 0% 0%; 
    border-radius: 1px;
    filter: blur(3px);
    opacity: 0;
    transition: opacity 3s ease, transform 1s linear;
} */

#shadow-svg {
    opacity: 0;
    transition: opacity 3s ease;
  }

body.is-day #shadow-svg {
    opacity: 1;
}

.info-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    justify-items: center;
    padding: 1.5em;
    gap: 1.5em;
}

.info-col h4 {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
}

.info-col label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.3em;
}

.info-col p {
    font-size: 0.75rem;
    line-height: 1.5;
}

input[type="text"] {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-size: 0.75rem;
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    width: 80px;
    outline: none;
    color: white;
    transition: border-color 3s ease, color 3s ease;
}

body.is-day input[type="text"] {
    border-bottom: 1px solid black;
    color: black;
}