﻿html {
    /* make sure we use up the whole viewport */
    /*min-height: 100vh;*/
    scroll-behavior: smooth;
    /* color-scheme wird vom Theme-System in root.css gesetzt */
}

* {
    /* personal preference */
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}




/* CTA-Button: ueberschreibt .btn-success per Bootstrap-Button-Variablen */
.btn-subwork {
    --bs-btn-color: var(--accent-contrast);
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-color: var(--accent-contrast);
    --bs-btn-hover-bg: var(--accent-hover);
    --bs-btn-hover-border-color: var(--accent-hover);
    --bs-btn-active-color: var(--accent-contrast);
    --bs-btn-active-bg: var(--accent-hover);
    --bs-btn-active-border-color: var(--accent-hover);
    padding: 10px 22px;
    font-size: 1.15rem;
    border-radius: 999px;
    min-width: 220px;
}

.btn-subwork .nav-link,
.btn-subwork .nav-link:hover,
.btn-subwork .nav-link:focus {
    color: var(--accent-contrast);
}

/* Sekundaerer (transparenter) Button, z. B. im Hero ueber dem Video */
.btn-ghost {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: hsla(0 0% 100% / 0.45);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: hsla(0 0% 100% / 0.14);
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: hsla(0 0% 100% / 0.20);
    --bs-btn-active-border-color: #ffffff;
    padding: 10px 22px;
    font-size: 1.15rem;
    border-radius: 999px;
}

/* Sekundaerer Button auf Karten (heller/dunkler bg-body): umrandet in Akzentfarbe,
   fuellt sich beim Hover. Abgrenzung zu .btn-subwork (gefuellt) fuer Aktionen, die
   NICHT direkt zum Kontakt fuehren (z. B. Navigation zu Unterseiten). Theme-sicher. */
.btn-subwork-outline {
    --bs-btn-color: var(--accent);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-color: var(--accent-contrast);
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: var(--accent);
    --bs-btn-active-color: var(--accent-contrast);
    --bs-btn-active-bg: var(--accent-hover);
    --bs-btn-active-border-color: var(--accent-hover);
    padding: 10px 22px;
    font-size: 1.15rem;
    border-radius: 999px;
}

#allContent {
    width: 100%;
    /* body ist ein Grid: ohne min-width:0 waechst das Grid-Item auf die
       Max-Content-Breite seiner Inhalte (z. B. Review-Laufband) */
    min-width: 0;
    max-width: 100vw;
    overflow-x: clip;
    padding: 0;
    background-color: var(--bg-all-content);
}

#pageMain {
    min-height: 60vh;
}

/* Sektionen laufen ueber die volle Breite (Hintergrund-Baender),
   der Inhalt darin wird zentriert und in der Breite begrenzt. */
.section-container > * {
    max-width: var(--content-max-width);
    margin-inline: auto;
}

#contentContainer {
    background-color: var(--bg-body-container);
    justify-items: center;
    justify-content: center;
    /*height: 100Vh;*/
    /*width: 100%;
    max-width: var(--body-container-max-width);*/
    
}


body {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    line-height:1.5;

    /*min-height: 100vh;*/
    
    border: 0;
    padding: 0;

    display: grid;
    grid-template-rows: min-content 1fr;
    overflow-x: hidden;

    /*z-index: -100;*/

    /* Background specific (Fullsize image) */
    /* background-image: url('background.jpg');
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover; */
 }

.topSpacer{
    margin-top:100px;

}

.DirectLinkSpacer {
    margin-top: 20px;
}



.image-overlay {
    border-image: linear-gradient(hsl(240 100% 50% / .3), hsl(0 100% 50% /.3)) fill 1; 
}


 /* This is to center a image in the container where it's placed */
 .image-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-width: 100%;
    /*min-height: 100%;*/
}



/* Consent-Banner unten am Bildschirm anzeigen – kompakt, im Sichtfeld.
   Frueher war er oben verankert (top:160px); zusammen mit dem bottom:0 der
   Klaro-Basis streckte das den fixierten Banner ueber die GANZE Hoehe und
   verdeckte auf Mobil fast die ganze Seite. */
.klaro .cookie-notice:not(.cookie-modal-notice) {
    top: auto !important;
}

/* Mobil/Tablet: kompakte Leiste am unteren Rand; bei langem Text scrollt der
   Banner intern, statt die Seite zu verdecken. */
@media (max-width: 1023px) {
    .klaro .cookie-notice:not(.cookie-modal-notice) {
        bottom: 0 !important;
        max-height: 85vh;
        overflow-y: auto;
    }
}


