/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #0a0a0a;
    min-height: 100vh;
}

/* Navigation */
.nav_bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 215, 0, 0.05));
    z-index: -1;
}

.Logo_smal {
    flex: 1;
}

.Logo_smal img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.Logo_smal img:hover {
    transform: scale(1.1);
}

.navbtn {
    margin: 0 1rem;
}

.navbtn a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navbtn a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbtn a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.navbtn a:hover::before {
    width: 100%;
}

.navbtn p {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

.Background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.Background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.3) contrast(1.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 69, 19, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%);
    z-index: 2;
}

.Logo_Big {
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
    z-index: 3;
    position: relative;
}

.Logo_Big img {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transition: transform 0.5s ease;
}

.Logo_Big img:hover {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #2d1810 0%, #1a0f0a 100%);
    position: relative;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.05);
    pointer-events: none;
}

/* Headlines */
.headline {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.headline h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
}

.headline h1::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 20px;
}

.headline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #FFD700, #DAA520);
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.tage {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    
}

.Wochentag {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem 2rem;
    margin: 1rem auto;
    border-left: 5px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 600px;
    text-align: center;
}

.Wochentag:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #DAA520;
}

.Wochentag h2 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 0.3rem;
}

.Wochentag p {
    font-size: 1.2rem;
    color: #fff;
}


/* Team Section */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.person {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.person::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #DAA520, #FFD700, #B8860B, #DAA520);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.person:hover::before {
    opacity: 1;
}

.person:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.2);
}

.person img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    filter: grayscale(20%) contrast(1.1);
}

.person:hover img {
    transform: scale(1.1);
    border-color: #FFD700;
    filter: grayscale(0%) contrast(1.2);
}

.person h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.person h3 {
    color: #DAA520;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Menu und Listen */
.list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.col {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.col::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.col:hover::before {
    left: 100%;
}

.col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.col h1 {
    color: #FFD700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.col h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #DAA520, #FFD700, #DAA520);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.col ul {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(26, 26, 26, 0.3));
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #DAA520;
    transition: all 0.3s ease;
    cursor: pointer;
    list-style: none;
    position: relative;
    overflow: hidden;
}

.col ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #DAA520);
    transition: width 0.3s ease;
}

.col ul:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(26, 26, 26, 0.4));
    transform: translateX(10px);
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.col ul:hover::before {
    width: 100%;
    opacity: 0.1;
}

.col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.col p:hover {
    border-left-color: #FFD700;
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.col img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    filter: contrast(1.1) brightness(0.9);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.col img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.4);
}

footer {
    background: #111;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #fff;
}

footer ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    footer {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav_bar {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .Logo_smal {
        flex: none;
    }
    
    .Logo_smal img {
        height: 40px;
    }
    
    .navbtn {
        margin: 0 0.5rem;
    }
    
    .Logo_Big img {
        max-width: 300px;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .headline h1 {
        font-size: 2.8rem;
    }
    
    .team {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .person {
        padding: 2.5rem;
    }
    
    .col {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav_bar {
        padding: 0.5rem;
    }
    
    .navbtn a {
        padding: 0.3rem 0.8rem;
    }
    
    .navbtn p {
        font-size: 0.9rem;
    }
    
    .headline h1 {
        font-size: 2.2rem;
    }
    
    .person img {
        width: 120px;
        height: 120px;
    }
    
    .person h2 {
        font-size: 1.6rem;
    }
    
    .col h1 {
        font-size: 2rem;
    }
    
    .col {
        padding: 2rem;
    }
    
    .person {
        padding: 2rem;
    }
}

/* Scroll-Animationen */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(50px);
        animation: slideInUp 1s ease forwards;
    }
    
    .section:nth-child(2) { animation-delay: 0.3s; }
    .section:nth-child(3) { animation-delay: 0.6s; }
    .section:nth-child(4) { animation-delay: 0.9s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}