/* === FONT FACE === */
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('../fonts/BricolageGrotesque-Regular.woff2') format('woff2'),
        url('../fonts/BricolageGrotesque-Regular.woff') format('woff'),
        url('../fonts/BricolageGrotesque-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('../fonts/BricolageGrotesque-Bold.woff2') format('woff2'),
        url('../fonts/BricolageGrotesque-Bold.woff') format('woff'),
        url('../fonts/BricolageGrotesque-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* === RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #3A4747;
    --light-taupe: #CFC1B0;
    --accent: #A75C3C;
    --dark-text: #252525;
    --off-white: #F8F4EB;
    --container-w: 1200px;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background: var(--dark-bg);
    color: var(--off-white);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.construction-wrapper {
    max-width: 700px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--light-taupe);
}

h1 {
    font-size: 2.75rem;
    color: var(--light-taupe);
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--off-white);
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid var(--light-taupe);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

footer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* === Animations === */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}