@font-face {
    font-family: 'PolySans';
    src: url('PolySans-Median.woff2') format('woff2'),
         url('PolySans-Median.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #D93300;
    --color-dark: #19162B;
    --color-white: #fff;
    --color-light-bg: #f4f4f4;
    --color-gray: #333;
    --color-gray-hover: #555;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.logo {
    width: 100%;
    max-width: 90vw;
    height: auto;
    margin-bottom: 30px;
    overflow: visible;
    opacity: 0;
}

.tagline {
    color: var(--color-white);
    font-family: 'PolySans', Arial, sans-serif;
    font-size: 24px;
    max-width: 90vw;
    line-height: 1.2;
    margin: 0 auto;
    opacity: 0;
}

.opus-link {
    font-size: 16px;
    color: inherit;
}

/* Tablet and up */
@media (min-width: 768px) {
    .logo {
        max-width: 500px;
        margin-bottom: 40px;
    }

    .tagline {
        font-size: 48px;
        max-width: 700px;
    }

    .opus-link {
        font-size: 20px;
        color: inherit;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .logo {
        max-width: 600px;
        margin-bottom: 50px;
    }

    .tagline {
        font-size: 65px;
        max-width: 750px;
    }
}
