/* style.css für Pächtersuche TV Lobberich */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hero-image {
    /* Platzhalter für ein Bild. 
       Entfernen Sie den Kommentar und passen Sie den Pfad an.
    */
    /* width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #eee;
    */
}
h1 {
    color: #006400; /* Ein dunkles "Tennis-Grün" */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}
h2 {
    font-size: 1.7rem;
    font-weight: 300; /* Leichter, für die Subline */
    margin-top: 5px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}
h3 {
    color: #006400;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
}
p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
li {
    position: relative;
    padding-left: 30px; /* Platz für das Icon */
    margin-bottom: 10px;
    font-size: 1.1rem;
}
li::before {
    content: '✓'; /* Checkmark als Bullet-Point */
    position: absolute;
    left: 0;
    top: 0;
    color: #006400;
    font-weight: bold;
    font-size: 1.2rem;
}
.contact-box {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}
.contact-box strong {
    display: inline-block;
    min-width: 70px; /* Sorgt für saubere Ausrichtung */
    color: #111;
}
.contact-box a {
    color: #006400;
    text-decoration: none;
}
.contact-box a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 40px;
    border-top: 2px solid #f0f0f0; /* Trennlinie */
    padding-top: 20px;
    text-align: center;
    font-size: 0.95rem;
}
.footer-links a {
    color: #555; /* Etwas dezenter */
    text-decoration: none;
    margin: 0 10px;
}
.footer-links a:hover {
    color: #006400; /* Hauptfarbe beim Hover */
    text-decoration: underline;
}