@font-face {
    font-family: "Nasalization";
    src: url("../../../../../assets/fonts/Nasalization_Rg.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.bwa-cercle-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: clamp(80px, 12vw, 128px) 24px 112px;
    background: #000;
    color: #f2f2f2;
}

.bwa-cercle-hero__media,
.bwa-cercle-hero__media img,
.bwa-cercle-hero__overlay {
    position: absolute;
    inset: 0;
}

.bwa-cercle-hero__media img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.bwa-cercle-hero__overlay {
    background: rgba(0, 0, 0, 0.72);
}

.bwa-cercle-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 900px);
    margin: 0 auto;
    text-align: center;
}

.bwa-cercle-hero__logo {
    width: auto;
    height: clamp(82px, 11vw, 144px) !important;
    margin: 0 auto clamp(30px, 4vw, 42px);
    object-fit: contain;
}

.bwa-cercle-hero__title {
    margin: 0 0 14px;
    color: #f2f2f2;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bwa-cercle-hero__subtitle,
.bwa-cercle-hero__baseline,
.bwa-cercle-hero__scroll span {
    font-family: "Nasalization", "Outfit", system-ui, sans-serif;
    text-transform: uppercase;
}

.bwa-cercle-hero__subtitle {
    margin: 0 0 10px;
    color: #d7ff00;
    font-size: clamp(12px, 1.5vw, 16px);
    letter-spacing: 0.18em;
}

.bwa-cercle-hero__baseline {
    margin: 0 0 clamp(32px, 4vw, 42px);
    color: #f2f2f2;
    font-size: 11px;
    letter-spacing: 0.18em;
}

.bwa-cercle-hero__countdown {
    display: flex;
    justify-content: center;
}

.bwa-cercle-hero__scroll {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 32px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #d7ff00;
    text-decoration: none;
    transform: translateX(-50%);
}

.bwa-cercle-hero__scroll span {
    font-size: 11px;
    letter-spacing: 0.28em;
}

.bwa-cercle-hero__scroll i {
    position: relative;
    width: 1px;
    height: 48px;
    overflow: hidden;
    background: rgba(215, 255, 0, 0.18);
}

.bwa-cercle-hero__scroll i::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 50%;
    background: linear-gradient(to bottom, rgba(215, 255, 0, 0), #d7ff00);
    animation: bwa-cercle-scroll 1.8s ease-in-out infinite;
}

@keyframes bwa-cercle-scroll {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(200%);
    }
}

@media (max-width: 640px) {
    .bwa-cercle-hero {
        min-height: 84vh;
        padding-inline: 18px;
    }
}
