@charset "UTF-8";
/*!
Theme Name: Projectarbeit-2
Author: Matthias Papst
Description: Template Project 2
Tags: Projectarbeit 2
Version: 1.0.0
*/
:root {
    --shadow: #00000040;
    --overlay-color: 255, 111, 97;
    --overlay-alpha: 0.9;
    --primary-font: "JosefinSans", Arial;
    --secondary-font: "Lumanosimo", Arial;
    --tertiaery-font: "Poppins", Arial;
    --nav-mobil-height: 70px;
    --nav-side-width: 350px;
    --content-width-mobil: 91%;
    --content-width: 1400px
}

*, *::before, *::after {
    box-sizing: border-box
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    line-height: 1.33rem
}

body {

    --background-color-navbar: #FAFAFA;
    --primary-color-navbar: #FFAD9F;
    --secondary-color-navbar: #F2F2F2;
    --accent-color-navbar: #FF6F61;
    --border-color-navbar: #EEEEEE;
    --focusoutline-color-navbar: #80AAB9;
    --tertiär-color-navbar: #FFAD9F;

    --background-color: #FAFAFA;
    --primary-color: #302C26;
    --secondary-color: #F2F2F2;
    --accent-color: #FF6F61;
    --border-color: #EEEEEE;
    --focusoutline-color: #80AAB9;
    --wpforms-button-background-color-alt: #FF6F61;

    overflow-x: hidden;
    margin: 0;
    padding-top: var(--nav-mobil-height);
    background-color: var(--background-color);
    font-family: var(--primary-font);
    color: var(--primary-color);
    @media screen and (min-width: 900px) {
        padding-top: 0;
        padding-left: var(--nav-side-width) !important
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 600;
    margin: 0 auto 1rem
}

h1, .is-like-h1 {
    font-size: 2.5em;
    line-height: 1
}

h2, .is-like-h2 {
    font-size: 2.2em;
    line-height: 1
}

h3, .is-like-h3 {
    font-size: 1.8em;
    line-height: 1.1
}

h4, .is-like-h4 {
    font-size: 1.2em;
    line-height: 1.16
}

h5, .is-like-h5 {
    font-size: 1em;
    line-height: 1.33
}

h6, .is-like-h6 {
    font-size: .9em;
    line-height: 1.5
}

.is-style-title, .title {
    font-family: var(--secondary-font);
    font-size: 1.2em;
    color: var(--accent-color);
    margin: 0 0 5px 0;
    line-height: 1.16;
    font-weight: 300
}

a {
    color: var(--primary-color);
    font-family: var(--primary-font);

    &:hover, :active {
        color: var(--accent-color)
    }

    &:active {
        text-decoration: none
    }
}

.a-link {
    font-family: var(--secondary-font);
    color: var(--accent-color);
    text-decoration: none;

    &:hover, :active {
        color: var(--background-color)
    }

    &:active {
        text-decoration: underline
    }
}

.is-style-headline {
    position: relative;

    &::after, &::before {
        content: "";
        position: absolute;
        display: block;
        height: 2px;
        width: 210px;
        background-color: var(--accent-color)
    }

    &::before {
        width: 210px;
        bottom: -5px
    }

    &:after {
        width: 180px;
        bottom: -10px
    }
}


.underline2 {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        display: block;
        height: 1px;
        width: 98%;
        background-color: var(--border-color);
        bottom: -16px;
        left: 1%
    }
}

.container {
    width: var(--content-width-mobil);
    margin: 0 auto;
    max-width: var(--content-width)
}

img:not([src$="scg"]) {
    max-width: 100%;
    height: auto;
    vertical-align: bottom
}

[type="sumbit"], #wpforms-submit-440, #wpforms-submit-530, .btn, .wp-block-button.is-style-fill .wp-block-button__link, .is-style-primary .wp-block-button__link {
    padding: 10px 28px;
    background-color: var(--accent-color);
    color: var(--background-color);
    font-family: var(--primary-font);
    font-size: 17px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 300ms linear, border-color 300ms;
    border: 2px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 30px;
    white-space: nowrap;

    &:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--background-color)
    }

    &:focus {
        border-color: var(--focusoutline-color)
    }

    &:active {
        border-color: var(--accent-color)
    }
}

.flex-reverse {
    @media screen and (max-width: 781px) {
        display: flex;
        flex-direction: column-reverse
    }
}

#to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease-in-out, transform 150ms ease-in;

    &.show {
        opacity: 1;
        pointer-events: all
    }

    &:hover {
        transform: translateY(-10%)
    }
}

