/* URBAN — Index (welcome / landing) */

.urban-index-page {
    --urban-accent: #ef4536;
    --urban-accent-dark: #88000c;
}

.urban-index-page footer.urban-footer {
    margin-top: 0;
}

.urban-index {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.urban-index-hero {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
}

.urban-index-hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.urban-index-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    opacity: 0;
    animation: urbanIndexFadeIn 0.75s ease forwards;
}

.urban-index-hero__title {
    margin: 0 0 0.65rem;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.urban-index-hero__slogan {
    margin: 0 0 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.urban-index-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
}

.urban-index-hero__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 11rem;
    min-height: 2.85rem;
    margin-top: 0;
}

.urban-index-hero__actions .btn i {
    font-size: 1.15rem;
    line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
    .urban-index-hero__actions .btn {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .urban-index-hero__actions .btn:hover,
    .urban-index-hero__actions .btn:focus-visible {
        transform: translateY(-2px);
    }
}

@keyframes urbanIndexFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .urban-index-hero__content {
        padding: 1.5rem 1rem;
    }

    .urban-index-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .urban-index-hero__actions .btn {
        width: 100%;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .urban-index-hero__content,
    .urban-index-hero__actions .btn {
        animation: none;
        opacity: 1;
        transition: none;
    }
}
