@font-face {
    font-family: 'Neue Haas Display';
    src: url('Assets/Neue haas/NeueHaasDisplayThin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('Assets/Neue haas/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

:root {
    --text-color: #555555;
    --border-color: #666666;
    --button-bg: #aaaaaa;
    --button-text: #ffffff;
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neue Haas Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 100;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    /* Keep original size of GIF or scale slightly if needed */
    max-width: 150px;
    /* Guess based on typical centered logos, will let the gif dictate if possible */
    height: auto;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-left {
    display: flex;
    gap: 40px;
    width: 250px;
}

.footer-left a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-left a:hover {
    color: #000;
}

.footer-center {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.subscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-input {
    width: 300px;
    height: 30px;
    border: 1px solid var(--border-color);
    outline: none;
    padding: 0 10px;
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 100;
    font-size: 13px;
    color: var(--text-color);
    background-color: transparent;
}

.subscribe-btn {
    height: 30px;
    padding: 0 15px;
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    cursor: pointer;
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 100;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.subscribe-btn:hover {
    background-color: #888888;
}

.footer-right {
    width: 250px;
    text-align: right;
}

/* Dummy pages */
.dummy-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coming-soon {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.back-link {
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-color);
    text-decoration: underline;
}

.back-link:hover {
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-grow: 0;
        margin-top: 20vh;
        margin-bottom: 40px;
    }

    .footer {
        flex-direction: column;
        justify-content: flex-start;
        flex-grow: 1;
        gap: 0;
        padding: 0 20px 30px;
    }

    .footer-center {
        order: 1;
        width: 100%;
        margin-bottom: 25px;
    }

    .subscribe-form {
        justify-content: center;
    }

    .email-input {
        width: 100%;
        max-width: 200px;
    }

    .footer-right {
        order: 2;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        /* Pushes the next item to the bottom */
    }

    .footer-left {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 30px;
    }
}