.margin-top {
    margin-top: 140px;
    @media screen and (max-width: 768px) {
        margin-top: 70px;
    }
}

.margin-bottom {
    margin-bottom: 75px
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 18px;
    padding-right: 8px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-mobil-height);
    background-color: var(--primary-color-navbar);
    z-index: 9999;
    @media screen and (min-width: 900px) {
        right: auto;
        bottom: 0;
        height: auto;
        display: block;
        padding: 0;
        width: var(--nav-side-width);
        box-shadow: 0 4px 2px 2px var(--shadow)
    }

    #brand {
        @media screen and (min-width: 900px) {
            padding: 80px 23px 0 23px;
        }

        img {
            height: 40px;
            width: auto;

            @media screen and (min-width: 900px) {
                height: 60px;
                width: auto;
            }
        }
    }

    #nav-toggle {
        display: none;

        &:checked {
            ~ #menu-button {
                #menu-button-icon {
                    background-color: #fff0;

                    &::before, &::after {
                        width: 40px
                    }

                    &::before {
                        transform: rotate(45deg)
                    }

                    &::after {
                        transform: rotate(-45deg)
                    }
                }
            }

            ~ #main-menu-footer {
                transform: translate(0)
            }

            ~ footer {
                transform: translate(0)
            }
        }
    }

    #menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 43px;
        width: 58px;
        @media screen and (min-width: 900px) {
            display: none
        }

        #menu-button-icon {
            position: relative;
            transition: background-color 300ms linear;
            width: 45px;

            &::before, &::after {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                transition: transform 300ms linear;
                width: 45px
            }

            &:before {
                transform: translateY(12px)
            }

            &:after {
                transform: translateY(-12px)
            }
        }

        #menu-button-icon, #menu-button-icon::before, #menu-button-icon::after {
            height: 4px;
            background-color: var(--accent-color-navbar);
            border-radius: 45px
        }

        #menu-button-icon {
            height: 2px
        }
    }

    #main-menu-footer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: var(--nav-mobil-height);
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: var(--nav-side-width);
        background-color: var(--tertiär-color-navbar);
        overflow-y: auto;
        transform: translateX(-101%);
        transition: transform 200ms linear;
        box-shadow: 0 4px 2px 2px var(--shadow);
        @media screen and (min-width: 900px) {
            position: static;
            background-color: #fff0;
            transform: translateX(0);
            overflow: visible;
            box-shadow: none;
            padding-top: 0;
            height: calc(100vh - 120px)
        }

        .main-menu {
            list-style-type: none;
            margin: 0;
            padding: 1.5em 0;
            @media screen and (min-width: 900px) {
                padding-top: 80px
            }

            a {
                color: var(--background-color-navbar);
                text-decoration: none;
                display: block;
                padding: 0 .5rem 0 1.5rem;
                transition: color 300ms linear;

                &:hover {
                    color: var(--accent-color-navbar)
                }
            }

            .current-menu-item {
                > a {
                    color: var(--accent-color-navbar)
                }
            }

            > li {
                padding: 5px 0;
                margin-bottom: 25px;

                &:hover {
                    box-shadow: inset 5px 0 0 0 var(--accent-color-navbar)
                }

                @media screen and (min-width: 900px) {
                    position: relative
                }

                > a {
                    font-size: 45px;
                    font-weight: 600;
                    text-transform: uppercase;
                    line-height: 2.5rem;
                    @media screen and (min-width: 900px) {
                        font-size: 32px;
                        line-height: 2rem
                    }
                }
            }

            li {
                &:hover {
                    > .sub-menu {
                        opacity: 1;
                        pointer-events: all;
                        height: 139px;
                        padding-top: 10px
                    }
                }
            }

            .sub-menu {
                padding-left: 0;
                list-style-type: none;
                overflow: hidden;
                height: 0;
                transition: height 300ms linear;
                @media screen and (min-width: 900px) {
                    position: absolute;
                    left: 100%;
                    top: 0;
                    background-color: var(--accent-color-navbar);
                    width: 170px;
                    opacity: 0;
                    transition: opacity 200ms linear;
                    pointer-events: none;
                    padding: 1em 0;
                    box-shadow: 2px 2px 4px 0 var(--shadow)
                }

                a {
                    font-size: 22px;
                    line-height: 2.5rem;
                    font-weight: 600;
                    @media screen and (min-width: 900px) {
                        line-height: 2.3rem;&:hover {
                        color: var(--primary-color)
                    }
                    }
                }
            }

            .current_page_parent {
                box-shadow: inset 5px 0 0 0 var(--accent-color);

                .sub-menu {
                    position: relative;
                    left: 0;
                    opacity: 1;
                    height: 139px;
                    padding-top: 10px;
                    background-color: #fff0;
                    box-shadow: none;

                    a {
                        @media screen and (min-width: 900px) {
                            &:hover {
                                color: var(--accent-color)
                            }
                        }
                    }
                }
            }
        }

        .social-legal {
            padding: 0 .5rem 0 1.5rem;

            a {
                color: var(--background-color);
                text-decoration: none
            }

            p {
                font-family: var(--primary-font);
                font-weight: 600;
                color: var(--background-color);

                :hover {
                    color: var(--accent-color)
                }
            }

            .icons {
                display: flex;
                gap: 13px;
                margin: 30px 0 100px 0;
                font-size: 2.2rem;

                :hover {
                    color: var(--accent-color)
                }
            }

            .link-container {
                margin: 0;
                padding: 0;
                display: flex;
                gap: 27px;

                li {
                    margin: 0;
                    padding-bottom: 10%;

                    a {
                        color: var(--background-color);
                        font-family: var(--tertiaery-font);

                        &:hover {
                            color: var(--accent-color)
                        }
                    }
                }
            }
        }
    }
}

