@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

@font-face {
    font-family: 'LucideIcons';
    src: url(https://unpkg.com/lucide-static@latest/font/Lucide.ttf) format('truetype');
}

@font-face {
    font-family: 'Product Sans';
    src: url(ProdSans.ttf);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a202c;
    color: #b4c6ee;
    opacity: 0;
    animation: fadein 1s forwards;
}

.hero {
    text-align: center;
    padding: 100px 0;
    opacity: 0;
    animation: fadein 1s forwards;
}

.hero h1 {
    font-size: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-weight: 700;
    color: #84a3e7;
    opacity: 0;
    animation: fadein 1s forwards;
}

.hero p {
    font-family: 'Product Sans';
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: -20px auto;
    padding: 20px;
    font-weight: 400;
    color: #dde0e7;
    animation: gradient 15s ease infinite, fadein 1s forwards;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #b4c6ee;
    margin-top: 250px;
    opacity: 0;
    animation: fadein 1s forwards;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -70px 0;
    opacity: 0;
    animation: fadein 1s forwards;
    color: #fff;
    transition: color 0.3s ease;
}

.button {
    font-family: 'Product Sans', sans-serif;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #84a3e7;
    border-radius: 5px;
    opacity: 0;
    animation: fadein 1s forwards;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: rgb(143, 162, 202);
    transition: background-color 0.3s ease;
}

.lucide-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: spin 2s ease-in-out infinite, fadein 1s forwards;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}

.learn-more {
    font-family: 'Product Sans', sans-serif;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #444444;
    border-radius: 5px;
    opacity: 0;
    animation: fadein 1s forwards;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    transition: background-color 0.3s ease;
    background-color: #666666;
}

@keyframes open {
    0% {
        max-height: 0;
        overflow: hidden;
    }
    100% {
        max-height: 100vh;
        overflow: visible;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadein {
    to {
        opacity: 1;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #273042;
    padding: 10px 20px;
    opacity: 0;
    animation: fadein 1s forwards;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #84a3e7;
    text-decoration: none;
    opacity: 0;
    animation: fadein 1s forwards;
}

.navbar {
    font-family: 'Product Sans';
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: fadein 1s forwards;
}

.navbar a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #84a3e7;
    padding: 10px;
    opacity: 0;
    animation: fadein 1s forwards;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #b4c6ee;
    position: relative;
    transition: color 0.3s ease;
}
