html,
body {
    min-height: 100vh;
}

body {
    background-image: url('../img/bg-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

header {
    padding-top: 60px;
    padding-bottom: 20px;
}

header img {
    max-height: 36px;
}

a {
    cursor: pointer;
}

.hero-section {
    /* Example gradient from light-blue to soft-pink */
    min-height: 80vh;
    padding: 2rem 0;
    color: #000;
    /* Adjust for readability on your gradient */
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100vh;
    background-image: url('../img/hero-title-text.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -2.4px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
}

.hero-title-text {
    flex: 1;
    flex-grow: 1;
    margin-right: 80px;
}

.hero-title-countdown {
    flex: 1;
    flex-grow: 0;
    flex-shrink: 0;
}

.hero-row {
    gap: 20px;
}

.hero-left-link {
    display: flex;
    align-items: center;
    color: #000;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.72px;
    margin-bottom: 20px;
    text-decoration: none;
}

.hero-left-ico {
    margin-right: 20px;
}

.hero-left-ico img {
    height: 21px;
    width: 21px;
}

.hero-left-img img {
    max-width: 140px;
}

.hero-right-img {
    margin-bottom: 20px;
}

.hero-right-img img {
    max-width: 140px;
}

.hero-right-link {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 149.783%;
    letter-spacing: -1px;
    text-decoration: none;
}

.hero-right-ico {
    margin-bottom: 15px;
}

.hero-right-ico img {
    height: 30px;
    width: 30px;
}

.countdown-wrapper {
    height: 400px;
    width: 150px;
    overflow: visible;
    position: absolute;
    top: 0;
    right: 0;
}

/* Add desktop specific styles */
@media (min-width: 768px) {
    .countdown-wrapper {
        position: fixed;
        right: 100px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

.number-stack {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0) 15%,
            black 30%,
            black 70%,
            rgba(0, 0, 0, 0) 85%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0) 15%,
            black 30%,
            black 70%,
            rgba(0, 0, 0, 0) 85%,
            transparent 100%);
}

.number {
    position: absolute;
    transition: all 0.5s ease-in-out;
    backface-visibility: hidden;
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 120px;
    font-style: normal;
    font-weight: 500;
    line-height: 0.8;
}

.fade-top {
    transform: translateY(-120%) translateZ(-100px);
    opacity: 1;
}

.current {
    transform: translateY(0) translateZ(0);
    opacity: 1;
}

.fade-bottom {
    transform: translateY(120%) translateZ(-100px);
    opacity: 1;
}

/* RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
    .hero-section::before {
        top: 20%;
        max-height: 70vh;
    }

    
    .hero-title {
        color: #000;
        font-family: Poppins;
        font-size: 60px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        letter-spacing: -5.04px;
    }

    .hero-left-link-desktop {
        color: #000;
        font-family: Poppins;
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: -0.84px;
        margin-bottom: 50px;
        text-decoration: none;
        display: block;
    }

    .hero-left-ico-desktop {
        margin-right: 20px;
    }

    .hero-left-ico-desktop img {
        max-width: 21px;
    }

    .hero-right-link-desktop {
        color: #000;
        font-family: Poppins;
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -1.4px;
        text-decoration: none;
        display: block;
    }

    .hero-right-ico-desktop {
        margin-right: 20px;
    }

    .hero-right-ico-desktop img {
        height: 30px;
        width: 30px;
    }

    .hero-left-img-desktop {
        margin-left: 80px;
    }

    .hero-left-img-desktop img {
        max-width: 200px;
    }

    .number-stack {
        height: 100%;
    }

    .countdown-wrapper {
        height: 100%;
        width: 200px;
        display: relative;
    }

    .number {
        font-size: 280px;
    }
}