/* --- BASIS & FARBEN --- */
:root { 
    --primary: #3b4d36; /* Alpin-Grün */
    --accent: #8b7355;  /* Natur-Braun */
    --bg: #fdfbf7;      /* Warmes Off-White */
    --text: #2c2c2c;
    --white: #ffffff; 
    --transition: all 0.4s ease; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Lato', sans-serif; 
    background-color: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 400; 
}

/* --- NAVIGATION --- */
header { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 20px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 1000; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); 
    transition: var(--transition); 
}

.logo img { height: 50px; }

nav ul { list-style: none; display: flex; gap: 30px; }

nav a { 
    color: var(--white); 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1.5px; 
    transition: var(--transition); 
}

nav a:hover { color: var(--accent); }

.mobile-nav-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- HERO & SUB-HERO --- */
.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--white); 
    position: relative; 
}

.sub-hero { 
    height: 60vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--white); 
    position: relative; 
}

.hero::before, .sub-hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(0,0,0,0.3); 
}

.hero-content, .sub-hero-content { 
    position: relative; 
    z-index: 10; 
    max-width: 900px; 
    padding: 0 20px; 
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 10px; }
.sub-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 10px; margin-top: 50px; }

.hero p, .sub-hero p { 
    font-size: 1.2rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 30px; 
}

/* --- BUTTONS --- */
.btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn { 
    padding: 15px 35px; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 1px; 
    border: 1px solid var(--white); 
    color: var(--white); 
    transition: var(--transition); 
    backdrop-filter: blur(5px); 
}

.btn:hover { background: var(--white); color: var(--primary); }

/* --- CONTENT SECTIONS --- */
.section-padding { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }

.text-center { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }
.text-center h2 { font-size: 2.8rem; color: var(--primary); margin-bottom: 25px; }
.text-center p { font-size: 1.15rem; color: #555; line-height: 1.8; }

/* --- PILLARS (Startseite) --- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #eee; }

.pillar-item { 
    position: relative; 
    height: 75vh; 
    overflow: hidden; 
    text-decoration: none; 
    color: var(--white); 
}

.pillar-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.pillar-item:hover img { transform: scale(1.08); }

.pillar-content { 
    position: absolute; 
    bottom: 0; left: 0; right: 0; 
    padding: 50px 30px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    text-align: center; 
}

.pillar-content h3 { font-size: 2rem; margin-bottom: 15px; letter-spacing: 1px; }

/* --- SPLIT FEATURE (Bild & Text) --- */
.split-feature { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.split-feature:nth-child(even) { flex-direction: row-reverse; }

.split-image { flex: 1; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.split-image img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.split-image:hover img { transform: scale(1.03); }

.split-text { flex: 1; }
.split-text h3 { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; }

/* --- GALERIEN --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 15px; }

.food-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 60px; }
.food-item { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.food-item img { width: 100%; height: 350px; object-fit: cover; }
.food-info { padding: 30px; text-align: center; }

.event-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.event-gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; }

.gallery-item { overflow: hidden; border-radius: 4px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }

/* --- INFO & FOOTER --- */
.info-strip { 
    background: var(--primary); 
    color: var(--white); 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    text-align: center; 
    padding: 80px 5%; 
}

.info-box h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--accent); }

.info-panel { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 4px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    margin-top: 50px; 
}
.info-panel h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.8rem; }
.info-panel li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.info-panel li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

footer { background: #1a1a1a; color: #888; padding: 100px 5% 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; margin-bottom: 80px; }
.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #333; padding-top: 40px; text-align: center; font-size: 0.85rem; letter-spacing: 1px; }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
    .pillars { grid-template-columns: 1fr; }
    .pillar-item { height: 60vh; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .info-strip { grid-template-columns: 1fr; gap: 60px; }
    .food-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; flex-wrap: wrap; }
    .mobile-nav-toggle { display: block; }
    nav { display: none; width: 100%; margin-top: 15px; }
    
    /* Dunkler Hintergrund für das offene Menü */
    nav.active { 
        display: block; 
        background: rgba(26, 26, 26, 0.98); 
        padding: 25px 0; 
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    }
    
    nav ul { flex-direction: column; gap: 20px; align-items: center; }
    .hero h1, .sub-hero h1 { font-size: 3rem; }
    .split-feature, .split-feature:nth-child(even) { flex-direction: column; text-align: center; gap: 30px; }
    .event-gallery { grid-template-columns: 1fr; }
    .section-padding { padding: 80px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
}