@font-face {
    font-family: 'GreatVibes';
    src: url('fonts/GreatVibes-Regular.ttf') format('truetype');
}

:root {
    --hauptfarbe: #285e2d;
    --gold: #D4A73B;
    --dunkelbraun: #2A1A14;
    --hellgrau: #f5f5f5;
}

body {
    background: var(--hellgrau);
    color: var(--dunkelbraun);
    font-family: Arial, sans-serif;
}

.fancy {
    font-family: 'GreatVibes', cursive;
}

header .logo-section {
    background: white;
    text-align: center;
    padding: 1rem 1rem 1rem 1rem;
}

header .logo-section img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

header .insta-section {
    background: var(--hauptfarbe);
    text-align: center;
    padding: 0.3rem;
}

@media (max-width: 991px) {
    header .insta-section {
        background: var(--hauptfarbe);
        text-align: center;
        padding: 0;
    }
}

header .insta-section a {
    color: white;
    font-size: 2rem;
}

h2 {
    color: var(--hauptfarbe);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'GreatVibes', cursive;
    font-size: 5rem;
}

@media (max-width: 991px) {
    h2 {
        color: var(--hauptfarbe);
        margin-bottom: 1rem;
        font-family: 'GreatVibes', cursive;
        font-size: 3rem;
    }
}

h5 {
    color: var(--hauptfarbe);
    font-family: 'GreatVibes', cursive;
    font-size: 2rem;
}

.member-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.member-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 20rem;
}

.btn-submit {
    background: var(--hauptfarbe);
    color: var(--hellgrau);
    font-weight: bold;
}

.btn-submit:hover {
    background: #1f4b24;
    color: var(--hellgrau);
}

footer {
    background: #ffffff;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #ddd;
}

footer a {
    color: var(--hauptfarbe);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Honeypot verstecken */
.hidden-field {
    display: none;
}

.insta-circle {
    width: 40px;
    height: 40px;
    background: var(--hauptfarbe);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.insta-circle:hover {
    background: #1f4a23;
    color: white;
}

/* Card-Abhebung */
.card {
    border-radius: 12px;
    background: white;
}

/* Trennlinie */
.contact-divider {
    width: 1px;
    background: #ccc;
    height: 100%;
}

@media (max-width: 991px) {
    .contact-divider {
        width: 80%;
        height: 1px;
        margin: 1rem 0;
    }
}

/* Instagram Icon */
.insta-circle {
    width: 55px;
    height: 55px;
    background: var(--hauptfarbe);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.insta-circle:hover {
    background: #1f4a23;
    color: white;
}

.impressum span {
    color: grey
}

.contactform {
    max-width: 800px;
}

.address {
    height: 14px;
}