/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


/* Document wide */
html {
    cursor: default;

    ::selection {
        background-color: transparent;
    }
}

/* Header */
header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1rem;
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;

    nav {
        grid-column: span 3;
    }
}

/* Button */
.button {
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    background-color: var(--white-background);
    border: var(--border);
    backdrop-filter: blur(50px);
}

.button.is-active {
    background-color: rgba(235, 235, 235, 0.5);
    border-color: rgb(255 255 255 / 0.90);
}

/* Overlay */
.noise {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    z-index: 500;
    mix-blend-mode: multiply;
    pointer-events: none;
    background-image: url("/assets/noise-178deecf.jpg");
    background-size: 100px;
}
