/* ===== CSS RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Natürliche Farbpalette */
    --primary-color: #8B4513; /* Sattelbraun */
    --secondary-color: #D2691E; /* Chocolate */
    --accent-color: #CD853F; /* Peru */
    --earth-green: #228B22; /* Forest Green */
    --warm-orange: #FF8C00; /* Dark Orange */
    --nature-yellow: #DAA520; /* Goldenrod */
    --water-blue: #4682B4; /* Steel Blue */
    --fire-red: #DC143C; /* Crimson */
    
    /* Neutrale Farben */
    --cream: #F5F5DC; /* Beige */
    --light-brown: #F4A460; /* Sandy Brown */
    --dark-brown: #654321; /* Dark Brown */
    --text-dark: #3C2415; /* Very Dark Brown */
    --text-light: #FFFFFF;
    --shadow: rgba(60, 36, 21, 0.1);
    
    /* Schriftarten */
    --heading-font: 'Comfortaa', cursive;
    --body-font: 'Open Sans', sans-serif;
    
    /* Größen */
    --header-height: 80px;
    --border-radius: 12px;
    --shadow-light: 0 4px 15px var(--shadow);
    --shadow-medium: 0 8px 30px var(--shadow);
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--warm-orange), var(--nature-yellow));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-brown);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .intro-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    max-width: 700px;
    line-height: 1.8;
    margin: 1.5rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
}

.section-header .intro-text::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: serif;
    opacity: 0.5;
}

.section-header .intro-text::after {
    content: '"';
    position: absolute;
    bottom: -0.5rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: serif;
    opacity: 0.5;
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    height: var(--header-height);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
}

.nav-logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--nature-yellow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nature-yellow);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--nature-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social-link {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.nav-social-link:hover {
    color: var(--nature-yellow);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.8), 
        rgba(210, 105, 30, 0.6), 
        rgba(34, 139, 34, 0.7)
    );
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.7), 
        rgba(34, 139, 34, 0.5)
    ), url('../images/hero-kids-tipi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(2) {
    background-image: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.7), 
        rgba(255, 140, 0, 0.5)
    ), url('../images/nature-forest-tipi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(3) {
    background-image: linear-gradient(135deg, 
        rgba(70, 130, 180, 0.7), 
        rgba(34, 139, 34, 0.5)
    ), url('../images/campfire-activities.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--warm-orange), var(--nature-yellow));
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4);
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slide-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slide-btn.active,
.slide-btn:hover {
    background: var(--nature-yellow);
    border-color: var(--nature-yellow);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-light);
    font-size: 2rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(245, 245, 220, 0.95), 
        rgba(244, 164, 96, 0.95)
    ), url('../images/four-elements.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.element-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.element-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    transition: var(--transition);
}

.element-card:nth-child(1)::before { background: var(--fire-red); }
.element-card:nth-child(2)::before { background: var(--water-blue); }
.element-card:nth-child(3)::before { background: var(--primary-color); }
.element-card:nth-child(4)::before { background: var(--light-brown); }

.element-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.element-card:hover::before {
    left: 0;
}

.element-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.element-card:nth-child(1) .element-icon { color: var(--fire-red); }
.element-card:nth-child(2) .element-icon { color: var(--water-blue); }
.element-card:nth-child(3) .element-icon { color: var(--primary-color); }
.element-card:nth-child(4) .element-icon { color: var(--light-brown); }

.element-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.element-card p {
    color: var(--dark-brown);
    line-height: 1.6;
}

/* ===== ANGEBOTE SECTION ===== */
.angebote {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-brown), var(--cream));
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.angebot-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
    overflow: hidden;
}

.angebot-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.angebot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.angebot-card:hover .angebot-image img {
    transform: scale(1.05);
}

.angebot-content {
    padding: 2rem;
}



.angebot-card.featured {
    border-top: 4px solid var(--warm-orange);
    transform: scale(1.02);
}

.angebot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.angebot-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.angebot-card.featured .angebot-icon {
    color: var(--warm-orange);
}

.angebot-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.angebot-card p {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.angebot-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.angebot-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
}

.angebot-card li i {
    color: var(--earth-green);
    margin-right: 0.5rem;
    width: 16px;
}

.angebot-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary-color), var(--warm-orange));
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.angebot-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Musik Highlight */
.musik-highlight {
    background: linear-gradient(45deg, var(--earth-green), var(--water-blue));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.musik-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text-light);
}

.musik-icon {
    font-size: 3rem;
    color: var(--nature-yellow);
}

