/* ==========================================================================
   CSS RESET & GRUNDLAGEN
   ========================================================================== */
html {
    scroll-behavior: smooth; /* Aktiviert das weiche Scrollen bei Klicks auf Menülinks */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Glacial Indifference';
    src: url('GlacialIndifference-Regular.eot');
    src: local('Glacial Indifference Regular'), local('GlacialIndifference-Regular'),
        url('GlacialIndifference-Regular.eot?#iefix') format('embedded-opentype'),
        url('GlacialIndifference-Regular.woff2') format('woff2'),
        url('GlacialIndifference-Regular.woff') format('woff'),
        url('GlacialIndifference-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html{
    font-family: 'Glacial Indifference';
}
body {
    color: #0f172a; /* Dunkles Navy für optimale Lesbarkeit */
    background-color: #f8fafc; /* Hellgrauer Seitenhintergrund */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 1px;
    color: #0f172a;
}

/* ==========================================================================
   HEADER & NAVIGATION (#004e52 Integration)
   ========================================================================== */
header {
    background-color: #004e52; /* Die definierte Petrol-Farbe */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo a{
    text-decoration: none;
}

.logo:hover{
    cursor: pointer;
}

.logo span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #94a3b8;
    display: block;
    margin-top: -2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    opacity: 0.85;
}

nav a:hover {
    opacity: 1;
}

/* Mobiler Menü-Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* ==========================================================================
   MAIN CONTENT LAYOUT
   ========================================================================== */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    background-color: #ffffff; /* Weiße Boxen für strukturierten Text */
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

section h2 {
    font-size: 1.6rem;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid #f1f5f9;
    color: #004e52; /* Sektionsüberschriften in Akzentfarbe */
}

.stimmgruppe-container {
    margin-bottom: 35px;
}

.stimmgruppe-container h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    border-left: 3px solid #004e52;
    padding-left: 10px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.section-intro {
    font-style: italic;
    margin-bottom: 30px;
}

/* ==========================================================================
   BILDER & MEDIEN OPTIMIERUNGEN
   ========================================================================== */
.image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.main-group-img {
    max-height: 450px;
}

.img-caption {
    font-family: sans-serif;
    font-size: 0.85rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 0;
}

/* ==========================================================================
   SÄNGER RASTER (GRID)
   ========================================================================== */
.saenger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Desktop */
    gap: 20px;
}

.saenger-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.saenger-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.saenger-card p {
    text-align: center;
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 0;
    color: #0f172a;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn-container {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    background-color: #004e52; /* Petrolfarbener Button */
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #003538; /* Dunklerer Ton beim Hovern */
}

.mail-link-container a {
    color: #004e52;
    font-weight: bold;
    text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ==========================================================================
   SMARTPHONE / MOBILE OPTIMIERUNGEN (Media Query)
   ========================================================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Aktiviert den Hamburger-Button auf Mobilgeräten */
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #004e52; /* Gleiches Petrol wie das Headerbanner */
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    nav.active {
        display: block; /* Wird per JS getoggelt */
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    nav li {
        text-align: center;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Elegante, dezente Trennlinien */
    }

    main {
        padding: 15px 10px;
    }

    section {
        padding: 25px 20px; /* Kompakterer Innenabstand auf kleinen Bildschirmen */
        margin-bottom: 20px;
    }

    p {
        text-align: left; /* Liest sich auf Smartphones flüssiger als Blocksatz */
        font-size: 1.05rem;
    }

    .main-group-img {
        max-height: 250px; /* Verhindert, dass das Gruppenfoto auf kleinen Displays riesig wird */
    }

    /* Das Sänger-Raster schaltet mobil auf eine saubere, einzelne Spalte um */
    .saenger-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
/* --- Tournee Bereich (Akkordeon-Styling) --- */
.tour-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 15px;
}

.konzert-accordion {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.konzert-accordion[open] {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-color: #999; /* Akzentuierung im geöffneten Zustand */
}

/* Der klickbare Header des Menüs */
.konzert-accordion summary {
    list-style: none; /* Entfernt den Standard-Pfeil */
    cursor: pointer;
    padding: 18px 20px;
    user-select: none;
    position: relative;
}

/* Entfernt den Standard-Pfeil in Safari */
.konzert-accordion summary::-webkit-details-marker {
    display: none;
}

/* Flexbox für eine perfekt aufgeteilte Zeile */
.konzert-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 1.05rem;
    padding-right: 25px; /* Platz für den eigenen Pfeil */
}

.konzert-date {
    color: #0044cc; /* Edles Blau für das Datum */
    flex: 1;
    min-width: 120px;
}

.konzert-city {
    flex: 1;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.konzert-venue {
    flex: 2;
    min-width: 200px;
    color: #555;
    font-weight: 400;
}

/* Eleganter kleiner Custom-Indikator-Pfeil rechts */
.konzert-accordion summary::after {
    content: "➔";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    color: #999;
    font-size: 0.9rem;
}

.konzert-accordion[open] summary::after {
    transform: translateY(-50%) rotate(90deg);
    color: #0044cc;
}

/* Hover-Effekt für die Konzert-Zeile */
.konzert-accordion summary:hover {
    background-color: #f9f9f9;
}

/* Der Bereich, der beim Ausklappen erscheint */
.konzert-content {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
    line-height: 1.6;
}

.konzert-content p {
    margin: 0 0 12px 0;
}

.konzert-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Anpassung für schmale Bildschirme (Smartphones) */
@media (max-width: 600px) {
    .konzert-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .konzert-accordion summary::after {
        top: 25px; /* Anpassung der Pfeil-Position bei mehrzeiligen Boxen */
    }
}
/* --- Social Media Links in Navbar --- */
#navbar ul li.social-link {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
}

#navbar ul li.social-link a {
    color: #fff; /* Neutrale Icon-Farbe */
    display: flex;
    align-items: center;
    padding: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

#navbar ul li.social-link a:hover {
    color: #2dbcdf; /* Ändert sich zu eurem edlen Blau beim Drüberfahren */
    transform: scale(1.1); /* Minimaler Vergrößerungseffekt */
    background: none;
}

/* Anpassung für mobile Menüs */
@media (max-width: 768px) {
    #navbar ul li.social-link {
        display: inline-block;
        margin: 15px 15px 0 15px;
    }
    #navbar ul li.social-link a {
        padding: 10px;
    }
}