/* --- Lokale Schriftart: Manrope --- */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-regular.woff2') format('woff2');
    font-weight: 400; /* Regular */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-medium.woff2') format('woff2');
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-bold.woff2') format('woff2');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}


body {
    background-color: #EAEAEA;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Manrope', sans-serif; /* NEUE SCHRIFTART */
    color: #444;
    margin: 0;
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 2px auto;
    padding: 2px;
}

header {
    text-align: right;
    padding: 2px 10px;
    margin-bottom: 20px;
}

.logo-image {
    max-height: 60px;
    width: auto;
}

.main-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.left-column {
    flex: 0 0 220px;
}

.right-column {
    flex: 1;
    background-color: rgba(253, 253, 253, 0.9);
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card {
    background-color: rgba(253, 253, 253, 0.9);
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* --- Language Switcher (New Position) --- */
.language-switcher {
    display: flex;
    justify-content: right;
    margin-bottom: 1px;
    padding-bottom: 1px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Manrope', sans-serif; /* NEUE SCHRIFTART */
    font-weight: 500;
}

.language-switcher a,
.language-switcher span {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
    padding: 4px 8px;
    margin: 0 2px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.language-switcher a:hover {
    background-color: #e6e6e6;
    color: #5D7B9D;
}

.language-switcher .active {
    color: #5D7B9D;
    font-weight: 700;
    cursor: default;
}

.flag-icon {
    width: 22px;
    height: auto;
    margin-right: 8px;
}


/* --- Navigation --- */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    margin-bottom: 15px;
}

nav a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

nav a::before {
    content: '■';
    color: #AAAAAA;
    margin-right: 15px;
    font-size: 12px;
}

nav li.active a,
nav a:hover {
    color: #5D7B9D;
}

/* --- Portrait --- */
.portrait img {
    width: 100%;
    display: block;
}

/* --- Right Column Content --- */
.page-title {
    font-family: 'Manrope', sans-serif; /* NEUE SCHRIFTART */
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.contact-info {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #5D7B9D;
    font-size: 14px;
}

.contact-info p {
    margin: 2px 0;
}

.contact-info a {
    color: #5D7B9D;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

.opening-hours {
    margin-bottom: 30px;
}

.opening-hours strong {
    display: block;
    margin-bottom: 5px;
}

.clear {
    clear: both;
}

.right-column h2 {
    font-weight: 500;
    font-size: 18px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.right-column ul {
    list-style-type: square;
    padding-left: 25px;
    margin-bottom: 20px;
}

.right-column li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* --- Google Maps Responsive Container --- */
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 30px;
    border: 1px solid #ddd;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f0f0f0;
    padding: 20px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

footer a {
    color: #555;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

footer a:hover {
    color: #5D7B9D;
}
/* --- Page Overlay --- */
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#consent-modal {
    display: none;
}

/* --- Cookie Banner --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    color: #fff;
    z-index: 1001;
    display: none;
    font-size: 14px;
}
.consent-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.consent-text a {
    color: #8ab4f8;
    text-decoration: underline;
}
.consent-buttons button {
    background-color: #5D7B9D;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}
.consent-buttons button:hover {
    background-color: #4c6682;
}
#consent-decline-btn {
    background-color: #777;
}
#consent-decline-btn:hover {
    background-color: #666;
}