.musik-text h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 6rem 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-image i {
    font-size: 6rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.team-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--warm-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-card p {
    color: var(--dark-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-contact {
    background: var(--light-brown);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 600;
}

.team-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===== LAGER SECTION ===== */
.lager {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--light-brown));
}

.lager-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lager-hero-image {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.lager-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lager-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lager-info p {
    color: var(--dark-brown);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lager-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.feature i {
    font-size: 2rem;
    color: var(--earth-green);
    margin-top: 0.25rem;
}

.feature h4 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature p {
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.5;
}

.lager-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.stat-card i {
    font-size: 3rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card p {
    color: var(--dark-brown);
    line-height: 1.6;
}

/* ===== PRESSE SECTION ===== */
.presse {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--light-brown));
}

.presse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-container {
    position: relative;
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.8), 
        rgba(210, 105, 30, 0.7)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: var(--transition);
    cursor: pointer;
}

.video-container:hover .video-overlay {
    opacity: 0.9;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 4px;
}

.video-container:hover .play-button {
    transform: scale(1.1);
    background: var(--text-light);
}

.video-info {
    text-align: center;
    color: var(--text-light);
}

.video-info h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-info p {
    font-weight: 600;
    opacity: 0.9;
}

.presse-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.presse-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.presse-logo i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.presse-logo h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.presse-text h4 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.presse-text p {
    color: var(--dark-brown);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.presse-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.highlight-item i {
    font-size: 1.3rem;
    color: var(--earth-green);
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.presse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--warm-orange));
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.presse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(210, 105, 30, 0.4);
}

/* ===== TERMINE SECTION ===== */
.termine {
    padding: 6rem 0;
    background: var(--cream);
}

.termine-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.termine-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.termin-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
}

.termin-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.termin-card.highlighted {
    border-left: 5px solid var(--warm-orange);
}

.termin-date {
    text-align: center;
    min-width: 100px;
}

.date-day {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.termin-info {
    flex: 1;
}

.termin-info h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.termin-info p {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.termin-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.termin-details span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-brown);
}

.termin-details i {
    color: var(--earth-green);
    margin-right: 0.5rem;
}

.termin-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--warm-orange));
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.termin-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.termine-info-box {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.termine-info-box h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.termine-info-box p {
    color: var(--dark-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    background: var(--light-brown);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-link:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

/* ===== KONTAKT SECTION ===== */
.kontakt {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-brown), var(--cream));
}

.kontakt-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form-container {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.event-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-brown);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    accent-color: var(--secondary-color);
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-info {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.contact-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--border-radius);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.4;
}

/* ===== ANFAHRT SECTION ===== */
.anfahrt {
    padding: 6rem 0;
    background: var(--cream);
}

.anfahrt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.anfahrt-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.address {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address i {
    color: var(--secondary-color);
}

.anfahrt-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anfahrt-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.anfahrt-item h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.anfahrt-item h4 i {
    color: var(--earth-green);
}

.anfahrt-item p {
    color: var(--dark-brown);
    line-height: 1.6;
}

.map-container {
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    border-radius: var(--border-radius);
}

.map-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    z-index: 1;
    display: none;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.map-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-color));
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    color: var(--nature-yellow);
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--nature-yellow);
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.social-link.facebook:hover {
    background: #1877F2;
    color: var(--text-light);
    transform: translateY(-2px);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E1306C, #FD1D1D, #F77737);
    color: var(--text-light);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.social-info {
    font-size: 0.9rem;
    color: var(--light-brown);
    margin: 0;
}

/* Social Media in Termine Section */
.social-updates {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-brown);
}

.social-updates h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.3);
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-btn.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #E1306C, #FD1D1D, #F77737);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-btn i {
    font-size: 1.1rem;
}

.social-note {
    font-size: 0.9rem;
    color: var(--dark-brown);
    text-align: center;
    font-style: italic;
    margin: 0;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--nature-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 220, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: var(--cream);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-content {
    background: var(--text-light);
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.close-legal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
}

.legal-content h2,
.legal-content h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--dark-brown);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-social {
        gap: 0.5rem;
    }
    
    .nav-social-link {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .elements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .angebote-grid {
        grid-template-columns: 1fr;
    }
    
    .lager-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .termine-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .anfahrt-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .presse-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-wrapper {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .musik-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Navigation Social Links */
@media (max-width: 768px) {
    .nav-menu.active {
        left: 0;
        padding-bottom: 3rem;
    }
    
    .nav-menu.active::after {
        content: '';
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1rem;
    }
    
    .nav-social {
        position: fixed;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        background: rgba(139, 69, 19, 0.9);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        display: none;
    }
    
    .nav-menu.active ~ .nav-social {
        display: flex;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .elements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .termin-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}