/*
Theme Name: St. Georg Bestensee
Theme URI: https://ruf-stgeorg-bestensee.de
Author: Reit- und Fahrverein St. Georg Bestensee
Description: Vereins-Theme für Reiten, Fahren, Voltigieren und mehr
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f7f7f7;
}

/* Header */
.site-header {
    background: #b80000;
    color: white;
    padding: 20px 0;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main-nav a:hover {
    color: #f2c500;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* Startseite Sections */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}
.section h2 {
    color: #b80000;
}

/* Buttons */
.button {
    display: inline-block;
    background: #b80000;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}
.button:hover {
    background: #8f0000;
}/* HERO-BEREICH */
.hero {
    background: url('https://images.unsplash.com/photo-1496412705862-e0088f16f791') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.hero-inner h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-inner p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-button {
    font-size: 20px;
    padding: 12px 24px;
}