@font-face {
    font-family: 'MetropolisLight';
    src: url('font/Metropolis-Light.otf') format('opentype');
}

@font-face {
    font-family: 'MetropolisBlack';
    src: url('font/Metropolis-Black.otf') format('opentype');
}

@font-face {
    font-family: 'MetropolisBold';
    src: url('font/Metropolis-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'MetropolisRegular';
    src: url('font/Metropolis-Regular.otf') format('opentype');
}

html, body {
    font-family: 'MetropolisLight', sans-serif;
}

h1 {
    color: #9d2235;
    font-family: 'MetropolisBlack';
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-family: 'MetropolisBold';
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #333;
}

h5 {
    font-family: MetropolisBold;
    font-size: 1rem;
    text-transform: uppercase;
    color: #333;
}

h6 {
    font-family: 'MetropolisBlack';
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #bbb;
}

p {
    font-family: 'MetropolisLight';
    font-size: 1rem;
}

a {
    color: #9d2235;
    font-family: 'MetropolisRegular';
}

    a:hover {
        color: #333;
        font-family: 'MetropolisRegular';
    }

/* Main Layout */

nav {
    background-color: #333;
    color: white;
}

.nabholz-logo {
    width: 120px;
}

.footer {
    background-color: #fafafa;
    border-top: 1px solid #888;
    text-align: center;
    padding-top: 40px;
}

    .footer a {
        color: #9d2235;
    }

        .footer a:hover {
            color: #333;
        }

.footer-img {
    width: 200px;
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Home */

ol, li {
    font-family: 'MetropolisLight';
    font-size: 1rem;
}

.safety-sticker {
    width: 15vw;
}

@media (max-width: 480px) {
    .safety-sticker {
        width: 100%;
    }
}

.card {
    margin-bottom: 1.5rem;
}

    .card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: box-shadow 0.3s ease;
    }

.card-title {
    font-family: 'MetropolisRegular';
    font-size: 1.1rem;
    font-weight: 600;
}