.hero {
    height: calc(100vh - var(--nav-mobil-height));
    @media screen and (min-width: 900px) {
        height: 100vh
    }

    .hero-container {
        padding-top: 12%;
        @media screen and (min-width: 900px) {
            padding-top: 180px
        }

        .text-container {
            max-width: 651px;

            h1 {
                color: var(--background-color);
                margin-bottom: 40px
            }
        }
    }
}

.contact-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 80px 0 80px 0;
    @media screen and (min-width: 768px) {
        display: flex;
        flex-direction: row
    }
}

.go_down {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0
}

.projects-grid {
    margin-top: 2em;
    display: grid;
    grid-template-columns:repeat(1, 1fr);
    gap: 15px;
    @media screen and (min-width: 768px) {
        grid-template-columns:repeat(2, 1fr)
    }
    @media screen and (min-width: 1450px) {
        grid-template-columns:repeat(3, 1fr);
        gap: 30px
    }
}

.rezepte-beitrag {
    position: relative;
    margin: 0;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    &:hover {
        box-shadow: 0 4px 8px 0 var(--accent-color);

        img {
            filter: contrast(.8)
        }
    }
}

.rezepte-caption {
    content: "";
    position: absolute;
    background-color: rgba(var(--overlay-color), var(--overlay-alpha));
    min-height: 100px;
    bottom: 0;
    width: 100%;
    color: var(--primary-color-navbar);


    .icon-text {
        color: var(--background-color);
    }


    p {
        margin-top: 12px;
        font-weight: 700;
    }

    .icon-category {
        display: flex;
        gap: 7px;
        color: var(--primary-color-navbar);

        .post-categories {
            margin-top: 12px;
            margin-bottom: 16px
        }
    }

    .underline2 {
        color: var(--background-color);
        margin-bottom: 32px
    }
}

footer {
    background-color: var(--secondary-color);
    padding: 100px 0;

    .footer-wrapper {
        max-width: 651px;
        text-align: center
    }
}

.beitraglisten li {
    transform: translateX(-20px)
}

.rezepte-caption {
    padding: 0 12px
}

.icon-text {
    display: flex;
    gap: 10px;
    color: var(--primary-color);
    list-style: none;
    margin-top: 12px;
    margin-bottom: 16px;

    > a {
        font-family: var(--secondary-font);
        font-size: 1.2em;
        color: var(--primary-color);
        margin: 0 0 5px 0;
        text-decoration: none
    }

    .post-categories {
        list-style: none;
        margin: 0;
        padding: 0
    }
}

.pagination {
    margin-top: 70px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
    @media screen and (min-width: 900px) {
        margin: 10px 0 83px 0
    }

    > * {
        display: inline-block;
        min-width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        margin: 10px
    }

    a {
        text-decoration: none;
        color: var(--accent-color)
    }

    .current {
        color: var(--primary-color)
    }

    .page-numbers:not(.prev):not(.next) {
        &:hover {
            background-color: var(--border-color);
            border-radius: 5px
        }
    }
}

.prev-button, .next-button, .next, .prev {
    background-color: var(--border-color);
    padding: 5px;
    border-radius: 5px;
    color: var(--accent-color);
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;

    &:hover {
        background-color: var(--primary-color)
    }

    &:focus {
        border: 2px solid var(--focusoutline-color)
    }

    &:active {
        background-color: var(--primary-color);
        color: var(--border-color) !important
    }
}

