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

:root {
    --color-black: #000000;
    --color-pine: #01796F;
    --color-red: #E31E25;
    --color-white: #FFFFFF;
}

/* Global styles ---------------------------------------------------------- */
body {
    min-height: 100vh;
    margin: 0;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--color-red);
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.logo {
    width: 75vw; /* 75% of viewport width, not container width */
    max-width: 1000px; /* Maximum width of 1000px */
    height: auto;
    margin: 0 auto 1rem auto; /* center horizontally */
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .logo {
        width: 75vw; /* Keep consistent 75% of viewport on mobile too */
        max-width: none; /* Remove max-width constraint on mobile */
    }
    
    .subscribe-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    main {
        padding: 1rem;
    }
}

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

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

footer {
    margin-top: auto;
    padding: 1rem 0;
    z-index: 1;
    color: var(--color-white);
}

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

a:visited {
    color: var(--color-white);
}

a:hover {
    text-decoration: underline;
}

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

.legal-content h1,
.legal-content h2 {
    color: var(--color-white);
}

.subscribe-btn {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-red);
    padding: 12px 24px;
    border: 2px solid var(--color-white);
    border-radius: 4px;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.subscribe-btn:visited {
    color: var(--color-red);
}

.subscribe-btn:hover {
    background-color: transparent;
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}