/* gallery.css */
body {
    cursor: url('../images/mine.png'), auto;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #111;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    text-align: center;
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    height: 60px;
}

h1 {
    margin: 0.3em 0 0.1em;
    font-size: 1.8em;
}

p.subtitle {
    margin: 0.2em 0;
    font-style: italic;
    color: #666;
}

main {
    padding-top: 130px;
    text-align: left;
    width: 100%;
}

.gallery-container {
    margin-top: 2cm;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.lilith-video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.gallery-video-wrapper {
    position: relative;
    width: 300px;
    height: 450px;
    cursor: pointer;
}

/* WICHTIGE KORREKTUR FÜR DAS VIDEO-ELEMENT SELBST */
#schubVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Lilith Button */
.lilith-button-container {
    position: absolute;
    left: calc(50% - 150px - 5cm);
    top: 10px;
}

.lilith-button {
    display: block;
    padding: 0.5em 1em;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.lilith-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-caption {
    margin-top: 1em;
    font-size: 1.1em;
    font-style: italic;
    color: #333;
    width: 100%;
    text-align: center;
}

.back-button {
    margin: 2em auto;
    width: fit-content;
}

.back-button a {
    display: inline-block;
    padding: 0.8em 1.5em;
    font-size: 1em;
    font-weight: bold;
    background-color: #3366cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: url('../images/mine.png'), auto;
}

.back-button a:hover {
    background-color: #224488;
}

footer {
    margin-top: 1em;
    padding: 1em 0;
    background-color: #fff;
    color: #555;
    font-size: 0.9em;
    text-align: center;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Styles für den Sprachumschalter */
.language-switcher {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-switcher label {
    font-size: 0.9em;
    color: #555555;
}

.language-switcher select {
    background-color: #d8d8d0;
    color: #333333;
    border: 1px solid #aaaaaa;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
}