/* Basis-Styling für Hotel Reingard */

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background-color: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

a {
    color: #003366;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header und Navigation */

.site-header {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 10px;
}

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

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

.main-nav li a {
    color: white;
    font-weight: bold;
    font-size: 1.1em;
}

/* Hero Image */

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hauptinhalt */

.content {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.content h1, .content h2 {
    color: #003366;
}

.welcome-text p {
    font-size: 1.1em;
}

.highlights ul {
    list-style: square inside;
    margin-top: 10px;
}

/* Bilder */

.welcome-image img {
    width: 100%;
    border-radius: 5px;
    margin-top: 20px;
}

/* Footer */

.site-footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 60px;
}

/* Responsive Design */

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        max-width: 160px;
    }

    .content {
        padding: 0 10px;
    }
}