:root {
    --bni-red: #D20A11
}

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

body {
    font-family: Poppins,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    line-height: 1.6
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(https://piraeustower.gr/wp/wp-content/uploads/2024/12/Pyrgos-Peiraia-Takes2-Productions_yerolymbos-1411-1200x799.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,#000000b3,#d20a11cc)
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 64rem
}

.bni-logo {
    width: 192px;
    height: auto;
    margin-bottom: 2rem
}

.hero h1 {
    font-size: clamp(2rem,5vw,4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem
}

.hero h2 {
    font-size: clamp(1.25rem,3vw,2rem);
    color: #ffffffe6;
    transition: opacity .5s
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
    animation: bounce 2s infinite
}

@keyframes bounce {
    0%,20%,50%,80%,to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-15px)
    }
}

.info-section {
    padding: 4rem 1.5rem;
    background: #fff
}

.info-grid {
    max-width: 64rem;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem
}

.info-card {
    text-align: center
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

.icon-circle svg {
    color: var(--bni-red)
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.info-description {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center
}

.info-description h2 {
    font-size: clamp(1.5rem,3vw,2.25rem);
    margin-bottom: 1.5rem
}

.countdown-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(to right,#b91c1c,#7f1d1d);
    color: #fff;
    text-align: center
}

.countdown-section h2 {
    font-size: clamp(1.5rem,3vw,2.25rem);
    margin-bottom: 2.5rem
}

.countdown-grid {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1rem
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

.countdown-value {
    background: #fff;
    color: var(--bni-red);
    width: clamp(4rem,10vw,6rem);
    height: clamp(4rem,10vw,6rem);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem,3vw,2.5rem);
    font-weight: 700;
    margin-bottom: .5rem;
    box-shadow: 0 4px 6px #0000001a
}

.cta-section {
    padding: 10rem 1.5rem;
    background: #f3f4f6;
    text-align: center
}

.cta-section h2 {
    font-size: clamp(1.5rem,3vw,2.25rem);
    margin-bottom: 2rem
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    background: var(--bni-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 9999px;
    transition: all .3s;
    box-shadow: 0 4px 6px #0000001a
}

.cta-button:hover {
    transform: scale(1.05);
    background: #9b1c1c
}

footer {
    padding: 1.5rem;
    background: #111827;
    color: #9ca3af;
    text-align: center;
    font-size: .875rem
}

@media (max-width: 640px) {
    .countdown-grid {
        flex-wrap:wrap
    }

    .countdown-item {
        flex: 1 1 40%
    }
}
