/* visit-us */

.logo-header:hover{
    cursor: pointer;
}

.visit-us-at-content {
    height: calc(8*var(--height-s));
    max-height: calc(10*var(--content-height-unit));
    max-width: var(--max-content-width);
    width: max-content;
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.background-video-visit-us {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}


.visit-us-main-box {
    height: 90%;
    width: max-content;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: var(--spacing-m);
}

.visit-us-body {
    display: flex;
    max-width: var(--max-content-width);
    max-height: calc(4 * var(--content-height-unit));
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    border-radius: var(--round-border);
    height: 100%;
    border: 1px solid black;
    box-shadow: 5px 5px 8px rgba(12, 12, 12, 0.312);
    background-color: var(--neutral-background);
    padding: var(--spacing-xl);
}

.visit-us-adress {
    font-family: var(--secondary-font-style);
    font-size: var(--font-l);
    text-align: center;
}

.visit-us-website-and-telephone {
    font-family: var(--secondary-font-style);
    font-size: var(--font-m);
}

.visit-us-opening-hours {
    font-family: var(--secondary-font-style);
    font-size: var(--font-l);
    text-align: center;
}

.visit-us-form {
    height: 32%;
    width: 96%;
    display: flex;
    justify-content: space-between;
}

.visit-us-map-button {
    font-size: var(--font-l);
    font-family: var(--secondary-font-style);
    transition: all 300ms ease-in-out;
    color: black;
    margin-top: var(--spacing-m);
}

.visit-us-map-button:hover {
    color: var(--hover-rose);
    cursor: pointer;

}

.visit-form-data {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-m);
}

.form-data {
    width: 96%;
    background-color: black;
    border: none;
    color: white;
    font-family: var(--secondary-font-style);
    font-size: var(--font-s);
}

.form-data-input {
    padding: var(--spacing-xs);
    border: 1px solid white;
}

.form-data::placeholder {
    color: white;
    font-size: var(--font-m);
    font-family: var(--secondary-font-style);
}

.form-data:focus {
    outline: none;
}

.visit-form-message {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: var(--spacing-m);
}

#message-index {
    resize: none;
    width: 97%;
    height: 60%;
    max-height: calc(1*var(--content-height-unit));
    background-color: black;
    color: white;
    border: 1px solid white;
    font-family: var(--secondary-font-style);
    font-size: var(--font-s);
}

#message-index::placeholder {
    color: white;
    text-align: center;
    font-family: var(--secondary-font-style);
    font-size: var(--font-s);
}

#message-index:focus {
    outline: none;
}

.form-submit-button {
    font-family: var(--secondary-font-style);
    font-size: var(--font-m);
    border: 1px solid white;
    padding: var(--spacing-xs);
    background-color: var(--hover-rose);
    transition: all 300ms ease-in-out;
}

.form-submit-button:hover {
    cursor: pointer;
    color: black;
}

.submitted {
    font-family: var(--secondary-font-style);
    font-size: var(--font-m);
    color: green;
    display: none;
}

.footer-content {
    background-color: rgb(0, 0, 0);
    height: calc(2.5*var(--height-s));
    max-height: calc(1.5*var(--content-height-unit));
    max-width: var(--max-content-width);
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-content-inner-box {
    width: 96%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
}

.social-media-footer {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-m);
}

.social-media-footer-white-label {
    width: 20%;
    height: 100%;

}

.impressum {
    font-family: var(--secondary-font-style);
    font-size: var(--font-m);
    color: white;
    display: flex;
    gap: var(--spacing-m);
}

.im-content {
    transition: all 300ms ease-in-out;
}

.im-content:hover {
    cursor: pointer;
    text-decoration: underline;
}

.copyright {
    font-family: var(--secondary-font-style);
    font-size: var(--font-m);
    color: white;
}

.quiclinks-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-m);
    font-family: var(--title-font-style);

}

.quicklink {
    padding: calc(1.5*var(--spacing-s));
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: var(--gold-dark);
    border-radius: var(--round-border);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--gold-dark);
    font-weight: 400;
    height: fit-content;
    width: calc(5*var(--spacing-l));
    font-size: calc(3*var(--unit-pixel));
}

.quicklink:hover {
    cursor: pointer;
    background-color: white;
    color: var(--gold-dark);

}

.picture-content {
    height: 80%;
    width: 90%;
    border-radius: var(--round-border);
}

.opening-pic {
    width: 100%;
    height: 100%;
    border-radius: var(--round-border);
}

.galerie-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-s);
    margin-bottom: var(--spacing-m);
}

.galerie-subtitle {
    font-family: var(--main-font-style);
    color: black;
}

.galerie-body {
    width: 96%;
    height: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-m);
    overflow: auto;
}

@media(max-width:500px) {
    .galerie-body {
        height: max-content;
        overflow: unset;
    }
}


.st-gal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--round-border);
}

.galerie-title {
    width: 100%;
    display: flex;
    justify-content: center;
}

.foto-galery-content {
    border: 2px solid black;
    border-radius: var(--round-border);
    width: calc(22*var(--unit-pixel));
    height: calc(30*var(--unit-pixel));
    transition: all 0.3s ease-in-out
}

.foto-galery-content:hover {
    cursor: pointer;
    box-shadow: 5px 5px 8px rgba(12, 12, 12, 0.312);

}

.galerie-link-parent {
    width: 96%;
    height: 10%;
    margin-top: var(--spacing-m);
    display: flex;
    justify-content: center;
    align-items: center;
}

.galerie-link-button {
    padding: var(--spacing-s);
    border-radius: var(--round-border);
    border: 1px solid var(--gold-dark);
    width: max-content;
    background-color: var(--gold-primary);
    font-family: var(--secondary-font-style);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: black;

}

.galerie-link-button:hover {
    background-color: white;
    cursor: pointer;
    color: var(--gold-dark);
}

.starDiv{
    font-family: var(--secondary-font-style);
    display: flex;
    flex-direction: column;
}