/* ==========================================================================
   1. GLOBALE VARIABLEN & RESET
   ========================================================================== */
:root {
    /* Farben */
    --brand-blue: rgb(73, 134, 255);
    --bg-dark: #000000dc;
    --bg-nav: #111;
    --text-light: #ffffff;

    /* Abstände (Verhindert "Magic Numbers" im Code) */
    --space-sm: 0.6rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   2. WIEDERVERWENDBARE UTILITY-KLASSEN (Helfer)
   ========================================================================== */
.text-blue {
    color: var(--brand-blue);
}

.text-center {
    text-align: center;
}

/* Flex-Zentrierung für Container */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   3. TYPOGRAFIE
   ========================================================================== */
.ueb {
    padding: var(--space-lg);
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
}

h3 {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1.2rem, 2vw + 1rem, 1.8rem);
}

p {
    /* Mindestens 1rem (16px), wächst mit dem Bildschirm, maximal 1.25rem (20px) */
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem);
    padding: var(--space-sm);
    max-width: 700px;
    /* Verhindert, dass Textzeilen auf riesigen Bildschirmen zu lang und unleserlich werden */
    margin: 0 auto;
    /* Zentriert den Textblock, falls max-width greift */
}

/* ==========================================================================
    BUTTONS (Wiederverwendbar)
   ========================================================================== */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: clamp(1rem, 0.3vw + 0.9rem, 1.15rem);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: var(--space-md) auto;
    cursor: pointer;
}

/* Die blaue Variante (passend zu Ihren Überschriften) */
.btn-primary {
    background-color: var(--brand-blue);
    color: #ffffff;
    border: 2px solid var(--brand-blue);
}

/* Hover-Effekt: Wird beim Drüberfahren elegant transparent */
.btn-primary:hover {
    background-color: transparent;
    color: var(--brand-blue);
    transform: translateY(-2px);
    /* Bewegt den Button minimal hoch */
    box-shadow: 0 5px 15px rgba(73, 134, 255, 0.3);
}

/* Aktiver Klick-Effekt */
.btn-primary:active {
    transform: translateY(0);
}

/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */
nav {
    background: var(--bg-nav);
    padding: 20px 40px;
    position: sticky;
    /* Lässt die Nav beim Scrollen kleben */
    top: 0;
    /* Fixiert sie genau am oberen Bildschirmrand */
    left: 0;
    /* Richtet sie links aus */
    width: 100%;
    z-index: 100;
    /* Garantiert, dass die Nav immer über dem Inhalt liegt */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-acoustic {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-acoustic .acoustic-text {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    display: inline-block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--text-light);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    transition: .3s;
}

/* ==========================================================================
   5. INHALTS-LAYOUT (Bilder & Sektionen)
   ========================================================================== */
main {
    max-width: 1200px;
    /* Begrenzt die Inhaltsbreite auf großen Bildschirmen */
    margin: 0 auto;
    padding: var(--space-sm);
}

/* Wiederverwendbare Klasse für responsive Inhaltsbilder */
.responsive-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: var(--space-md) auto;
    border-radius: 15px;
}

/* Spezifische Bildgrößen-Steuerung */
.logo-gross img {
    width: 30%;
}

.content img {
    width: 45%;
}

/* Das Gitarrenbild wirkt bei 45% harmonischer */

.content {
    padding: var(--space-sm);
}

/* ------------------------------------------------------------------------- */
/* Container, der Bild und Box auf dem Desktop nebeneinander anordnet */
.media-vorteile-block {
    display: flex;
    
    /* Zentriert beide Elemente vertikal zueinander */
    justify-content: center;
    /* Zentriert den gesamten Block auf der Seite */
    gap: 40px;
    /* Abstand zwischen Bild und Box */
    margin: var(--space-xl) auto;
    max-width: 1000px;
    /* Verhindert, dass sie zu weit auseinanderdriften */
    text-align: left;
    /* Setzt die Textausrichtung innerhalb des Blocks zurück */
}

/* Container für das Bild */
.media-img-wrap {
    flex: 1;
    /* Teilt den Platz gleichmäßig auf */
    max-width: 450px;
    /* Begrenzt die maximale Breite des Bildes */
}

.media-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0 auto;
}

/* Die Vorteils-Box (angepasst für das Nebeneinander-Layout) */
.vorteile-box {
    flex: 1;
    /* Teilt den Platz gleichmäßig auf */
    background: #111;
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid rgba(73, 134, 255, 0.2);
    max-width: 450px;
}

.vorteile-box h3 {
    margin-bottom: var(--space-md);
    color: var(--brand-blue);
}

