@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Murecho:wght@100..900&display=swap');

:root {
    --primary-color: #0A151C;
    /* Deep Navy from logo */
    --accent-color: #64DDFB;
    /* Gold accent from logo */
    --text-color: #ffffff;
    --bg-gradient: #0A151C;
    --font-main: 'Murecho', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;

}

.container {
    text-align: left;
}

.logo-wrapper {
    margin-bottom: 3rem;
}

#main-logo {
    max-width: 300px;
    height: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    max-width: 600px;
    line-height: 3rem;
}

h1 span {
    color: var(--accent-color);
    font-weight: 400;
}


.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.btn-primary {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

footer {
    position: absolute;
    bottom: 2rem;
    z-index: 2;
    font-size: 11px;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}