:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c59;
    --accent-green: #6b8e5a;
    --gold: #c4940c;
    --dark-brown: #3d2914;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --anthracite: #2c3e50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding-top: 90px;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--anthracite) !important;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 50px;
    width: 50px;
    margin-right: 15px;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.2);
}

.navbar-brand .brand-text {
    color: var(--anthracite);
    line-height: 1.2;
}

.navbar-brand .brand-text small {
    font-size: 0.8rem;
    opacity: 0.8;
    color: var(--anthracite);
}

.nav-link {
    color: var(--anthracite) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item {
    color: var(--anthracite);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--gold);
    transform: translateX(5px);
}

/* Hero */
.hero-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15)),
        url('/img/home/schuetzin.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    margin-top: -90px;
    padding-top: 90px;
}

.hero-section.hero-sub {
    min-height: 55vh;
    background-position: center 60%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(45, 80, 22, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-content .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Sections */
.page-section {
    padding: 80px 0;
}

.section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

h2 {
    font-size: 2.25rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.2);
}

.card-header {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: var(--white);
    padding: 20px;
    font-weight: 600;
    border: none;
}

.team-img {
    height: 250px;
    object-fit: cover;
}

.gallery-img {
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.impression-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.impression-card {
    overflow: hidden;
    border-radius: 15px;
}

.impression-card:hover img {
    transform: scale(1.06);
}

/* Icons */
.trophy-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-icon-large {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--secondary-green);
    margin-right: 15px;
    width: 25px;
}

/* Badges */
.badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--gold), #e6b800) !important;
    color: #fff !important;
}

.bg-success {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green)) !important;
}

.bg-info {
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green)) !important;
}

.text-primary {
    color: var(--primary-green) !important;
}

.text-success {
    color: var(--secondary-green) !important;
}

/* Date box for Termine */
.date-box {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 15px;
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.date-box .date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-box .date-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* News Cards */
.news-card {
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--gold);
}

.footer h6 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Tables */
.list-group-item {
    border: none;
    padding: 10px 20px;
    background: rgba(45, 80, 22, 0.05);
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: rgba(45, 80, 22, 0.05);
}

/* Board / Vorstand */
.board-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.15);
}

.board-card .avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.board-card h5 {
    color: var(--anthracite);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.board-card .role {
    color: var(--secondary-green);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    .hero-section {
        background-attachment: scroll;
        margin-top: -80px;
        padding-top: 80px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .navbar-brand {
        font-size: 1.1rem;
    }
    .navbar-brand .logo {
        height: 40px;
        width: 40px;
    }
    .page-section {
        padding: 60px 0;
    }
    .date-box .date-day {
        font-size: 2rem;
    }
}
