﻿/* Rocket's Fight Home Hero Countdown */

#rf-countdown-hero {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55); /* overlay feel similar to a hero image */
    color: #fff;
    text-align: center;
    padding: 2.5em 2em;
}

    #rf-countdown-hero .rf-countdown-inner {
        max-width: 860px;
        margin: 0 auto;
    }

    #rf-countdown-hero h2 {
        font-family: "Roboto Slab", serif;
        font-weight: 700;
        font-size: 1.9em;
        letter-spacing: 0.04em;
        margin-bottom: 1.5em;
        text-transform: uppercase;
    }

#rf-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
}

    #rf-countdown-timer .rf-time-box {
        min-width: 90px;
    }

.rf-time-value {
    display: block;
    font-size: 2.4em;
    font-weight: 700;
    font-family: "Roboto Slab", serif;
}

.rf-time-label {
    display: block;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

.rf-countdown-announcement {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Responsive tweaks for existing breakpoints */
@media screen and (max-width: 980px) {
    #rf-countdown-hero {
        padding: 2em 1.5em;
    }

        #rf-countdown-hero h2 {
            font-size: 1.6em;
        }
}

@media screen and (max-width: 736px) {
    #rf-countdown-timer {
        gap: 1em;
    }

    .rf-time-value {
        font-size: 2em;
    }
}