/* ============================================================
   HERO – Discokugel-Video als Vollbild-Hintergrund,
   davor Badge, Schriftzug, H1 und Call-to-Actions.
   Der Hero bleibt in beiden Themes dunkel (Video ist dunkel).
   ============================================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: clamp(440px, 68vh, 760px);
    background-color: #0d0a12;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 1.1rem;
    max-width: 880px;
    padding: 110px 20px 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 1.1rem;
    border-radius: 999px;
    background-color: hsla(0 0% 100% / 0.12);
    border: 1px solid hsla(0 0% 100% / 0.25);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(6px);
}

.hero-logo {
    width: min(520px, 86%);
    height: auto;
}

.hero-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.6vw, 2.1rem);
    font-weight: 500;
    line-height: 1.35;
    text-wrap: balance;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    margin-top: .4rem;
}

/* Trust-Badge unter den CTAs: "5.0 * 12 Google-Bewertungen" */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .5rem;
    color: hsla(0 0% 100% / 0.85);
    font-size: 1rem;
    text-decoration: none;
}

.hero-trust:hover {
    color: #ffffff;
}

.hero-trust .bi-star-fill {
    color: #fbbc05; /* Google-Gold */
}

/* Scroll-Indikator am unteren Hero-Rand */
.hero-scroll {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: hsla(0 0% 100% / 0.7);
    font-size: 1.6rem;
    line-height: 1;
    text-decoration: none;
}

.hero-scroll:hover {
    color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-scroll {
        animation: hero-bounce 2.2s ease-in-out infinite;
    }

    @keyframes hero-bounce {
        0%, 100% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, 8px); }
    }
}

/* Scroll-Reveal: Sektionen blenden beim Scrollen sanft ein.
   Die Klassen vergibt assets/js/scroll-fx.js – ohne JS bleibt alles sichtbar. */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: none;
}


/* MEDIA QUERIES  */

@media  only screen and (min-width: 280px) and (max-width: 767px)  {
    
    html { font-size: 80%; }

    #karaoke-vendor-image {
        margin-right: 0px;
    }

    .section-container {
        padding: 30px;
    }

}
  
@media  only screen and  (min-width: 768px) and (max-width: 991px) {
    html { font-size: 90%; }
    #karaoke-vendor-image {
        margin-right: 0px;
    }

    .section-container {
        padding: 45px;
    }


}
  
@media  only screen and  (min-width: 992px) and (max-width: 1024px) {
    html { font-size: 100%; }
    #karaoke-vendor-image {
        margin-right: 30px;
    }

    .section-container {
        padding: 60px;
    }

}
  
@media  only screen and  (min-width: 1025px) {
    html { font-size: 100%; }
    #karaoke-vendor-image {
        margin-right: 40px;
    }
    .section-container {
        padding: 85px;
    }

}
    
@media  only screen and  (min-width: 1824px){
    html { font-size: 100%; }
    #karaoke-vendor-image {
        margin-right: 50px;
    }

    .section-container {
        padding: 85px;
    }

}



.image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--logo-img-bg);
}


.left-image img,
.right-image img {
    z-index: 1;
    border-radius: var( --border-radius-default);
}

/* Illustrationen (transparente PNGs mit dunklen Konturen, fuer hellen
   Hintergrund gezeichnet): kreisrunde Unterlage, fuer alle Bilder gleich
   gross (--figure-size). Farbe je Theme via --figure-bg. */
img.figureimage {
    width: var(--figure-size);
    height: var(--figure-size);
    max-width: none;
    object-fit: contain;
    background-color: var(--figure-bg);
    border-radius: 50%;
    padding: 20px;
}


.swissFlag {
    width: 16px;
    aspect-ratio: 1;
    margin-top: -2px;
}

.noto-music-regular {
    font-family: "Noto Music", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.notecharacter {
    color: var(--section-headlinetext);
    font-size: 1.6rem;
    font-weight: 400;
    margin-right: 10px;
}

.footerInfotextsmaller {
    font-size: smaller;
    color: var(--sidemenu-bg);
}


/* ============================================================
   Conversion: WhatsApp-Chat-Widget (auf allen Seiten, unten links).
   Trigger = runder Button; Klick oeffnet ein Chat-Popup, dessen CTA
   WhatsApp mit vorausgefuellter Nachricht oeffnet. Steuerung:
   assets/js/wa-widget.js. z-index unter dem Klaro-Consent-Banner
   (notice=999/modal=1000), damit der OK-Button nie verdeckt wird.
   ============================================================ */
.wa-chat {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 998;
}

/* Runder Trigger-Button (WhatsApp-Gruen) */
.wa-chat__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    font-size: 2.1rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px hsla(0 0% 0% / 0.32);
    transition: transform .15s ease, box-shadow .15s ease;
}

.wa-chat__toggle:hover,
.wa-chat__toggle:focus-visible {
    transform: scale(1.08);
    box-shadow: 0 6px 20px hsla(0 0% 0% / 0.42);
}