.icon-arrow-right2 {
    padding-top: 3px
}

.sticky-post {
    @media screen and (min-width: 782px) {
        position: sticky;
        top: 50px
    }

    figure {
        margin-bottom: 6px
    }
}

.post-tags {
    padding-left: 12px;

    .taxonomy-category, .taxonomy-post_tag {
        a {
            font-family: var(--secondary-font);
            text-decoration: none;
            line-height: 1.6em;
            padding: 0 5px;
            text-wrap: wrap
        }
    }

    .taxonomy-post_tag {
        .wp-block-post-terms__prefix {
        }
    }
}

.fehlerseite-container {
    .background {
        background-image: url(assets/img/rauch-1.png);
        background-size: cover;
        height: 100vh
    }

    .fehlerseite-wrapper {
        position: relative;
        padding-top: 80px;
        @media screen and (min-width: 768px) {
            padding-top: 140px
        }

        .fehlerseite-text1 {
            font-size: clamp(1.5rem, 10vw, 3rem);
            line-height: clamp(1.5rem, 10vw, 3rem);
            text-align: center
        }

        .fehlerseite-text2 {
            font-size: clamp(4rem, 10vw, 10rem);
            line-height: clamp(4rem, 10vw, 10rem);
            font-weight: 700;
            text-align: center;
            margin: 5rem 0
        }

        .fehlerseite-text2 {
            font-size: clamp(4rem, 10vw, 10rem);
            line-height: clamp(4rem, 10vw, 10rem);
            font-weight: 700;
            text-align: center;
            margin: 5rem 0
        }

        .fehlerseite-btn {
            position: absolute;
            left: 0;
            right: 0;
            font-size: 2rem;
            line-height: 2rem;
            text-wrap: wrap;
            text-align: center;
            border-radius: 0
        }
    }
}

.halfside {
    width: 700px
}

.newest-recipes {
    padding-top: 80px;

    button {
        &:hover {
            color: var(--accent-color)
        }
    }

    .recipe-title a {
        text-decoration: none;
        color: var(--background-color)
    }

    .recipe-class a {
        text-decoration: none;
        font-size: .9em;
        font-weight: 300
    }

    .splide__arrows {
        position: absolute;
        top: 40px;

        .splide__arrow {
            border-radius: 5px;
            width: 28px;
            height: 28px;
            left: 0;
            color: var(--accent-color)
        }

        .splide__arrow--next {
            left: 35px
        }
    }
}

.alignfull {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    @media screen and (min-width: 900px) {
        width: calc(100vw - var(--nav-side-width));
        margin-left: calc(-50vw + (var(--nav-side-width) / 2));
        margin-right: calc(-50vw + (var(--nav-side-width) / 2))
    }
}

.tribe-events-event-image {
    max-width: 400px;
}

.tribe-dialog__wrapper {
    @media screen and (min-width: 900px) {
        margin-left: var(--nav-side-width) !important;
    }
}

#menu-footer li {
    list-style-type: none;
}

.impressum {
    @media screen and (min-width: 1400px) {
        margin-right: 40%;
    }
    white-space: nowrap;
    font-size: clamp(0.6rem, 2vw, 0.9rem);

    p {
        margin: 0;
    }
}


.grid-item figure {
    width: 100%;
    aspect-ratio: 1/1; /* Quadrat */
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.google-maps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    padding: 20px;
}

