/* General Setup */
@font-face {
    font-family: 'Aptos';
    src: url('Aptos-SemiBold.woff2') format('woff2'),
        url('Aptos-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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


body {
    font-family: 'Aptos', sans-serif;
    /* A classic, elegant font */
    text-align: center;
    margin: 0;
    padding: 0px;

    background-color: #f8f4f2;
    /* Light, warm background */
    color: #000;
    /* Dark text for contrast */
    image-rendering: pixelated;
    /* Standard property for sharp scaling */
    image-rendering: -moz-crisp-edges;
    /* Firefox specific */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit specific (non-standard) */
}

/* Color Palette */
:root {
    --primary-color: #000;
    /* The burnt orange/red from the logo */
    --secondary-color: #8b4513;
    /* A warm brown for contrast */
}

/* Header/Logo Styling */
main {
    display: flex;
    flex-direction: column;
    /* align-content: center; */
    justify-content: center;
    align-items: center;
    height: 90vh;
}

/* Main Content */
#announcement {
    margin: 40px 0;
    padding: 20px;
    /* border: 1px solid var(--primary-color); */
    display: inline-block;
}

#announcement p {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 600;
}

#construction-note {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Footer/Contact Info */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
}

footer img {
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    margin-bottom: -25px;
}

#contact-info {

}

#contact-info a {
    font-weight: 300;
    color: #000;
    text-decoration: none;
}

#contact-info a:hover {
    text-decoration: underline;
}

.separator {
    color: #000;
    margin: 0 10px;
}

@media (max-width:767px) {
    footer img {
        height: 110px;
        object-fit: cover;
        width: 100%;
    }

    #contact-info a {
        display: block;
        margin-top: 8px;
    }

    .separator {
        display: none;
    }
}