html {
    height: 100vh;
    margin: 0;
    background-color: white;
}

body {
    height: 100vh;
    margin: 0;
    /* margin-right: 17px; COMPENSATE FOR SCROLLBAR IF IT EXISTS ON OTHER PAGES*/
    font-family: "Noto Sans", sans-serif;
    color: black;
}

a:link,
a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Prevent blue highlight on link click */
.noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* .page width calc needs to be updated if header or footer height is adjusted */
/* (100vh - Qpx) * 1.78 ... where Q = height of header + height of footer */
/* Check media.css for usage there as well */
.page {
    display: block;
    height: 100vh;
    width: calc((100vh - 250px) * 1.78);
    max-width: 95%;
    margin: auto;
    text-align: center;
}

.shade {
    opacity: 0;
    height: 150%;
    width: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 2;
    position: fixed;
    transition: opacity 0.8s linear;
    overflow-y: hidden;
    pointer-events: none
        /*since this element overlays everything, allow you to click through it to access links below */
}

.header {
    height: 100px;
    position: relative;
    line-height: 20px;
    margin-bottom: 2%;
}

.logo {
    float: left;
    position: absolute;
    bottom: 10px;
    left: 0;
    text-align: left;
}

.logo-name {
    font-size: 35px;
    line-height: 40px;
}

.noto-sans-logo {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.logo-subtitle {
    color: gray;
    font-size: 16px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
}

.menu {
    float: right;
    position: absolute;
    bottom: 10px;
    right: 0;
    text-align: left;
}

.menu-subtitle {
    color: gray;
    padding-right: 10px;
    line-height: 20px;
    font-size: 16px;
    text-decoration: underline;
}

.menu-subtitle:hover {
    text-decoration: underline;
}

.line {
    display: none;
    background-color: black;
    height: 2px;
    border-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content {
    margin-bottom: 2%;
    z-index: 2;
    position: relative;
}

.reel {
    display: block;
}

.alt-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.alt-video {
    flex: 40%;
    margin-bottom: 2%;
}

.alt-video:nth-child(odd) {
    margin-right: 5px;
}

.alt-video:nth-child(even) {
    margin-left: 5px;
}

.stills {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 2%;
}

.still {
    flex: 40%
}

.still:nth-child(odd) {
    margin-right: 5px;
}

.still:nth-child(even) {
    margin-left: 5px;
}

.brands {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
    align-items: center;
}

.brands img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    /* Add consistent vertical alignment */
    display: block;
    margin: 0 auto;
}

.footer {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: baseline;
}

.name {
    font-size: 16px;
}

.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 22px;
}
