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

html, body {
    height: 100%;
    overflow: hidden;
    animation: fadeIn 2s ease-out;
}

body {
    background-image: url('background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    position: relative;
}

/* Create a wrapper for the logo and title */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    animation: fadeInUp 1.2s ease-out;
}

.logo {
    max-width: 50%;
    height: auto;
}

.title {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.5rem;
    letter-spacing: 4px;
    -webkit-text-stroke: 0;
    stroke: none;
    stroke-width: 0;
    stroke-dasharray: 0;
    animation: fadeInUp 1.2s ease-out;
}

.subtitle {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2rem;
    margin-top: 5px;
    letter-spacing: 4px;
}

/* .description {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.6;
} */

.header-links {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.investors-link, .contact-link {
    position: relative;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    text-decoration: none;
    animation: fadeInUp 1.2s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.investors-link::after, .contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.investors-link:hover::after, .contact-link:hover::after {
    width: 100%;
    left: 0;
}

.separator {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    margin: 0 2px;
    animation: fadeInUp 1.2s ease-out 0.3s;
    animation-fill-mode: backwards;
    display: flex;
    align-items: center;
    padding-bottom: 2px;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px 0;
    }
    .logo {
        max-width: 50%;
    }
    .title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.5rem;
    }
    /* .description {
        font-size: 1rem;
        max-width: 90%;
        margin-top: 15px;
    } */
    .header-links {
        right: 20px;
        gap: 5px;
    }
    .separator {
        margin: 0 1px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}