@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English&display=swap');

:root {
    --color-black: #000000;
    --color-pine: #01796F;
    --color-cream: #F5F5DC;
    --color-white: #FFFFFF;
}

/* Global styles ---------------------------------------------------------- */
body {
    min-height: 100vh;
    margin: 0;
    font-family: 'IM Fell English', 'Times New Roman', Times, serif;
    background-color: var(--color-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* for texture pseudo-element */
}

/* Subtle paper texture overlay */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/paper-texture.png");
    background-size: 400px 400px; /* tighter pattern for more visibility */
    background-repeat: repeat;
    opacity: 1; /* full visibility */
    mix-blend-mode: multiply; /* blend with cream background */
    pointer-events: none; /* allow clicks through */
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1; /* sit above pseudo texture */
}

.logo {
    max-width: 300px;
    width: auto;
    height: auto;
    margin: 0 auto 1rem auto; /* center horizontally */
}

.tagline {
    color: var(--color-pine);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.coming-soon {
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--color-pine);
    text-transform: uppercase;
}

footer {
    margin-top: auto;
    padding: 1rem 0;
    z-index: 1;
}

a {
    color: var(--color-pine);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Place near bottom or after global styles */
.legal-content {
    max-width: 70%;
    text-align: left;
} 