.google-maps iframe {
    width: 100%;
    height: 100px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.past-events-slider {
    padding: 20px;
    text-align: center;

    .event-date {
        font-size: 0.9rem;
        color: #666;
    }
}

.past-events-slider h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.slider-item {
    display: block;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.slider-item img {
    width: 60%;
    aspect-ratio: 1 / 1; /* immer quadratisch */
    object-fit: cover; /* Bild füllt Container ohne Verzerrung */
    border-radius: 8px;
    margin: 30px auto;
}

.event-title {
    font-weight: bold;
    margin: 10px 0 5px;
    font-size: 1.1rem;
}


.slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px 0 var(--accent-color);
}

/* Einzelner Post zentrieren */
.single-past-event {
    display: flex;
    justify-content: center;
}

.single-past-event .slider-item {
    max-width: 300px;
}

/* Splide Slide Styling */
.splide__slide {
    display: flex;
    justify-content: center;
}

.splide__slide .slider-item {
    max-width: 300px;
}

/* Responsive */
@media (max-width: 1024px) {
    .splide__slide .slider-item {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .splide__slide .slider-item {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .splide__slide .slider-item,
    .single-past-event .slider-item {
        max-width: 90%;
    }
}

.workshop-text {
    margin-bottom: 50px;

    p {
        text-align: center;
        font-size: 1.2em;

        @media screen and (min-width: 1300px) {
            line-height: 0.7;

        }
    }
}

.is-style-headline-2 {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.is-style-headline-2::before,
.is-style-headline-2::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
}

.is-style-headline-2::before {
    width: 210px;
    bottom: -5px;
}

.is-style-headline-2::after {
    width: 180px;
    bottom: -10px;
}


/ /* Container für alle Kategorie-Links */
.event-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* Abstand zwischen den Links */
}

/* Jeder Link als flex-container */
.category-link {
    display: flex; /* Flexbox für Quadrat + Text */
    align-items: center; /* vertikal zentrieren */
    gap: 8px; /* Abstand Quadrat ↔ Text */
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 4px 8px; /* etwas Abstand rund um den Text */
    background-color: #f5f5f5; /* optional: helles Rechteck hinter Text+Quadrat */
    border-radius: 4px; /* abgerundetes Badge */
}

/* Quadrat vor jedem Link */
.category-link::before {
    content: "";
    width: 14px; /* etwas größer für klarere Abgrenzung */
    height: 14px;
    border-radius: 2px;
    display: inline-block;
}

/* Farben pro Kategorie */
.category-all::before {
    background-color: gray;
}

.category-special-event::before {
    background-color: #e6cb4b;
}

.category-art::before {
    background-color: #FFAD9F;
}

.category-pokemon::before {
    background-color: red;
}

.category-magic::before {
    background-color: purple;
}

.category-yu::before {
    background-color: blue;
}


/*
.event-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    .category-link {
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        color: #000;
        font-weight: 500;
    }

    .category-link::before {
        content: "";
        width: 12px;
        height: 12px;
        border-radius: 2px;
        display: inline-block;
    }

    .category-all::before      { background-color: gray; }
    .category-art::before      { background-color: #FFAD9F; }
    .category-pokemon::before  { background-color: red; }
    .category-magic::before    { background-color: purple; }
    .category-yu::before       { background-color: blue; }

}

*/

.tribe-events-calendar-list .tec-events-calendar-list__event-categories .tec-events-calendar-list__category {
    font-family: var(--tertiaery-font);
}

.tribe-events .tribe-events-calendar-month__calendar-event .tribe-events-calendar-month__calendar-event-title, .tribe-events .tribe-events-calendar-month__calendar-event .tribe-events-calendar-month__calendar-event-title .tribe-events-calendar-month__calendar-event-title-link {
    font-family: var(--tertiaery-font);
}

}
.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
    background-color: var(--primary-color-navbar);
}


.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
    background: var(--primary-color-navbar);
    color: black;
}


.tribe-events .tribe-events-calendar-month__day-cell--selected, .tribe-events .tribe-events-calendar-month__day-cell--selected:focus, .tribe-events .tribe-events-calendar-month__day-cell--selected:hover {
    background-color: var(--primary-color-navbar);
}

.tribe-common-c-btn-border .tribe-events-c-subscribe-dropdown__button {
    background-color: var(--primary-color-navbar);
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
    border: 1px solid var(--primary-color-navbar);
    color: black;

    &:hover {
        background-color: var(--primary-color-navbar);
    }
}

.tribe-events .tribe-events-calendar-month__mobile-events-icon--event {
    background-color: black;
}

button.month.focused.active {
    background: var(--accent-color) !important;
    color: black !important;
}

.tribe-events .datepicker .month.current:before {
    background: var(--primary-color-navbar) !important;
    color: black !important;
    border: none !important;;
    box-shadow: none !important;;
}

/* Hero Event Container */
.hero-event {
    position: absolute;
    bottom: 60px;
    text-align: center;
    width: auto;
    z-index: 10;
    left: 50%;

    @media screen and (max-width: 900px) {
        transform: translateX(-50%);
    }
}

/* Link im Hero Event */
.hero-event a {
    color: var(--background-color);
    text-decoration: none;
}

/* Titel über Countdown */
.hero-event .hero-event-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

/* Countdown Container */
.hero-event .hero-countdown {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Countdown Items */
.hero-event .tribe-events-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Countdown Zahlen */
.hero-event .tribe-events-countdown-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

/* Countdown Labels */
.hero-event .tribe-events-countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #777;
    margin-top: 4px;
}

/* Event läuft */
.hero-event .tribe-events-countdown-finished {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
}

/* Mobile Anpassung */
@media screen and (max-width: 900px) {
    .hero-event {
        bottom: 40