/*
Theme Name: Die Gölzer's Familienhomepage
Theme URI: https://example.com
Author: Web Builder Pro
Description: Eine minimalistische Familienhomepage für "Die Gölzer's"
Version: 1.0
*/

body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #444;
    font-weight: bold;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

.family-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.family-member {
    text-align: center;
    margin: 15px;
    flex: 1 1 40%;
}

.family-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #ccc;
}

footer {
    background: #eee;
    padding: 10px;
    text-align: center;
    font-size: 0.9em;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-nav li {
    display: inline;
}

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