@font-face {
    font-family: 'Uncut Sans Variable';
    src: url('./public/fonts/UncutSans-Variable.woff2') format('woff2-variations');
    font-weight: 1 999;
    font-display: swap;
}

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Uncut Sans Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
    color: black;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
    color: black;
}

.header {
    padding: 1.5rem 2rem;
}

.logo {
    height: 6rem;
}

.logo img {
    height: 100%;
    width: auto;
}

.mission {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 5rem 2rem;
    text-align: center;
}

.mission p {
    font-size: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.mission a {
    color: black;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: opacity 0.2s ease;
}

.mission a:hover {
    opacity: 0.6;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.products {
    font-size: 1.4rem;
    line-height: 1.4;
}

.products a {
    color: black;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: opacity 0.2s ease;
}

.products a:hover {
    opacity: 0.6;
}

.copyright {
    opacity: 0.6;
    text-align: right;
}

@media (max-width: 768px) {
    .mission p {
        font-size: 1.75rem;
    }
    
    .products{
        width: 100%;
        font-size: 1rem;
        text-align: left;
        }
    .products p{
        padding: 20px 0;
        border-bottom: solid 1px #bebebe;
    }
    
    .footer {
        flex-direction: column;
        gap: 0.5rem;
    }
}