/* Chat-Popup ueber dem Button */
.wa-chat__panel {
    position: absolute;
    bottom: calc(64px + 14px);
    left: 0;
    width: 320px;
    max-width: calc(100vw - 28px);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--surface-1);
    color: var(--text-default);
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px hsla(258 35% 4% / 0.45);
}

.wa-chat--open .wa-chat__panel {
    display: flex;
    animation: wa-pop .18s ease-out;
}

@keyframes wa-pop {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Header (WhatsApp-Dunkelgruen) */
.wa-chat__header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1rem;
    background-color: #075e54;
    color: #ffffff;
}

.wa-chat__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: hsla(0 0% 100% / 0.18);
    font-size: 1.3rem;
}

.wa-chat__head-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    line-height: 1.2;
}

.wa-chat__status {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    opacity: .9;
}

.wa-chat__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4ade80;
}

.wa-chat__close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: .85;
    padding: 0 .1rem;
}

.wa-chat__close:hover { opacity: 1; }

/* Nachrichten-Bereich + Begruessungs-Bubble */
.wa-chat__body {
    padding: 1rem;
    background-color: var(--surface-0);
}

.wa-chat__bubble {
    padding: .7rem .9rem;
    border-radius: 4px 14px 14px 14px;
    background-color: var(--surface-2);
    color: var(--text-default);
    font-size: .95rem;
    box-shadow: 0 1px 2px hsla(0 0% 0% / 0.15);
}

/* CTA -> oeffnet WhatsApp mit vorausgefuellter Nachricht */
.wa-chat__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin: 0 1rem 1rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .15s ease;
}

.wa-chat__cta:hover,
.wa-chat__cta:focus {
    background-color: #1ebe5a;
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .wa-chat { left: 14px; bottom: 14px; }
    .wa-chat__toggle { width: 60px; height: 60px; font-size: 1.9rem; }
    .wa-chat__panel { bottom: calc(60px + 12px); }
}

@media (prefers-reduced-motion: reduce) {
    .wa-chat__toggle { transition: none; }
    .wa-chat__toggle:hover,
    .wa-chat__toggle:focus-visible { transform: none; }
    .wa-chat--open .wa-chat__panel { animation: none; }
}

/* Click-to-call-Icon in der Navbar: erbt nav-link-Farbe (theme-aware) */
#call-button {
    display: inline-flex;
    align-items: center;
}

#call-button .bi {
    font-size: 1.25rem;
}


/* ============================================================
   Preisrechner (PriceCalculator). Live-Berechnung per
   assets/js/price-calc.js, Werte aus der IPricing-Resx.
   ============================================================ */
.price-calc {
    text-align: center;
}

.price-calc__label {
    display: block;
    margin: 1.1rem 0 .5rem;
    font-size: 1.1rem;
}

.price-calc__range {
    width: 100%;
    max-width: 420px;
    accent-color: var(--accent);
    cursor: pointer;
}

.price-calc__result {
    margin-top: 1.3rem;
    font-size: 1.15rem;
}

.price-calc__price {
    display: inline-block;
    margin-left: .3rem;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
}

.price-calc__note {
    margin-top: .5rem;
    font-size: .9rem;
    color: var(--text-muted);
}

.price-calc__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    justify-content: center;
    margin-top: 1.3rem;
}

/* WhatsApp-Button (gruen) – ueber Bootstrap-Button-Variablen, themeneutral */
.btn-whatsapp {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #25d366;
    --bs-btn-border-color: #25d366;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #1ebe5a;
    --bs-btn-hover-border-color: #1ebe5a;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #1ebe5a;
    --bs-btn-active-border-color: #1ebe5a;
    padding: 10px 22px;
    border-radius: 999px;
}


/* ============================================================
   Verfuegbarkeits-Check (AvailabilityCheck). Logik: availability.js
   ============================================================ */
.avail-check {
    text-align: center;
}

.avail-check__label {
    display: block;
    margin: 1.1rem 0 .5rem;
    font-size: 1.1rem;
}

.avail-check__input {
    padding: .6rem .9rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    background-color: var(--surface-2);
    color: var(--text-default);
    font-size: 1.05rem;
    accent-color: var(--accent);
}

.avail-check__note {
    margin-top: .6rem;
    font-size: .9rem;
    color: var(--text-muted);
}


/* Honeypot – fuer Menschen unsichtbar, nur Bots fuellen es aus (Spamschutz statt reCaptcha) */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}


/* ============================================================
   Mini-Kontaktformular (QuickContactForm) – echter Versand
   ============================================================ */
.quick-form {
    text-align: center;
}

.quick-form__intro {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.quick-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
}

.quick-form__row .form-control {
    flex: 1 1 200px;
    max-width: 280px;
    background-color: var(--surface-1);
    border: 1px solid var(--line);
    color: var(--text-default);
}

.quick-form__error {
    margin-top: .7rem;
}

.quick-form__btn {
    margin-top: 1.1rem;
}