/* =========================================================
   HOCKENHEIM-FM
   EVENTS
   Öffentlicher Eventkalender
   ========================================================= */


/* EVENTSEITE HERO */

.event-page-hero {
    position: relative;
    overflow: hidden;

    padding: 78px 0 72px;

    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(255, 91, 0, 0.13),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #080808,
            #050505
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.event-page-hero::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: min(1180px, calc(100% - 40px));
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.42),
            transparent
        );
}

.event-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 70px;
}

.event-page-intro {
    max-width: 700px;

    margin-top: 23px;

    color: #a2a2a2;

    font-size: 17px;
    line-height: 1.75;
}

.event-page-badge {
    width: 190px;
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 106, 0, 0.23);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 106, 0, 0.13),
            transparent 58%
        ),
        rgba(255, 255, 255, 0.02);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.event-page-badge span {
    color: #ff6a00;

    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.event-page-badge strong {
    margin-top: 12px;

    color: #f0f0f0;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.event-page-badge small {
    margin-top: 7px;

    color: #777;

    font-size: 11px;
}


/* EVENTSEITE BROWSER */

.event-browser-section {
    padding: 78px 0 90px;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(255, 95, 0, 0.055),
            transparent 27%
        ),
        #080808;
}

.event-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 34px;
}

.event-toolbar-copy {
    flex: 1;
}

.event-filter-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 8px;
}

.event-filter-button {
    appearance: none;

    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.025);

    color: #888;

    font-size: 11px;
    font-weight: 750;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.event-filter-button:hover {
    color: #fff;

    border-color: rgba(255, 106, 0, 0.25);

    transform: translateY(-1px);
}

.event-filter-button.active {
    color: #fff;

    border-color: rgba(255, 106, 0, 0.35);

    background:
        linear-gradient(
            135deg,
            rgba(255, 126, 32, 0.22),
            rgba(210, 65, 0, 0.15)
        );
}


/* EVENTLISTE */

.event-list {
    display: grid;
    gap: 13px;
}

.event-list-card {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: stretch;

    min-height: 168px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.043),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.event-list-card::after {
    content: "";

    position: absolute;
    right: -65px;
    bottom: -75px;

    width: 155px;
    height: 155px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 91, 0, 0.07) 0%,
            rgba(255, 91, 0, 0.025) 44%,
            transparent 72%
        );

    pointer-events: none;
}

.event-list-card:hover {
    transform: translateY(-3px);

    border-color: rgba(255, 106, 0, 0.28);

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.event-list-date {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255, 255, 255, 0.065);

    background:
        linear-gradient(
            180deg,
            rgba(255, 106, 0, 0.11),
            rgba(255, 106, 0, 0.018)
        );
}

.event-list-day {
    color: #fff;

    font-size: 42px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
}

.event-list-month {
    margin-top: 8px;

    color: #ff7720;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.event-list-year {
    margin-top: 2px;

    color: #555;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.event-list-content {
    position: relative;
    z-index: 2;

    padding: 25px 28px;
}

.event-list-meta {
    margin-bottom: 7px;

    color: #777;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.event-list-content h3 {
    color: #f1f1f1;

    font-size: 22px;
}

.event-list-content p {
    max-width: 690px;

    margin-top: 10px;

    color: #8f8f8f;

    font-size: 13px;
    line-height: 1.65;
}

.event-list-details {
    display: flex;
    flex-wrap: wrap;

    gap: 17px;

    margin-top: 16px;
}

.event-list-details span {
    position: relative;

    color: #6f6f6f;

    font-size: 10px;
    font-weight: 750;
}

.event-list-details span:not(:last-child)::after {
    content: "·";

    position: absolute;
    right: -11px;

    color: #3e3e3e;
}

.event-list-action {
    position: relative;
    z-index: 2;

    min-width: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border-left: 1px solid rgba(255, 255, 255, 0.055);
}

