/* ==========================================================================
   OH WOW! Footer Block — Scroll-driven animation
   ========================================================================== */

.ohwow-footer-block {
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
    transition: background-color 0.05s linear;
    /* Force full viewport width regardless of parent container */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: -40px; /* Kill any gap at bottom */
}

/* Giant brand text */
.ohwow-footer-block__brand {
    font-family: var(--ohwow-font-display);
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
    line-height: 0.9;
    transition: color 0.05s linear;
    will-change: font-size;
    /* Start massive — JS controls font-size */
    font-size: 28vw;
    padding: 40px 0;
}

/* Bottom section */
.ohwow-footer-block__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 24px 0;
    transition: color 0.05s linear;
}

/* Pills row */
.ohwow-footer-block__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ohwow-footer-block__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid currentColor;
    border-radius: 40px;
    font-family: var(--ohwow-font-body);
    font-size: 0.85rem;
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease, border-color 0.05s linear;
    white-space: nowrap;
}

.ohwow-footer-block__pill:hover {
    opacity: 1;
}

.ohwow-footer-block__pill--icon {
    padding: 10px;
    width: 42px;
    height: 42px;
}

.ohwow-footer-block__pill--icon svg {
    width: 18px;
    height: 18px;
}

/* Legal row */
.ohwow-footer-block__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Copyright */
.ohwow-footer-block__copy {
    font-family: var(--ohwow-font-body);
    font-size: 0.8rem;
    opacity: 0.5;
    text-align: center;
    margin: 16px 0 0;
}

/* Responsive */
@media (max-width: 767px) {
    .ohwow-footer-block__brand {
        font-size: 18vw;
    }

    .ohwow-footer-block__pills {
        gap: 8px;
    }

    .ohwow-footer-block__pill {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}
