/* Grundlegende Typografie und Farben */
:root {
    --primary-color: #24c742; /* Ein kräftiges Blau für Akzente */
    --secondary-color: #6c757d; /* Ein gedämpftes Grau für Text */
    --background-color: #f8f9fa; /* Hellgrau für den Hintergrund */
    --text-color: #343a40; /* Dunkelgrau für Lesbarkeit */
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Container und Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Header und Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero-Sektion (Startbildschirm) */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    /* Hier Bildpfad einfügen */
    background-image: url('https://images.unsplash.com/photo-1570198075726-281ce1c50b55?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Sektionen */
.section:nth-of-type(odd) {
    background-color: #fff;
}

.section:nth-of-type(even) {
    background-color: var(--background-color);
}

/* Ausstattung und Galerie */
#ausstattung ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#ausstattung li {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    flex: 1 1 200px;
    text-align: center;
    font-weight: 500;
}

.galerie-bilder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galerie-bilder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.galerie-bilder img:hover {
    transform: scale(1.05);
}

/* Lage und Kontaktformular */
.map-container {
    height: 400px;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

#kontakt form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

#kontakt input, #kontakt textarea, #kontakt button {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#kontakt button {
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#kontakt button:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 10px;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 40px 0;
    }
}