.event-list-action a {
    padding: 10px 14px;

    border: 1px solid rgba(255, 106, 0, 0.19);
    border-radius: 7px;

    background: rgba(255, 106, 0, 0.045);

    color: #ff7420;

    font-size: 11px;
    font-weight: 850;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.event-list-action a:hover {
    color: #fff;

    border-color: rgba(255, 106, 0, 0.4);

    background: rgba(255, 106, 0, 0.11);
}


/* EVENT EINREICHEN */

.event-submit-section {
    padding: 0 0 88px;

    background: #080808;
}

.event-submit-box {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 55px;

    padding: 38px 42px;

    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 88% 50%,
            rgba(255, 94, 0, 0.095),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.012)
        );
}

.event-submit-box h2 {
    font-size: clamp(28px, 3vw, 38px);
}

.event-submit-box p:not(.eyebrow) {
    max-width: 680px;

    margin-top: 12px;

    color: #909090;

    font-size: 14px;
}

.event-submit-action {
    flex: 0 0 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 8px;
}

.event-submit-action a {
    padding: 12px 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ff8526,
            #d94600
        );

    color: #fff;

    font-size: 13px;
    font-weight: 850;

    box-shadow:
        0 10px 28px rgba(255, 83, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.event-submit-action a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 34px rgba(255, 83, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.event-submit-action span {
    color: #666;

    font-size: 10px;
}


/* HFM VOR ORT */

.event-hfm-section {
    padding: 82px 0 88px;

    background:
        radial-gradient(
            circle at 17% 45%,
            rgba(255, 91, 0, 0.06),
            transparent 28%
        ),
        #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-hfm-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: start;

    gap: 80px;
}

.event-hfm-copy {
    padding-top: 7px;

    color: #9d9d9d;

    font-size: 15px;
    line-height: 1.75;
}

.event-hfm-copy p + p {
    margin-top: 17px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .event-page-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .event-page-badge {
        width: 100%;
        min-height: 120px;

        flex-direction: row;
        justify-content: flex-start;

        gap: 16px;

        padding: 24px;
    }

    .event-page-badge span {
        font-size: 29px;
    }

    .event-page-badge strong,
    .event-page-badge small {
        margin-top: 0;
    }

    .event-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-filter-row {
        justify-content: flex-start;
    }

    .event-list-card {
        grid-template-columns: 105px 1fr;
    }

    .event-list-action {
        grid-column: 2;

        min-width: 0;

        justify-content: flex-start;

        padding: 0 28px 24px;

        border-left: 0;
    }

    .event-submit-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-submit-action {
        align-items: flex-start;
    }

    .event-hfm-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }
}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 650px) {

    .event-page-hero {
        padding: 50px 0 46px;
    }

    .event-page-intro {
        font-size: 15px;
    }

    .event-page-badge {
        min-height: auto;

        align-items: flex-start;
        flex-direction: column;

        gap: 4px;

        padding: 20px;
    }

    .event-page-badge strong {
        margin-top: 5px;
    }

    .event-browser-section {
        padding: 52px 0 65px;
    }

    .event-toolbar {
        margin-bottom: 26px;
    }

    .event-filter-row {
        gap: 6px;
    }

    .event-filter-button {
        padding: 8px 11px;

        font-size: 10px;
    }

    .event-list-card {
        grid-template-columns: 75px 1fr;

        min-height: 0;
    }

    .event-list-day {
        font-size: 31px;
    }

    .event-list-content {
        padding: 21px 17px;
    }

    .event-list-content h3 {
        font-size: 19px;
    }

    .event-list-content p {
        font-size: 12px;
    }

    .event-list-details {
        gap: 12px;
    }

    .event-list-details span {
        font-size: 9px;
    }

    .event-list-details span:not(:last-child)::after {
        right: -8px;
    }

    .event-list-action {
        grid-column: 2;

        padding: 0 17px 20px;
    }

    .event-submit-section {
        padding-bottom: 60px;
    }

    .event-submit-box {
        padding: 27px 22px;

        gap: 26px;
    }

    .event-submit-box h2 {
        font-size: 29px;
    }

    .event-hfm-section {
        padding: 58px 0 62px;
    }
}