@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Poppins:wght@400;700&display=swap');

body {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    position: absolute;
    top: 40px; /* Moved down */
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 150px;
}

@media (max-width: 768px) {
    .logo {
        content: url('second_logo.svg');
    }
}

nav {
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.hero {
    text-align: center;
    position: relative;
}

.subtext {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.title {
    font-size: 64px;
    font-weight: bold;
    color: #cbf926;
    font-family: 'Syncopate', sans-serif;
}

.description {
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto;
    font-family: 'Poppins', sans-serif;
}

.orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
}

.green {
    background-color: #cbf926;
    top: 10%;
    right: 10%;
}

.orange {
    background-color: #ef560a;
    bottom: 10%;
    left: 10%;
}

.bottom-text {
    position: absolute;
    bottom: 50px; /* Moved higher */
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: white;
}

@media (max-width: 768px) {
    .title {
        font-size: 48px;
    }
    .description {
        font-size: 14px;
    }
    .subtext {
        font-size: 14px;
    }
    .bottom-text {
        font-size: 14px;
    }
}
