@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@400;500&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: 'Montserrat', sans-serif;
    color: #444;
    margin: 0;
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 5px;
    color: #444;
}

.logo span {
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 5px;
    color: #5D7B9D;
}

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

.left-column {
    flex: 0 0 220px; /* Fixed width for the left column */
}

.right-column {
    flex: 1; /* Takes up the remaining space */
    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;
}

/* --- 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: 'Montserrat', sans-serif;
    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;
}
/* Fügen Sie dies am Ende von css/style.css hinzu */

.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;
}
/* Fügen Sie dies am Ende von css/style.css hinzu */

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

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/* Fügen Sie dies am Ende von css/style.css hinzu */

/* --- 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; /* Gleiche Hover-Farbe wie Navigation */
}
/* --- Page Overlay --- */
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter schwarzer Hintergrund */
    z-index: 999; /* Muss unter dem Banner (1000), aber über dem Rest der Seite liegen */
    display: none; /* Wird per JS eingeblendet */
}
/* Fügen Sie dies am Ende von css/style.css hinzu */
#consent-modal {
    display: none; /* Standardmässig ausblenden */
}