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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header mit zentriertem Bild */
header {
    text-align: center;
    margin-bottom: 30px;
}

.schloss-bild {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
    border-top: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
}

nav ul li a {
    text-decoration: none;
    color: #8B4513;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #8B4513;
    color: white;
    border-radius: 4px;
}

nav ul li a.active {
    background-color: #8B4513;
    color: white;
    border-radius: 4px;
}

/* Hauptinhalt */
main {
    min-height: 400px;
    padding: 20px 0;
}

h1 {
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
}

/* Historie-Seite */
.historie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

/* Schwalben-Cam-Seite */
.cam-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background-color: #2c3e50;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    border: 2px dashed #8B4513;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .container {
        padding: 10px;
    }
}

/* Für Screenreader und SEO, aber visuell versteckt */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Teaser-Grid für die Startseite */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.teaser {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.teaser h2 {
    margin-bottom: 15px;
}

.teaser h2 a {
    color: #8B4513;
    text-decoration: none;
}

.teaser h2 a:hover {
    text-decoration: underline;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #8B4513;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.location-info {
    margin: 40px 0;
    padding: 20px;
    background-color: #e8f0e8;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

footer nav ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
}

footer nav ul li a:hover {
    color: #8B4513;
    text-decoration: underline;
}
