/* Reset und Grundstile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
}

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

/* Header */
header {
    background-color: #d4941e;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

/* Hero Section */
.hero-section {
    text-align: center;
    margin: 40px 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content Section */
.content-section {
    padding: 40px 0;
}

.message-box {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid #d4941e;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.ritter-icon {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
}

.message-text {
    flex: 1;
}

.message-text h1 {
    color: #d4941e;
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: bold;
}

.message-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.message-text .closing {
    margin-top: 25px;
    font-size: 1.2em;
    color: #d4941e;
}

/* Footer */
footer {
    background-color: #d4941e;
    padding: 20px 0;
    margin-top: 60px;
}

footer nav {
    text-align: center;
}

footer nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.1em;
    font-weight: bold;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .message-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .ritter-icon {
        max-width: 80px;
        align-self: center;
    }
    
    .message-text h1 {
        font-size: 1.8em;
    }
    
    .hero-image {
        margin: 20px 0;
    }
    
    footer nav a {
        display: block;
        margin: 10px 0;
    }
}

/* Impressum und Datenschutz Seiten */
.legal-page {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #d4941e;
}

.legal-page h1 {
    color: #d4941e;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.legal-page h2 {
    color: #d4941e;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #d4941e;
    padding-bottom: 5px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page a {
    color: #d4941e;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    background-color: #d4941e;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.back-link a:hover {
    background-color: #b8821a;
}
