/* Fonts */
@font-face {
    font-family: 'Suisse';
    src: url('./fonts/SuisseIntlMono-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Suisse';
    src: url('./fonts/SuisseIntlMono-Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Core design on every page */
body {
    --primary: white;
    --primary-dark: black;
    background-color: var(--primary);
    color: black;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "scandia-web", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
}

.title {
    position: fixed;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.title a {
    color: black;
    text-decoration: none;
}

.title a:hover {
    opacity: 45%;
}

.contact {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 100;
}

.contact a {
    color: black;
    text-decoration: none;
}

.contact a:hover {
    opacity: 45%;
}

menu {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 32px;
    display: flex; 
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; 
    z-index: 100;
}

nav {
    display: flex;
    flex-direction: column;
}

menu a {
    color: black;
    text-decoration: none;
}

menu a:hover {
    opacity: 45%;
}

li {
    margin: 0;
    list-style: none;
}

/* Footer links */
.footer-links {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    z-index: 100;
    background-color: white;
    padding: 32px;
    box-sizing: border-box;
}

.footer-links a {
    color: black;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 45%;
}

.email-link {
    margin-left: auto;
    position: fixed;
    bottom: 32px;
    right: 32px;
}

/* Page specific design - alternating text and videos */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 50px;
    gap: 80px;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 1050px;
    width: 100%;
    align-items: center;
}

.text-block {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    line-height: 1.3;
    max-width: 250px;
    text-align: center;
    margin: 0 auto; 
}

.video-block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.video-block video {
    width: 100%;
    height: auto;
    display: block;
}

.video-block.tall video {
    max-height: 100vh;
}