.check-list {
    list-style: none;
    padding-left: var(--space-md);
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 1.2rem;
}



.anfrage-aufruf {
    margin-top: var(--space-lg);
    border-top: 1px solid #222;
    padding-top: var(--space-md);
}

/* ==========================================================================
   9. ERGÄNZUNGEN REPERTOIRE & ABSTÄNDE (Ohne HTML-Inline-Styles)
   ========================================================================== */
.repertoire-box {
    margin: var(--space-lg) auto;
    max-width: 800px;
}

.repertoire-title {
    margin-bottom: var(--space-sm);
}

.band-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.band-tag {
    background: #222;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid #333;
}

/* Hilfsklassen für Abstände zwischen Sektionen */
.section-spacing-bottom {
    margin-bottom: var(--space-xl);
}

/* Abschluss-Bereich ganz unten */
.cta-final {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.btn-large {
    font-size: 1.3rem;
    padding: 15px 40px;
}

/* ==========================================================================
   EINSATZORTE (SEO-Tags)
   ========================================================================== */
.einsatzorte {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-nav);
    /* Nutzt Ihr bestehendes dunkles Nav-Schwarz */
    border-radius: 12px;
    border: 1px solid rgba(73, 134, 255, 0.1);
}

.einsatzorte h2 {
    margin-bottom: var(--space-sm);
}

.einsatzorte p {
    color: #ccc;
    margin-bottom: var(--space-md);
}

/* Container für die Kacheln */
.orte-container {
    display: flex;
    flex-wrap: wrap;
    /* Lässt die Tags automatisch in die nächste Zeile rutschen */
    justify-content: center;
    gap: 12px;
    /* Abstand zwischen den Kacheln */
    max-width: 800px;
    margin: 0 auto;
}

/* Die einzelnen Orts-Kacheln */
.ort-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #1c1c1c;
    /* Etwas helleres Grau für Kontrast zum Hintergrund */
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

/* Subtiler Hover-Effekt für die Optik */
.ort-tag:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(73, 134, 255, 0.05);
    transform: translateY(-1px);
}

/* ==========================================================================
   footer
   ========================================================================== */
footer img {
    margin: 0 auto;
}

footer span {
    padding: 0 .5rem;
    text-align: center;

}

.icons {
    padding: 2rem 0;
    gap: 3rem;
}


.so-icon {

    color: white;
    width: 40px;
    height: 40px;
}

footer {
    background: var(--bg-nav); /* Nutzt dasselbe dunkle Schwarz wie die Navigation */
    padding: 30px var(--space-md);
    margin-top: var(--space-xl);
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
    padding: 0; /* Überschreibt das globale p-Padding */
    
    display: flex;
    justify-content: center;
}

.footer-links {
    list-style: none;
    gap: 30px;
    display: flex;
    justify-content: center;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: var(--brand-blue); /* Färbt sich beim Drüberfahren blau */
}
.so-icon a:hover {
    color: var(--brand-blue); /* Färbt sich beim Drüberfahren blau */
}


/* ==========================================================================
   LIVE-AUFTRITT
   ========================================================================== */

    /* Spezifische Anpassungen für die Live-Unterseite */
.live-intro {
    margin-bottom: var(--space-xl);
}

.check-list-live {
    
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-top: var(--space-md);
}

.check-list-live li {
    position: relative;
    padding-left: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.check-list-live li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
}

.warning-text {
    color: #ff4a4a; /* Dezentes Warn-Rot für den echten Live-Hinweis */
    font-weight: bold;
}


/* ==========================================================================
   SETLISTE (CSS Grid & Kacheln)
   ========================================================================== */
.setlist-intro {
    margin-bottom: var(--space-xl);
}

.setlist-subtitle {
    color: #ccc;
    margin-bottom: var(--space-sm);
}

/* Stilvolles optisches Highlight für die 300 Lieder */
.highlight-badge {
    display: inline-block;
    background: rgba(73, 134, 255, 0.1);
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: var(--space-sm);
}

.setlist-grid-section {
    max-width: 900px;
    margin: var(--space-xl) auto;
}

/* Automatische Spalten: Berechnet selbst, wie viele Kacheln nebeneinander passen */
.setlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

/* Die Band-Kacheln */
.setlist-item {
    background: #111;
    border: 1px solid #222;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.setlist-item:hover {
    border-color: var(--brand-blue);
    background: #161616;
}

.setlist-etc {
    margin-top: var(--space-md);
    font-size: 1.2rem;
    font-weight: bold;
    color: #888;
}

.update-notice {
    color: #888;
    margin: var(--space-xl) auto;
}
/* ==========================================================================
KONTAKTFORMULAR
   ========================================================================== */
