/* Vereinsfarben */
:root {
    --color-green: #2d5f2d;
    --color-green-light: #3a7a3a;
    --color-black: #000000;
    --color-gray-dark: #333333;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #cccccc;
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--color-green);
    text-decoration: none;
}



/* Helper Classes */
.bold {
    font-weight: bold !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-gray-medium) 100%);
    background-attachment: fixed;
    color: var(--color-black);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hauptbereich mit Logo */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.main-content.boxed {
    align-items: flex-start;
    justify-content: left;
    background-color: white;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.main-content.boxed h1 {
    color: var(--color-green);
    margin-bottom: 2rem;
}

.main-content.boxed p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.main-content.boxed ul {
    margin-bottom: 1rem;
    line-height: 1.5;
    list-style-type: disc;
    padding-left: 30px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: fadeIn 1s ease-in;
    margin-bottom: 2rem;
}

.notice-text {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-link {
    background-color: var(--color-green);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-green);
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
}

.contact-link:hover {
    background-color: var(--color-green-light);
    border-color: var(--color-green-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 95, 45, 0.3);
}

.contact-link:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer-Banner */
.footer-banner {
    background-color: var(--color-black);
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border-top: 3px solid var(--color-green);
}

.footer-link {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.footer-link:hover {
    color: var(--color-green);
    background-color: rgba(45, 95, 45, 0.1);
    transform: translateY(-2px);
}

.footer-link:active {
    transform: translateY(0);
}

.footer-link-home {
    margin-right: 2rem;
    position: relative;
}

.footer-link-home::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(245, 245, 245, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .notice-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .contact-link {
        font-size: 0.95rem;
        padding: 0.65rem 1.25rem;
    }

    .footer-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }

    .main-content {
        padding: 1.5rem;
    }

    .notice-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .contact-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

/* Druck-Styles */
@media print {
    body {
        background: white;
    }

    .footer-banner {
        border-top: 1px solid var(--color-gray-dark);
        background-color: var(--color-gray-light);
    }

    .footer-link {
        color: var(--color-black);
    }
}
