body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fffafc;
    color: #333;
}

header {
    background: linear-gradient(135deg, #e6b0c4 0%, #d6719b 100%);
    color: white;
    padding: 1.5em 2em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(230, 176, 196, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
}

.logo-container h1 {
    margin: 0;
    font-size: 2em;
    letter-spacing: 1px;
}

.logo {
    height: 70px;
    width: auto;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
}

nav ul li {
    display: inline;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 0.5em 1em;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    border-bottom: 2px solid white;
    transform: translateY(-2px);
}

#hero {
    background: #f8e6ec;
    padding: 2em;
    text-align: center;
}

.section {
    padding: 2em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 100%;
    margin: auto;
}

button {
    background-color: #e6b0c4;
    color: white;
    border: none;
    padding: 0.5em;
    cursor: pointer;
}

.custom_button {
    width: 50%;
    height: 50px;
}

footer {
    background: #e6b0c4;
    color: white;
    text-align: center;
    padding: 1em;
    position: relative;
    bottom: 0;
}

/*BILDERGALERIE*/
#galerie {
    text-align: center;
    background-color: #fff0f5;
    padding: 2em;
}

.slideshow-container {
    position: relative;
    width: 100%;       /* mobile-first: volle Breite */
    max-width: 100%;
    height: 300px;     /* kleinere Höhe für Handy */
    margin: 0 auto;    /* zentrieren */
    overflow: hidden;
    border-radius: 1em;
    background-color: #ffffff; /* optionaler Hintergrund */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
    border: 3px solid #e6b0c4;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

/* Desktop / größere Bildschirme */
@media (min-width: 900px) {
    .slideshow-container {
        width: 50%;    /* auf PC 50% Breite */
        height: 600px; /* ursprüngliche Höhe für Desktop */
    }
}

.slide.active {
    opacity: 1;
}

h2 {
    text-align: center;
}

h5 {
    font-weight: 100;
}

#angebote {
    background-color: #fff5f9;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.angebot-card {
    background: white;
    padding: 1.5em;
    border-radius: 0.8em;
    border: 2px solid #e6b0c4;
    box-shadow: 0 2px 8px rgba(230, 176, 196, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angebot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(230, 176, 196, 0.2);
}

.angebot-card h3 {
    color: #d6719b;
    margin: 0 0 1em 0;
    text-align: center;
}

.angebot-preis {
    font-size: 1.5em;
    font-weight: bold;
    color: #e6b0c4;
    text-align: center;
    margin: 0.5em 0;
}

.angebot-beschreibung {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    margin: 0.5em 0;
}

.angebot-list {
    margin: 0;
    padding: 0;
}

.angebot-list dt {
    font-weight: 600;
    color: #333;
    margin-top: 0.8em;
}

.angebot-list dt:first-child {
    margin-top: 0;
}

.angebot-list dd {
    margin: 0.3em 0 0 0;
    color: #e6b0c4;
    font-weight: bold;
    font-size: 1.1em;
}

#coming-soon {
    background-color: #fff5f9;
    padding: 2em;
    text-align: center;
}

#coming-soon h2 {
    color: #d6719b;
    margin-bottom: 1em;
}