 /* Grundlayout */
body {
    margin: 0;
    padding: 0;
    font-family: 'athelas', serif;
    background-color: #F5EFE6;
    color: #5A3E2B;
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(to bottom, #dac8ae, #dec5a5);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #F2ECE6;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s, transform 0.2s;
}

nav a:hover {
    color: #beaf9b;
    transform: scale(1.05);
}

nav a.active {
    border-bottom: 2px solid white;
}

/* Hero-Bereich */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #EADBC8;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 22px;
}

/* Inhaltsbereich */
.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content h2 {
    font-size: 26px;
    border-bottom: 2px solid #4A3323;
    padding-bottom: 5px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #DAC8AE;
    color: #F2ECE6;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer iframe {
    width: 90%;
    max-width: 600px;
    height: 300px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Zimmer-Galerie */
.zimmer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.zimmer {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.price-list li {
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid #BFA88C;
}

.price-list li:last-child {
    border-bottom: none;
}