.contact-intro {
    margin-bottom: var(--space-lg);
}

.contact-question {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: var(--space-sm);
}

.contact-whatsapp {
    margin-bottom: var(--space-xl);
}

/* Formular-Container zentrieren und begrenzen */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: #111;
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid rgba(73, 134, 255, 0.1);
}

/* Einzelne Eingabegruppen */
.form-group {
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ccc;
}

/* Eingabefelder & Textarea stylen */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Fokus-Effekt beim Reinklicken */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(73, 134, 255, 0.15);
}

/* Datenschutz-Checkbox Bereich */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: var(--space-lg) 0;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--brand-blue); /* Färbt die Checkbox blau */
}

.form-privacy label {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy label a {
    color: var(--brand-blue);
    text-decoration: none;
}

.form-privacy label a:hover {
    text-decoration: underline;
}

/* Button-Anpassung fürs Formular */
.contact-form button[type="submit"] {
    display: block;
    width: 100%; /* Macht den Button im Formular vollflächig */
    border: none;
}

/* ==========================================================================
    DANKE SEITE
   ========================================================================== */
.danke-container {
    max-width: 1000px;
    margin: var(--space-md) auto;
}

.danke-img-wrap {
    max-width: 1000px;
    margin: var(--space-md) auto;
}

.danke-signature {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: var(--space-lg);
}

/* ==========================================================================
   IMPRESSUM & RECHTLICHES
   ========================================================================== */
.impressum-section {
    margin-bottom: var(--space-xl);
}

.impressum-section h2,
.impressum-section h3 {
    color: var(--brand-blue);
    margin-bottom: var(--space-sm);
}

.impressum-brand {
    font-size: 1.2rem;
    color: var(--brand-blue);
}

/* Links im Text farblich hervorheben */
.impressum-section a {
    color: var(--brand-blue);
    text-decoration: none;
}

.impressum-section a:hover {
    text-decoration: underline;
}

/* Macht längere Rechtstexte auf dem Desktop zum edlen Block, auf Handys zentriert */
.text-justify-center {
    max-width: 750px;
    margin: 0 auto var(--space-xl);
    text-align: justify;
    text-justify: inter-word;
}

/* ==========================================================================
   Datenschutz
   ========================================================================== */

   .datenschutz p {
    padding: 0;
   }

   .datenschutz h4, .datenschutz h2, .datenschutz li {
    max-width: 700px;
    margin: 0 auto;
   }


/* ==========================================================================
   Whats App
   ========================================================================== */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    
}

/* ==========================================================================
    call-Button
========================================================================== */

.call-button-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;                  /* Weniger Abstand zum Text */
  background-color: #25D366;
  color: #ffffff;
  padding: 8px 16px;         /* Verkleinerte Innenabstände */
  font-size: 16px;           /* Kleinere Schrift */
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;        /* Leicht reduzierter Radius */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.phone-icon-small {
  width: 25px;               /* Verkleinertes Icon */
  height: 25px;
}

.call-button-small:hover {
  background-color: #128C7E;
  transform: translateY(-1px);
}

.call-button-small:active {
  transform: translateY(0);
}




/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 850px) {
    .burger {
        display: flex;
    }

.nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 70%;
        height: 100vh;
        background: var(--bg-nav);
        flex-direction: column;
        gap: 30px;
        padding: 20px 0 20px 3rem;
        z-index: 10;
        
        /* Startposition: Unsichtbar links außerhalb des Bildschirms */
        transform: translateX(-100%); 
        /* 0.3 Sekunden weiche Verzögerung für den Slide-Effekt */
        transition: transform 0.3s ease-in-out; 
    }

    /* Schiebt das Menü bei Aktivierung sanft auf den Bildschirm */
    .nav-links.active {
        display: flex; /* Überschreibt das standardmäßige Flex-Verhalten */
        transform: translateX(0);
    }

    /* Bilder passen sich auf Handys automatisch an */
    .logo-gross img {
        width: 65%;
    }

    .content img {
        width: 90%;
    }


    /* Bricht das Nebeneinander-Layout auf Handys auf */
    .media-vorteile-block {
        flex-direction: column;
        /* Stapelt Bild und Box untereinander */
        gap: 20px;
        /* Verringert den Abstand auf Mobilgeräten */
        padding: 0 var(--space-md);
    }

    .media-img-wrap,
    .vorteile-box {
        max-width: 100%;
        /* Nutzt auf dem Handy die volle Breite */
        width: 100%;
        margin: 0 auto;
    }
/* impressum */
    .text-justify-center {
        text-align: center;
    }
}