
/* Allgemeine Stile */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-image: url('ranch_background.jpg'); /* Hintergrundbild */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

/* Header */
.header {
    background-color: rgba(139, 69, 19, 0.8); /* Halbtransparente braune Bar */
    color: white;
    text-align: center;
    padding: 20px 0;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #8b4513; /* Rustikale braune Farbe */
}

/* Hauptbereiche */
.section {
    background-color: rgba(255, 255, 255, 0.9); /* Weiße Boxen mit Transparenz */
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section h2 {
    color: #8b4513;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

ul {
    list-style: disc inside;
    margin: 10px 0;
    padding: 0;
}

/* Button */
.button {
    display: inline-block;
    background-color: #8b4513;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #5a3311;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
