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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Exo 2', sans-serif;
}

.phase1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeOutPhase1 1s ease-in-out 2.2s forwards;
}

.hexagon-logo {
    width: 400px;
    height: auto;
    transform: scale(0);
    animation: revealLogo 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.phase2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInPhase2 1s ease-in-out 2.2s forwards;
    z-index: 1;
    padding: 2rem;
}

.big-bee {
    width: 250px;
    max-width: 90%;
    height: auto;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInBee 1s ease-in-out 2.7s forwards;
}

.text-container {
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 3.7s forwards;
}

.text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FEB61A;
    font-weight: 700;
    text-shadow:
        0 0 5px #FEB61A,
        0 0 10px #FEB61A,
        0 0 20px #FEB61A,
        0 0 30px #FEB61A;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px #FEB61A,
            0 0 10px #FEB61A,
            0 0 20px #FEB61A,
            0 0 30px #FEB61A;
    }
    to {
        text-shadow:
            0 0 10px #FEB61A,
            0 0 20px #FEB61A,
            0 0 30px #FEB61A,
            0 0 40px #FEB61A;
    }
}

.text-container p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes revealLogo {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOutPhase1 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeInPhase2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInBee {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hexagon-logo {
        width: 250px;
    }

    .big-bee {
        width: 180px;
        margin-bottom: 2rem;
    }

    .text-container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .text-container p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
