@font-face {
    font-family: 'TC Seraphine Round Regular';
    src: url('fonts/TC Seraphine Round Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TC Seraphine Round Bold';
    src: url('fonts/TC Seraphine Round Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TC Wonderling Round Italic';
    src: url('fonts/TCWonderlingRound-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Volume Sans TC Regular';
    src: url('fonts/Volume TC Sans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background-color: rgb(249,250,233);
    color: rgb(42, 39, 34);
    margin: 0;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: #a2a3a2;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.25vw, 1.2rem);
    letter-spacing: 0.05em;
    font-family: 'Volume Sans TC Regular', sans-serif;
}

.site-nav a.active {
    color: rgb(128, 0, 0);
}

.site-nav a:hover {
    color: rgb(42, 39, 34);
}

.site-nav a.active:hover {
    color: rgb(128, 0, 0);
}

@media (max-width: 600px) {
    .site-nav ul {
        gap: 0.75rem 1.25rem;
    }
}

.under-construction {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

.under-construction .headline {
    margin: 0;
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    text-transform: uppercase;
    color: rgb(128, 0, 0);
    font-family: 'TC Seraphine Round Regular', serif;
    line-height: 1;
}

.under-construction .message {
    margin: 0.75rem 0 0;
    font-size: clamp(0.9rem, 1.6vw, 1.5rem);
    font-family: 'TC Wonderling Round Italic', serif;
}
