/* style.css */
html {
    scroll-behavior: smooth;
}
:root {
    --primary-blue: #0A3D73;
	--secondary-blue: #5b9bd1;
    --accent-gold: #D4AF37;  
    --light-bg: #f9f9f9;
    --text-dark: #333;
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    line-height: 1.6; 
    color: var(--text-dark); 
    background: var(--light-bg); 
}

/* Navigation */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5rem 1rem; 
    background: var(--primary-blue); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    color: white; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 50px; margin-right: 15px; }
.nav-links {
    display: flex;       /* Nebeneinander auf Desktop */
    list-style: none;    /* Entfernt die Bulletpoints */
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links li {
    margin-left: 25px;   /* Abstand zwischen den Links */
}
.nav-links a { 
	color: white; 
	text-decoration: none; 
	margin: 0 10px; 
	font-weight: bold;transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-gold); }

/* Styling für das Burger-Icon */
.menu-toggle {
    display: none; /* Auf dem Desktop unsichtbar */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}



/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 25s infinite;
    z-index: 1;
}

.slide:nth-child(1) { background-image: linear-gradient(rgba(10,61,115,0.5), rgba(10, 61, 115, 0.5)), url('pictures/gruppenfoto.jpeg'); animation-delay: 0s; }
.slide:nth-child(2) { background-image: linear-gradient(rgba(10,61,115,0.5), rgba(10,61,115,0.5)), url('pictures/hero1.jpg'); animation-delay: 5s; }
.slide:nth-child(3) { background-image: linear-gradient(rgba(10,61,115,0.5), rgba(10,61,115,0.5)), url('pictures/hero2.jpg'); animation-delay: 10s; }
.slide:nth-child(4) { background-image: linear-gradient(rgba(10,61,115,0.5), rgba(10,61,115,0.5)), url('pictures/hero3.jpg'); animation-delay: 15s; }
.slide:nth-child(5) { background-image: linear-gradient(rgba(10,61,115,0.5), rgba(10,61,115,0.5)), url('pictures/hero4.jpg'); animation-delay: 20s; }

@keyframes slideAnimation {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-content { position: relative; z-index: 10; padding: 0 20px; }

/* Sektionen */
.section { 
	padding: 40px 20px;
	margin: auto;
	margin-top: 50px;
	max-width: 1000px; 
	text-align: center; 
    background: #eee;
}
/* --- Section Über Uns --- */
.intro-section {
    padding: 100px 20px 10px 20px;
	margin: auto;
	max-width: 1000px; 
    background: linear-gradient(to bottom, #ffffff, #f0f4f8);
}
.intro-header {
    text-align: center;
}
.intro-header span {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
    display: block;
	font-size: 1.5rem;
}
.intro-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-top: 10px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}
.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}
.quote-box {
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    margin-top: 30px;
    font-style: italic;
    color: var(--primary-blue);
    font-size: 1.3rem;
}
/* Feature Badges rechts */
.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-badge {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column; /* Sorgt dafür, dass Zahl und Text untereinander stehen */
    align-items: center;    /* Zentriert den Inhalt horizontal */
    justify-content: center; /* Zentriert den Inhalt vertikal */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-badge:hover {
    transform: translateX(10px);
}
.feature-number {
    display: inline-block;
	min-width: 80px;
	font-variant-numeric: tabular-nums;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}
.feature-text {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
/* Mobil-Optimierung */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-header h2 {
        font-size: 2.2rem;
    }
}

.grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	gap: 20px; 
	margin-top: 40px; 
}

.card { 
	background: white; 
	padding: 20px; 
	border-radius: 8px; 
	box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}
.card:hover { background: var(--secondary-blue); color: white;}

/* Styling für SVG-Icons */
.icon-svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-blue);
    margin-bottom: 0px;
}

.instrument-svg {
    width: 160px;
    height: 100px;
    fill: var(--primary-blue);
    margin-bottom: 0px;
}

.card-picture {
    width: 70%;
	height: auto;
	border-radius: 8px; 
}

.btn { 
    background: var(--accent-gold); 
    color: white; 
    padding: 12px 25px; 
    border: none; 
    border-radius: 5px; 
    text-decoration: none; 
    display: inline-block; 
    transition: 0.3s; 
    margin-top: 20px; 
    font-weight: bold; 
}
.btn:hover { background: #b8962d; transform: scale(1.05); }


/* --- Section Mitmachen --- */
.join-section {
    /*background-color: #fff;*/
    padding: 80px 20px;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.join-header {
    text-align: center;
    margin-bottom: 50px;
}
.join-header span {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
    display: block;
	font-size: 1.5rem;
    margin-bottom: 10px;
}
.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
    color: var(--primary-blue);
}
.lead-text i{
    font-size: 1.5rem;
    font-weight: bold;
}
.join-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}
.join-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.join-info h3 {
    color: var(--primary-blue);
    margin-top: 0;
    font-size: 1.8rem;
}
.join-cta {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den beiden Karten rechts */
}
/* Checkliste mit goldenen Häkchen */
.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.check-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.3rem;
}
.benefit-box {
    background: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-gold);
}

/* Kontakt-Karten rechts */
.cta-card {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    text-align: center;
}
.cta-card.highlight {
    background: var(--primary-blue);
    color: white;
}
.cta-card.highlight h4 { color: white; }
.cta-icon {
    font-size: 2.0rem;
    display: block;
}
.btn-phone {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 0;
    transition: transform 0.3s;
}
.btn-phone:hover {
    transform: scale(1.05);
}
.disclaimer-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 40px;
    text-align: center;
}

/* Mobil-Optimierung */
@media (max-width: 850px) {
    .join-grid { grid-template-columns: 1fr; }
}


.map-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 250px;
    margin: 30px auto;
    background: var(--secondary-blue); /* Grauer Hintergrund als Platzhalter #f0f0f0*/
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: height 0.6s ease-in-out;
}

.map-placeholder {
    padding: 20px;
    text-align: center;
    z-index: 5;
}

.map-placeholder-content p {
    margin-bottom: 10px;
    color: #333;
}

#map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Footer & Social Media */
.social-links a {
    text-decoration: none !important;
    line-height: 0;        /* Verhindert Text-Abstände unter dem Icon */
	margin: 0 15px;
}
.social-links a:nth-child(1):hover .social-icon{
	fill: #1877F2; /*Facebook icon*/
	transform: translateY(-3px);
}
.social-links a:nth-child(2):hover .social-icon{
	fill: #E4405F; /*Instagram icon*/
	transform: translateY(-3px);
}
.social-links a:nth-child(3):hover .social-icon{
	fill: #FF0000; /*Youtube icon*/
	transform: translateY(-3px);
}
.social-icon {
    width: 30px;
    height: 30px;
    fill: white;
    transition: fill 0.5s ease;
}



@media (max-width: 600px) { 
    .hero-slider h1 { font-size: 2rem; } 
    .hero-slider p { font-size: 1.1rem; } 
    .nav-links { display: none; } 
}
@media screen and (max-width: 1150px) {
    .menu-toggle {
        display: flex; /* Jetzt sichtbar */
    }

    .nav-links {
        display: none; /* Standardmäßig ausblenden */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Höhe deiner Nav-Bar */
        left: 0;
        background-color: var(--primary-blue);
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex; /* Wird per JavaScript aktiviert */
    }

    .nav-links li {
        margin: 15px 0;
    }
}