/* @media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
        types: slide;
    }
    ::view-transition-group(page-content) {
        animation-duration: 0.4s;
        animation-timing-function: ease-in-out;
    }
    .page-content {
        view-transition-name: page-content;
    }
    ::view-transition-old(page-content) {
        animation-name: slide-out;
    }

    ::view-transition-new(page-content) {
        animation-name: slide-in;
    }


    @keyframes slide-out {
        to {
            translate: -100vw;
        }
    }

    @keyframes slide-in {
        from {
            translate: 100vw;
        }
    }
} */

* {
    font-family: questrial, sans-serif;
    color: #373231;
    font-size: 1.1rem;
    max-width: 100%;
}

.nav-link {
    font-family: syne, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

.bg-light {
    background-color: #DCC8C5 !important;
}

nav, .dropdown-menu-light{
    background-color: #514B4A;
}

.container-fluid {
    padding: 0;
}

.nav-link {
    color: white;
    transition: color 0.4s ease
}

.nav-link:hover {
    color: #ee4e0d
}

.nav-link.activeCustom {
    color: #ee4e0d;
    font-weight: 700;
}

.nav-link:focus {
    color: #ee4e0d;
}

.vw-100 {
    width: 100vw;
}

.row.no-gutter-x {
    margin: 0;
}

a {
    color: #373231;
}

a:hover {
    color: #373231;
}

.amh {
    color: rgb(189, 62, 10);
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.amh-link {
    color: rgb(189, 62, 10);
    text-decoration: underline;
}

.amh-link:hover {
    color: rgb(189, 62, 10);
}

.col.card-container {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertikal */
    height: auto;
}

.card-img-top {
    max-height: 220px;
    object-fit:cover;
    object-position: 50% 20%;
}

.card {
    background-color: transparent;
    border: none;
}

.card-header {
    min-height: 180px;
    border: none;
    background-color: transparent;
}

.card.gradient {
    background: linear-gradient(
        to bottom,
        #baaac9 0%,
        #baaac9 20%,
        #dab997 80%,
        #dab997 100%
    );
    min-height: 840px;
}

.btn-secondary.amh-btn {
    background-color: #514B4A;
    color: white;
}

.btn-secondary.amh-btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(189, 62, 10);
}

.btn-primary.amh-btn {
    background-color: rgb(189, 62, 10);
    color: white;
    border: none;
}

.btn-primary.amh-btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(189, 62, 10);
}

.iti {
    width: 100%;
}

.iti--inline-country-selector .iti__country-container {
    width: min(24rem, 90vw);
}

.iti__country-list {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    background-color: #fff;
    text-align: left;
}

.iti__country {
    text-align: left;
}

.iti__search-container,
.iti__search-input {
    width: 100%;
    max-width: 100%;
}

#eventImage {
    max-height: 500px;
    object-fit: cover;
    object-position: 50% 25%; /* horizontal mittig, vertikal bei 80% (weiter unten) */
}

#footer {
    margin-top: auto;
}

.hover img{
    transition: transform 0.3s ease-in-out;
}

.hover img:hover {
    transform: scale(1.15);
    cursor: pointer;
}

.logoCustom {
    width: 200px;
    height: 60%;
}


::-webkit-scrollbar {
    display: block;
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: grey;
    /* border-radius: 10px; */
}

::-webkit-scrollbar-thumb:hover {
    background-color: darkgrey;
}

::-webkit-scrollbar-track {
    background: #DCC8C5;
}