/* ── Page load animation ─────────────────────────────────────── */
@keyframes heroSlideIn {
    from { transform: translateX(80px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ── Hero Block ──────────────────────────────────────────────── */
.amoun-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ── Ken Burns keyframes ─────────────────────────────────────── */
@keyframes kenBurns {
    0%   { transform: scale(1)    translate(0,    0);    }
    100% { transform: scale(1.08) translate(-1.5%, 1%); }
}

/* ── Background slides (full width) ─────────────────────────── */
.amoun-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
}

/* transition only after JS marks hero as ready (after first slide shown) */
.amoun-hero--ready .amoun-hero__slide {
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amoun-hero__slide.is-active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out forwards;
}

/* ── Content ─────────────────────────────────────────────────── */
.amoun-hero__content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 80px 60px;
    color: #fff;
    animation: heroSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Label ───────────────────────────────────────────────────── */
.amoun-hero__label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* ── Heading ─────────────────────────────────────────────────── */
.amoun-hero__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* ── Subtext ─────────────────────────────────────────────────── */
.amoun-hero__subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 420px;
    margin-bottom: 40px;
}

/* ── Button ──────────────────────────────────────────────────── */
.amoun-hero__btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}

.amoun-hero__btn:hover {
    background: #fff;
    color: #111;
}

/* ── Progress bar ────────────────────────────────────────────── */
.amoun-hero__progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    z-index: 10;
}

.amoun-hero__progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width linear;
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .amoun-hero {
        justify-content: center;
        min-height: 100svh;
    }

    .amoun-hero__overlay {
        width: 100%;
    }

    .amoun-hero__content {
        width: 100%;
        padding: 60px 32px;
    }

    .amoun-hero__dots {
        left: 50%;
    }
}

@media (max-width: 480px) {
    .amoun-hero__content {
        padding: 48px 24px;
    }
}
