* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-gutter: hidden;
}

html,
body {
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
     width: 100%;
    
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: url("../images/Group\ 2532.png") no-repeat center center/cover; */

}

.hero::before {
    content: "";
    position: absolute;
    inset: -15%;
    background: linear-gradient(
        135deg,
        #ff8a00 0%,
        #ffa600 35%,
        #ffc400 65%,
        #ffd84d 100%
    );
    animation: gradientImpulse 10s ease-in-out infinite;
    filter: blur(90px);
    opacity: 0.3;
}

.gradient-impulse {
    position: absolute;
    inset: 0;
    background: url("../images/Group\ 2532.png") no-repeat center center/cover;
    animation: softGlow 3s ease-in-out infinite;
    will-change: filter;
}

@keyframes softGlow {
    0% {
        filter: brightness(0.98);
    }

    50% {
        filter: brightness(1.03);
    }

    100% {
        filter: brightness(0.98);
    }
}


.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}


.logo {
    width: clamp(220px, 38vw, 520px);
    margin-bottom: 0.8rem;
    width: 970px;
}


.subtitle {
    letter-spacing: 0.35em;
    font-size: 25px;
    margin-bottom: 0rem;
    opacity: 0.9;
}

.description {
    max-width: 520px;
        margin-top: 5px;
    margin-bottom: -40px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    font-family: "Montserrat", sans-serif;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 4rem;
    margin-top: 100px;
}

.time-box span {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 100;
    font-family: "Montserrat", sans-serif;
}

.small{
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.time-box small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.socials {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    opacity: 0.85;
}

.socials a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.socials a:hover {
    border-color: #ffffff;
}

.fade {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 600px) {
    .gradient-impulse {
        filter: blur(4px);
    }
}

@media (max-width: 768px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    .gradient-bg {
        animation-duration: 13s;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
    }

    .subtitle {
        margin-bottom: 2.5rem;
    }
}
