/* CUSTOM FONT - NUNITO SANS */

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/nunito-sans-v19-latin-300.woff2") format("woff2"),
        url("../fonts/nunito-sans-v19-latin-300.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/nunito-sans-v19-latin-regular.woff2") format("woff2"),
        url("../fonts/nunito-sans-v19-latin-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/nunito-sans-v19-latin-700.woff2") format("woff2"),
        url("../fonts/nunito-sans-v19-latin-700.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* GLOBAL RESET & BASE STYLES */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 1rem;
}

body {
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    color: #F6EFEF;
    background: #6F2E3A;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-y: auto;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, p, a {
    margin: 0;
    font-weight: 300;
}

/* LAYOUT */

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(rgba(111, 46, 58, 0.85), rgba(111, 46, 58, 0.25)), url("/images/roses.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* MAIN CONTENT */

.content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(1.25rem, 4vw, 2rem);
}

.status {
    font-size: clamp(0.8rem, 1vw + .8rem, 1.1rem);
    text-transform: uppercase;
}

.logo {
    display: block;
    width: min(230px, 70vw);
    height: auto;
    margin: 2.25rem 0 1.5rem 0;
}

.services {
    font-size: clamp(1rem, 1vw + .9rem, 1.3rem);
    margin-bottom: 0.75rem;
    max-width: 40rem;
}

.description {
    font-size: clamp(1rem, 1vw + .9rem, 1.3rem);
    margin-bottom: 2.25rem;
    max-width: 40rem;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact a {
    font-size: clamp(1rem, 1vw + .9rem, 1.3rem);
    color: inherit;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.contact a:focus-visible {
    outline: 2px solid #F6EFEF;
    outline-offset: 3px;
    text-decoration: underline;
}

/* FOOTER */

.footer {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: #6B2C38;
    border-top: 1px solid #F6EFEF40;
}

.footer p {
    font-size: clamp(0.75rem, 0.2vw + 0.75rem, 0.9rem);
    color: rgba(246, 239, 239, 0.75);
}
