main #hero {
    padding-block: 15rem;
    min-height: 100dvh;

    display: grid;
    place-items: center;
    background-image: url(/maps/maps.webp);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
    isolation: isolate;
}

main #hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000000c5;
    z-index: -1;
}

main #hero h1 {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--accent-yellow);
    
    margin-bottom: 6.5rem;
}

main #hero ul {
    display: grid;
    gap: 6.5rem;
}
main #hero ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
main #hero ul li[data-even="false"] {
    flex-direction: row-reverse;
}

main #hero ul li .location {
    display: grid;
    gap: 2rem;
}
main #hero ul li .location p {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--accent-yellow);
    
    margin-bottom: 1rem;
}
main #hero ul li .location address,
main #hero ul li .location a {
    font-size: 2rem;
    font-style: normal;
    text-decoration: none;
    color: #fff;
}
main #hero ul li iframe {
    flex: 1;
    max-width: 76rem;
    aspect-ratio: 1.6 / 1;

    border: unset;
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}


/* Marquee stripe */

main .stripe-box {
    position: relative;
    isolation: isolate;
    z-index: 1;
}
main .stripe-box p.stripe {
    padding-block: 3rem;
    position: absolute;
    top: 50%; left: 0;
    width: 100%;
    translate: 0 -50%;
    rotate: 1.57deg;
    overflow: hidden;
    background-color: var(--accent-yellow);
}
main .stripe-box p.stripe .marquee__track {
    width: max-content;
    display: inline-flex;
    align-items: center;
    backface-visibility: hidden;
    will-change: transform;
    animation: marquee-track 25s linear infinite;
}
main .stripe-box p.stripe .marquee__track span {
    padding-right: 3rem;
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes marquee-track {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    main .stripe-box p.stripe .marquee__track {
        animation: none;
        transform: translate3d(0,0,0);
    }
}


/* Social media */

main #social {
    padding-block: 15rem;
    min-height: 100dvh;

    background-image: url(/reason.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
    isolation: isolate;
}
main #social::after {
    content: "";

    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 8rem;

    background: linear-gradient(to bottom, transparent, #0a0c0d);
    z-index: -1;
}

main #social ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
main #social ul li {
    flex: 1;
    max-width: 22rem;
    aspect-ratio: 1;
    display: grid;

    border: 2px solid var(--accent-yellow);
}
main #social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
}
main #social ul li svg {
    width: min(12.5rem, 95%);
    height: min(12.5rem, 95%);
    color: #fff;
    transition: color 0.25s;
}
main #social ul li a:is(:hover, :focus-visible) svg {
    color: var(--accent-yellow);
}

#requests::before {
    background-color: #000000e6 !important;
}


@media (max-width:1250px) {
    main #hero ul li {
        flex-direction: column;
    }
    main #hero ul li[data-even="false"] {
        flex-direction: column-reverse;
    }
    main #hero ul li .location {
        text-align: center;
        text-wrap: balance;
        place-items: center;
        gap: 1rem;
    }
}

@media (max-width:800px) {
    main #social ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
    }
    main #social ul li {
        max-width: unset;
        width: 100%;
    }
    main #social {
        min-height: unset;
    }
    main #social::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: #000000d1;
        z-index: -1;
    }
}