/* ============================================
   10 Y PICO Torrellano - Landing simplificada
   ============================================ */

:root {
    --color-orange: #E8711A;
    --color-orange-dark: #C65D12;
    --color-blue: #0D2137;
    --color-white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: var(--font-body);
    color: var(--color-white);
    background: var(--color-blue);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.hero {
    min-height: calc(100svh - 76px);
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(32px, 6vw, 72px) 20px;
    overflow: hidden;
    text-align: center;
    background: url('../img/running_header.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 33, 55, 0.44), rgba(13, 33, 55, 0.78)),
        rgba(13, 33, 55, 0.24);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: clamp(210px, 34vw, 380px);
    margin-bottom: clamp(20px, 4vw, 36px);
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.36));
}

.event-kicker,
.event-date,
.event-time {
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-wrap: balance;
}

.event-kicker {
    margin-bottom: 10px;
    color: #F8B36F;
    font-size: clamp(0.88rem, 2vw, 1.08rem);
    font-weight: 800;
    letter-spacing: 2px;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 10vw, 6.8rem);
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.event-date {
    margin-top: clamp(18px, 3vw, 28px);
    font-size: clamp(1.08rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.7px;
}

.event-time {
    margin-top: 4px;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 900;
    color: #F8B36F;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-top: clamp(24px, 4vw, 36px);
    padding: 0 40px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 12px 30px rgba(232, 113, 26, 0.38);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(232, 113, 26, 0.46);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--color-white);
    outline-offset: 4px;
}

.footer {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    text-align: center;
    background: var(--color-blue);
}

.footer a {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
    color: #F8B36F;
}

.footer a:focus-visible {
    outline: 2px solid #F8B36F;
    outline-offset: 5px;
}

@media (max-width: 520px) {
    .hero {
        min-height: calc(100svh - 68px);
        padding-inline: 18px;
    }

    .hero-logo {
        width: min(70vw, 270px);
    }

    .btn {
        width: min(100%, 310px);
    }

    .footer {
        min-height: 68px;
    }
}
