@font-face {
    font-family: 'MontserratAlternates';
    src: url('fonts/MontserratAlternates-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MontserratAlternates';
    src: url('fonts/MontserratAlternates-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'MontserratAlternates', sans-serif;
    /*background-color: #005F6A;*/
    background-image: url('images/background_strings.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
}

header {
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    animation: slide-in-left 1s ease-out;
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    animation: slide-in-left 1s ease-out;
    font-family: 'MontserratAlternates', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 90px);
    width: 100%;
}

.center-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1 1 auto;
    animation: fade-in 1.5s ease-in;
}

.center-hero h1 {
    font-size: 56px;
    font-family: 'MontserratAlternates', sans-serif;
    font-weight: 600;
}

.bottom-message {
    width: 100%;
    text-align: center;
    padding: 24px 16px 32px;
    animation: fade-in 2s ease-in;
}

.bottom-message p {
    margin: 0;
    font-size: 24px;
    font-weight: 100;
    font-family: 'MontserratAlternates', sans-serif;
}

/* legacy class left intentionally unused for safety */
.coming-soon { }

/* replaced by .center-hero h1 */

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
