/* Grundlegendes Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

header p {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #ecf0f1;
}

/* Hero Section */
.hero {
    text-align: center;
    background: #fff;
    padding: 2rem 1rem;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero img:hover {
    transform: scale(1.02);
}

/* Main Content */
main {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #2980b9;
    display: inline-block;
    padding-bottom: 0.25rem;
}

/* Sections */
.about,
.verkaufsliste,
.contact,
.verein {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about:hover,
.verkaufsliste:hover,
.contact:hover,
.verein:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.about a,
.verkaufsliste a,
.contact a,
.verein a {
    color: #2980b9;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about a:hover,
.verkaufsliste a:hover,
.contact a:hover,
.verein a:hover {
    color: #1abc9c;
    text-decoration: underline;
}

/* Verein Image */
.verein-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Footer */
footer {
    text-align: center;
    background: #2c3e50;
    color: #fff;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
    color: #1abc9c;
}

footer .credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #bbb;
}

footer .credit a {
    color: #bbb;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

footer .credit a:hover {
    color: #fff;
    border-bottom: 1px dotted #fff;
}

footer .credit .heart {
    color: #e74c3c;
    font-size: 1rem;
    margin: 0 3px;
}
