/* 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 1rem;
    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__intro {
    margin: 0 0 1.75rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.65;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.82);
}

.urban-index-events {
    padding: 2.5rem 1.25rem 3rem;
    background: #1a1a1a;
}

.urban-index-events__title {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.urban-index-events__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.urban-index-events__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.urban-index-events__card {
    overflow: hidden;
    border-radius: 8px;
    background: #242526;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.urban-index-events__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.urban-index-events__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.urban-index-events__body {
    padding: 1rem 1rem 1.15rem;
}

.urban-index-events__name {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.urban-index-events__artists {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.urban-index-events__date {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ef4536;
}

.urban-index-events__more {
    margin: 1.75rem 0 0;
    text-align: center;
}

.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;
    }
}
