@font-face {
    font-family: 'Rethink Sans';
    src: url('../../fonts/RethinkSans-VariableFont_wght.ttf') format('truetype-variations'),
         url('../../fonts/RethinkSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('../../fonts/RethinkSans-Italic-VariableFont_wght.ttf') format('truetype-variations'),
         url('../../fonts/RethinkSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #F0ECEB;
    background-image: url('../Isolation_Mode@2x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Rethink Sans', sans-serif;
    position: relative;
}

.container {
    /* position: relative; */
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 100%;
}

.logo {
    margin-bottom: 3rem;
}

.logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 200px;
    width: auto;
}

.coming-soon {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 5vw, 40px);
    line-height: 100%;
    letter-spacing: 0.2em;
    color: #2F4358;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.tagline, 
.company-info {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 100%;
    letter-spacing: 0%;
    color: #867671;
    font-style: italic; 
}

.tagline span {
    color: #2F4358;
    font-style: normal !important;
}

.company-info {
    margin-top: 2rem;
    font-size: 15px !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo-image {
        max-height: 150px;
    }
    
    .coming-soon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo-image {
        max-height: 120px;
    }
}

