/* ============================================================
   TEAMMICHAEL.DE — Same-to-Same Layout & Dimensions
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ---- Embedded Fonts ---- */
@font-face {
    font-family: 'Bebas Neue';
    src: url("../fonts/BebasNeue-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Kabeltouw';
    src: url("../fonts/CoFoKabeltouw-VF-Trial.ttf") format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Kabeltouw Solid';
    src: url("../fonts/CoFoKabeltouw-Solid0-Trial.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Kabeltouw Stencil 20';
    src: url("../fonts/CoFoKabeltouw-Stencil20-Trial.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Kabeltouw Stencil 38';
    src: url("../fonts/CoFoKabeltouw-Stencil38-Trial.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Kabeltouw Stencil 56';
    src: url("../fonts/CoFoKabeltouw-Stencil56-Trial.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kabeltouw Stencil 20';
    src: url("../fonts/CoFoKabeltouw-Stencil20-Trial.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kabel Fedor';
    src: url("../fonts/CoFoKabeltouw-Stencil20-Trial.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --cts-bg: #000000;
    --cts-accent: #FFAF00; /* Original gold/amber accent */
    --cts-border: rgba(255, 255, 255, 0.08);
    --cts-text-muted: rgba(255, 255, 255, 0.7);
    --cts-purple: #6500FF;
    --cts-danger: #cf2e2e;
}

/* Force Dark Theme & Base Font */
body.home {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    background-color: var(--cts-bg) !important;
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#eventmie_app {
    background-color: var(--cts-bg) !important;
}

.db-wrapper {
    background-color: var(--cts-bg) !important;
    padding: 0 !important;
}

body.home .container {
    max-width: 1140px !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Hide Default Navbar and Footer on Home Page */
#navbar_vue,
.footer,
.site-footer {
    display: none !important;
}

/* ---- Custom Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-weight: normal;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.lato-font, .roboto-font {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
}

/* ---- Brand Header (Navbar) ---- */
.cts-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent !important;
    padding: 0 !important;
    min-height: 10vh;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none !important;
}

.cts-nav.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
}

.cts-nav.scrolled-past-slider {
    background: #000000 !important;
}

.cts-nav-container {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 3% !important;
    padding-right: 3% !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    box-sizing: border-box !important;
}

.cts-brand {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 3em !important;
    letter-spacing: 0.04em;
    color: #ffffff !important;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    font-weight: 400 !important;
    transition: color 0.2s ease;
}

.cts-brand:hover {
    color: var(--cts-accent) !important;
}

.cts-menu-link {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    color: #ffffff !important;
    letter-spacing: 0.06em;
    padding: 0 !important;
    margin: 0 15px !important;
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 1.8em !important;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.cts-menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #030303;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.cts-menu-link:hover {
    color: var(--cts-accent) !important;
}

.cts-menu-link:hover::after {
    background-color: var(--cts-accent);
    transform: scaleX(1);
}

.cts-header-socials {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-left: 40px;
}

.cts-header-socials a {
    color: var(--cts-accent) !important;
    font-size: 35px !important;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cts-header-socials a:hover {
    color: #ffffff !important;
}

/* Custom Navigation Toggler and Collapse classes */
.cts-burger-btn {
    display: none !important; /* hidden on desktop (> 1024px) */
    font-size: 28px !important;
    color: #ffffff !important;
    background: transparent !important;
    cursor: pointer;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    z-index: 1100;
    transition: color 0.2s ease;
}

.cts-burger-btn:hover {
    color: var(--cts-accent) !important;
}

.cts-burger-btn .burger-icon-close {
    display: none;
}

.cts-burger-btn.open .burger-icon-open {
    display: none;
}

.cts-burger-btn.open .burger-icon-close {
    display: block !important;
}

.cts-nav-collapse {
    display: flex !important;
    flex-grow: 1;
}

.cts-nav-collapse .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
    .cts-burger-btn {
        display: block !important; /* show burger button */
    }

    .cts-nav-collapse {
        display: none !important; /* hide collapse menu by default */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #F2EFEC !important;
        border-bottom: 1px solid #000000;
        border-top: none;
        z-index: 1000;
        padding: 0 !important;
    }

    .cts-nav-collapse.show {
        display: block !important; /* show collapse menu when clicked */
    }

    .cts-nav-collapse .navbar-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: stretch !important;
        margin-left: 0;
    }

    .cts-menu-link {
        color: #000000 !important;
        font-size: 1.8em !important;
        padding: 20px 0 !important;
        margin: 0 !important;
        text-align: center;
        border-bottom: 1px solid #000000;
        width: 100%;
        display: block;
    }

    .cts-menu-link:last-child {
        border-bottom: none;
    }

    .cts-menu-link:hover {
        color: #000000 !important;
        background-color: #e5e2df;
    }

    .cts-menu-link::after {
        display: none;
    }
}

/* Specific alignments for tablet only (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .cts-nav-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .cts-brand {
        order: 1;
    }
    .cts-header-socials {
        order: 2;
        margin-left: auto !important;
    }
    .cts-burger-btn {
        order: 3;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: 20px !important;
    }
}

/* Mobile view (max-width: 767px) */
@media (max-width: 767px) {
    .cts-nav {
        min-height: initial;
    }

    .cts-nav-container {
        flex-direction: column !important;
        justify-content: center !important;
        padding-bottom: 15px !important;
        gap: 15px !important;
    }

    .cts-brand {
        display: block !important;
        white-space: normal !important;
        font-size: 3.5em !important;
        text-align: center;
        width: 100%;
        max-width: 280px !important;
        margin: 0 auto !important;
        order: 1;
        line-height: 1.1 !important;
    }

    .cts-header-socials {
        margin-left: 0 !important;
        justify-content: center;
        gap: 25px !important;
        width: 100%;
        order: 3;
    }

    .cts-header-socials a {
        font-size: 45px !important;
    }

    .cts-burger-btn {
        order: 2;
        position: absolute !important;
        right: 3% !important;
        top: 43px !important; /* aligned vertically with centered logo's first line */
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }
}

/* ---- Video Spotlight Hero ---- */
.cts-hero {
    position: relative;
    min-height: 100vh;
    background: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 ratio */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.9; /* Bright and fully colored video */
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero-stage-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

/* ---- Hero Split Layout & Spacing ---- */
.hero-container-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh;
    padding-top: 30px !important;
    z-index: 10;
    position: relative;
    padding-inline: 0 !important;
}

@media (max-width: 767px) {
    .hero-container-inner {
        display: block !important;
        min-height: initial !important;
        padding-top: 180px !important; /* push text down below the stacked mobile header */
    }
}

.hero-text-col {
    text-align: left !important;
}

@media (max-width: 767px) {
    .hero-text-col {
        text-align: center !important;
    }
}

.hero-title {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2.9em !important;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-title a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero-desc {
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    color: #E2E2E2 !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
}

.hero-desc a {
    color: var(--cts-accent) !important;
    text-decoration: none !important;
}

.hero-desc a:hover {
    color: #ffffff !important;
}

.hero-btn-wrap {
    margin-top: 20px !important;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.9em !important;
        text-align: center !important;
    }
    .hero-desc {
        font-size: 0.9em !important;
        font-weight: 600 !important;
        margin-bottom: 20px !important;
    }
    .hero-btn-wrap {
        display: flex;
        justify-content: center;
        margin-top: 20px !important;
    }
    .section-headline {
        font-size: 3.5em !important;
    }
    .contact-section h2 {
        font-size: 3.5em !important;
    }
}

.btn-cta-gold {
    background-color: #FFAF00 !important;
    color: #FFFFFF !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.1em !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    padding: 10px 20px !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none;
    border: none !important;
    box-shadow: none !important;
    margin-top: 25px !important;
}

.btn-cta-gold:hover {
    background-color: #FFAF00 !important;
    color: #5C5885 !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Desktop and Mobile background video display filters */
.hero-video-desktop {
    display: block;
}
.hero-video-mobile {
    display: none;
}

@media (max-width: 767px) {
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
    .cts-hero {
        min-height: 75vh;
    }
    .hero-video-container {
        min-height: 75vh;
        min-width: 133.33vh;
    }
}

/* ---- Reviews Section & Slider ---- */
.review-section {
    background: #000000;
    padding: 0 !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5) inset;
}

.review-slider-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.review-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.review-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-card-item {
    flex: 0 0 33.333333%;
    padding: 0 10px; /* 10px left/right padding yields exactly the 20px spacing gap of teammichael.de */
    box-sizing: border-box;
}

.review-card-img-wrap {
    background: #000000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 !important; /* Flat screenshot images, no rounded corners */
    border: none !important; /* Borderless, blends seamlessly with background */
    transition: none !important;
}

.review-card-img-wrap:hover {
    transform: none !important;
}

.review-card-img-wrap img {
    width: 100%;
    height: 110px !important;
    object-fit: cover !important;
    /* object-fit: contain; */
    display: block;
}

/* Navigation Buttons - Simple white chevrons overlaying the sides like the original Swiper buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    color: #dfdada !important;
    font-size: 25px !important;
    width: 50px !important;
    height: 50px !important;
    cursor: pointer;
    z-index: 9999 !important;
    transition: opacity 0.2s ease, color 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.8 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.slider-nav-btn:hover {
    opacity: 1 !important;
    color: #ffffff !important;
    background: transparent !important;
    transform: translateY(-50%) !important;
}

.prev-btn {
    left: 20px !important; /* Placed exactly inside, overlaying the first card */
}

.next-btn {
    right: 20px !important; /* Placed exactly inside, overlaying the last card */
}

/* Responsiveness for Slider Cards */
@media (max-width: 991px) {
    .review-card-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .review-card-item {
        flex: 0 0 100%;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .prev-btn { left: 15px !important; }
    .next-btn { right: 15px !important; }
}

/* ---- Show Dates Tour Table ---- */
.tour-section {
    background: #000000;
    padding: 40px 10px !important;
}

.section-headline {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2.6em !important;
    font-weight: normal;
    letter-spacing: 0.03em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 auto 10px auto;
    text-align: center;
}

.tour-intro-desc {
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.7);
}

.tour-intro-desc a {
    color: #ffae00e5 !important;
    text-decoration: underline;
}

.tour-intro-desc a:hover {
    color: #ffffff;
}

.tour-faq-link {
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    color: #ffae00e5 !important;
}

.tour-faq-link:hover {
    color: #ffffff;
}

.tour-filter-wrapper {
    margin-bottom: 30px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-top: 2.5rem !important;
}

.tour-custom-dropdown {
    position: relative !important;
    width: 100% !important;
    max-width: 332px !important;
    background-color: #FFFFFF !important;
    color: #000000 !important;
    font-family: sans-serif !important;
    border: 2px solid #000000 !important;
    border-radius: 4px !important;
    user-select: none !important;
    display: block !important;
    z-index: 999 !important;
}

.tour-dropdown-trigger {
    padding: 10px 40px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #000000 !important;
    background-color: #FFFFFF !important;
    position: relative !important;
    text-align: center !important;
}

.tour-dropdown-trigger .arrow {
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 7px solid #000000 !important;
    display: inline-block !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.tour-custom-dropdown.open .tour-dropdown-trigger .arrow {
    transform: rotate(180deg) !important;
}

.tour-dropdown-options {
    position: absolute !important;
    top: 100% !important;
    left: -2px !important;
    right: -2px !important;
    background-color: #FFFFFF !important;
    border: 2px solid #000000 !important;
    border-top: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    display: none !important;
    border-radius: 0 0 4px 4px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    z-index: 99999 !important;
}

.tour-custom-dropdown.open .tour-dropdown-options {
    display: block !important;
}

.tour-dropdown-option {
    padding: 10px 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    color: #000000 !important;
    background-color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: none !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.tour-dropdown-option[data-value="all"] {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    border-bottom: 1px solid #EEEEEE !important;
}

.tour-dropdown-option img {
    width: 20px !important;
    height: auto !important;
    display: inline-block !important;
}

.tour-dropdown-trigger img {
    width: 20px !important;
    height: auto !important;
    display: inline-block !important;
    margin-right: 10px !important;
}

.tour-dropdown-option:hover {
    background-color: #EEEEEE !important;
}

.tour-dropdown-option.active {
    background-color: #0066FF !important;
    color: #FFFFFF !important;
}

.tour-sold-out-toggle {
    display: inline-block !important;
    padding: 10px 25px !important;
    background: transparent !important;
    border: 1px solid #FFFFFF !important;
    color: #FFAF00 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-family: "Roboto", Sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.tour-sold-out-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.tour-sold-out-toggle.active {
    background:  #FFAF00 !important;
    color: #000000 !important;
    border-color: #FFAF00 !important;
}

.tour-schedule-wrapper {
    width: 100% !important;
    background-color: #000000 !important;
    box-sizing: border-box !important;
}

.tour-table {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: auto !important;
}

.tour-table-row {
    background-color: #000000 !important;
    border-bottom: 3px solid #FFAF00 !important;
    transition: background-color 0.3s ease !important;
}

.tour-table-row:hover {
    background-color: #6500FF !important;
}

.tour-table-cell {
    vertical-align: middle !important;
    padding: 15px 10px !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.tour-date {
    width: 230px !important;
}

.tour-date span {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    display: block !important;
    margin: 0 !important;
}

.tour-location {
    /* Flexible */
}

.tour-location-main {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    display: block !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.tour-location-subtitle {
    font-family: sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #C0C0C0 !important;
    display: block !important;
    margin-top: 4px !important;
}

.tour-title {
    text-align: center !important;
}

.tour-title span {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 40px !important;
    font-weight: normal !important;
    color: var(--cts-accent) !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    display: block !important;
    margin: 0 !important;
    position: relative;
    left: -80px;
}

.tour-action {
    width: 220px !important;
    text-align: right !important;
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.tour-btn {
    display: inline-block !important;
    text-decoration: none !important;
    text-align: center !important;
    border-radius: 4px !important;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease !important;
    cursor: pointer !important;
    border: none !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    padding: 8px 15px !important;
    min-width: 140px !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.tour-btn:hover {
    transform: translateY(-2px) !important;
    opacity: 0.9 !important;
}

.tour-upcoming-headline {
    font-family: "Roboto", Sans-serif !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.btn-sold-out {
    background-color: #FF0000 !important;
    color: #FFFFFF !important;
}

.btn-sold-out:hover {
    background-color: #FF0000 !important;
    color: #FFFFFF !important;
}

.btn-tickets {
    background-color: #FFAF00 !important;
    color: #000000 !important;
}

.btn-tickets:hover {
    background-color: #FFAF00 !important;
    color: #FFFFFF !important;
}

.btn-custom {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 0 15px !important;
    margin: 0 !important;
    background-color: transparent !important;
    color: #FFAF00 !important;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease !important;
}

.btn-custom:hover {
    background-color: transparent !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .tour-table,
    .tour-table tbody {
        display: block !important;
        width: 100% !important;
    }

    .tour-table-row {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px 0 !important;
    }

    .tour-table-row .tour-table-cell {
        text-align: center !important;
        margin: 0 !important;
        padding: 5px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .tour-table-row .tour-date {
        order: 1 !important;
        width: auto !important;
        flex: 0 1 auto !important;
        display: block !important;
        padding-right: 5px !important;
        opacity: 0.7;
    }

    .tour-table-row .tour-date span {
        font-size: 24px !important;
    }

    .tour-table-row .tour-location {
        order: 2 !important;
        width: auto !important;
        flex: 0 1 auto !important;
        display: block !important;
        padding-left: 5px !important;
    }

    .tour-table-row .tour-location-main {
        font-size: 24px !important;
    }

    .tour-table-row .tour-title {
        order: 3 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        display: block !important;
        text-align: center !important;
    }

    .tour-table-row .tour-title span {
        font-size: 32px !important;
        margin-top: 5px !important;
        margin-bottom: 10px !important;
        left: 0 !important;
    }

    .tour-table-row .tour-action {
        order: 4 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        display: flex !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .tour-btn {
        display: inline-block !important;
        flex: 0 1 auto !important;
        font-size: 16px !important;
        padding: 8px 16px !important;
        min-width: 120px !important;
    }
}

/* ---- Teaser YouTube Section ---- */
.teaser-section {
    background-color: #000000;
    padding: 100px 0 25px 0 !important;
}

.video-responsive-wrap {
    max-width: 100% !important;
    margin: 0 auto;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0px !important;
    overflow: hidden;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio-16x9 {
    aspect-ratio: 16 / 9;
}

.ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---- Comedian About Section ---- */
.about-section {
    background-color: #000000;
    padding: 45px 10px 15px 10px !important;
}

.about-headline {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 21px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin-bottom: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-text-p {
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.95rem;
}

.btn-about-more {
    display: inline-block !important;
    margin-top: 15px !important;
    padding: 8px 16px !important;
    background-color: #FFAF00 !important;
    color: #ffffff !important;
    border: 2px solid #FFAF00 !important;
    border-radius: 3px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 1.1em !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important;
    cursor: pointer !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;
}

.btn-about-more:hover {
    background-color: #FFAF00 !important;
    color: #5C5885 !important;
}

.about-shorts-grid {
    margin-top: 10px !important;
}

.short-embed-card {
    background: transparent;
    border: none;
    box-shadow: none;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
}

.short-embed-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ---- Contact / Booking Block ---- */
.contact-section {
    background-color: #000000;
    padding: 35px 15px 15px 15px !important;
}

.contact-section h2 {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2.6em !important;
    font-weight: normal !important;
    color: #ffffff;
    margin-bottom: 22px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 767px) {
    .contact-section h2 {
        text-align: center !important;
    }
}

.contact-section p {
    font-family: 'Lato', sans-serif !important;
    /* font-size: 1.05rem; */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-section p a {
    color: var(--cts-accent) !important;
}

.contact-section form {
    padding-top: 78px !important;
    margin-bottom: 40px !important;
}

.contact-section form label {
    font-family: 'Lato', sans-serif !important;
    font-weight: normal !important;
    font-size: 1rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    display: block;
    color: #ffffff;
}

.contact-section form input[type="text"],
.contact-section form input[type="email"],
.contact-section form textarea {
    background-color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #000000 !important;
    border: 1px solid #cccccc !important;
    border-radius: 3px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.25s ease;
    margin-bottom: 3px !important;
    height: 40px !important;
    padding: 7px 15px !important;
    width: 100%;
    display: block;
    box-sizing: border-box !important;
}

.contact-section form textarea {
    min-height: 50px;
    resize: none;
    height: auto !important;
}

.contact-section form input[type="text"]:focus,
.contact-section form input[type="email"]:focus,
.contact-section form textarea:focus {
    border-color: #ffffff !important;
    box-shadow: none !important;
    outline: 2px solid #ffffff !important;
    outline-offset: -2px !important;
}

.contact-section form button[type="submit"] {
    background-color: var(--cts-accent) !important;
    border: none !important;
    color: #ffffff !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: bold !important;
    font-size: 1.1em !important;
    text-transform: uppercase !important;
    padding: 8px 16px !important;
    border-radius: 3px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px !important;
}

.contact-section form button[type="submit"]:hover {
    color: #5C5885 !important;
}

/* ---- Sleek Low-Opacity Footer ---- */
.cts-footer {
    background-color: #000000;
    padding: 30px 0px !important;
    border-top: 1px dotted #FFAF00 !important;
}

.cts-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cts-footer-copy {
    font-size: 13px !important;
    font-weight: 300 !important;
    color: #54595f !important;
    margin: 0;
}

.cts-footer-copy a {
    color: #54595f !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.cts-footer-copy a:hover {
    color: #ffffff !important;
}

.cts-footer-social {
    display: flex;
    gap: 20px !important;
}

.cts-footer-social a {
    color: rgba(84, 89, 95, 0.73) !important;
    font-size: 14px !important;
    transition: color 0.2s ease;
    text-decoration: none;
}

.cts-footer-social a:hover {
    color: #FFAF00 !important;
}

/* ---- Tablet Responsiveness Spacing (max-width: 1024px) ---- */
@media (max-width: 1024px) {
    .tour-section {
        padding: 20px 15px !important;
    }
    .about-section {
        padding: 15px 15px !important;
    }
    .contact-section {
        padding: 15px 15px !important;
    }
    .cts-footer {
        padding: 30px 20px !important;
    }
}

/* ---- Mobile Responsiveness Spacing (max-width: 767px) ---- */
@media (max-width: 767px) {
    .cts-brand {
        font-size: 3.5em !important;
    }
    .tour-section {
        padding: 20px 10px !important;
    }
    .about-section {
        padding: 45px 10px 15px 10px !important;
    }
    .contact-section {
        padding: 35px 15px 15px 15px !important;
    }
    .cts-footer {
        padding: 25px 20px !important;
    }
    .cts-footer-content {
        flex-direction: column-reverse !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .cts-footer-copy {
        line-height: 19px !important;
    }
    .cts-footer-social a {
        font-size: 38px !important;
    }
}

/* Prevent wrapping on brand logo and header menu links */
@media (min-width: 768px) {
    .cts-brand {
        white-space: nowrap !important;
    }
}
.cts-menu-link {
    white-space: nowrap !important;
}

/* ============================================================
   FAQ PAGE STYLING (Clean Semantic Clone)
   ============================================================ */

.cts-faq-main {
    background-color: #000000 !important;
    min-height: 100vh;
    padding-top: 160px; /* space for sticky navbar, pixel perfect breathing room */
    padding-bottom: 20px;
    box-sizing: border-box;
}

/* Hide breadcrumbs and default page header on FAQ */
section.bg-gradient,
.page-header {
    display: none !important;
}

.cts-faq-container {
    max-width: 1140px; /* Match original Elementor boxed width */
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 60px !important;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .cts-faq-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 40px !important;
    }
}

.cts-faq-title {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 1.5rem !important; /* Match H4 size */
    color: #E2E2E2 !important;
    text-transform: none !important; /* Mixed case matching the original */
    margin: 0 0 55px 0 !important; /* Standard Elementor widget spacing */
    font-weight: bolder !important; /* Matches <strong> tag */
    letter-spacing: 0.03em;
    text-align: left !important;
    padding-bottom: 0px !important;
}

.cts-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cts-accordion-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px; /* Let adjacent borders touch to create double-thickness */
    background-color: transparent !important;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    overflow: hidden;
}

.cts-accordion-title {
    display: flex;
    align-items: center;
    background-color: #ffffff !important;
    color: #1f2124 !important; /* Match original --n-accordion-title-normal-color */
    padding: 10px !important; /* Match original --n-accordion-padding */
    cursor: pointer;
    user-select: none;
    outline: none;
    list-style: none;
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important; /* Match original --n-accordion-title-font-size */
    font-weight: 400 !important; /* Match original typography weight */
    border: 1px solid #d5d8dc !important;
    box-sizing: border-box;
}

/* Hide default details summary arrows */
.cts-accordion-title::-webkit-details-marker,
.cts-accordion-title::marker {
    display: none !important;
}

.cts-accordion-title:focus,
.cts-accordion-title:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.cts-accordion-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px; /* Match original icon gap */
    flex-shrink: 0;
}

.cts-accordion-icon svg {
    width: 15px; /* Match original --n-accordion-icon-size */
    height: 15px;
    fill: #1f2124 !important; /* Match title text color */
    display: block;
}

.cts-accordion-text {
    line-height: 1.4;
}

/* Toggle icon display based on open state */
.cts-accordion-item .icon-opened {
    display: none !important;
}
.cts-accordion-item .icon-closed {
    display: inline-flex !important;
}

.cts-accordion-item[open] .icon-opened {
    display: inline-flex !important;
    fill: #1f2124 !important;
}
.cts-accordion-item[open] .icon-closed {
    display: none !important;
}

.cts-accordion-content {
    background-color: #000000 !important;
    color: #e2e2e2 !important; /* Match original text color */
    padding: 10px !important; /* Match default Elementor container padding */
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    border: 1px solid #d5d8dc !important;
    box-sizing: border-box;
}

.cts-accordion-content p {
    margin: 0 0 16px 0 !important;
    color: #e2e2e2 !important;
}

.cts-accordion-content p:last-child {
    margin-bottom: 0 !important;
}

/* ============================================================
   IMPRESSUM PAGE — pixel-perfect: teammichael.de/impressum/
   ============================================================ */

/* Hide Eventmie breadcrumb + page-header on impressum page */
body:has(.cts-impressum-main) .page-header,
body:has(.cts-impressum-main) section.bg-gradient,
body:has(.cts-impressum-main) .breadcrumb-wrapper,
body:has(.cts-impressum-main) nav[aria-label="breadcrumb"] {
    display: none !important;
}

/* Full-width dark background wrapper */
.cts-impressum-main {
    display: block;
    width: 100%;
    background-color: #000000 !important;
    min-height: 100vh;
    padding-top: 120px !important; /* Adjusted to match original Elementor top spacing offset */
    padding-bottom: 25px;
    box-sizing: border-box;
}

/*
 * Content container — matches original Elementor boxed layout:
 * Width constrained to max-width 1140px, auto-centered
 * Padding: 25px top/bottom, 35px left/right
 */
.cts-impressum-container {
    display: block;
    max-width: 1140px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    box-sizing: border-box;
}

/* h2 — matches original Elementor heading widget style (Kabeltouw Stencil 20, 2rem) */
.cts-impressum-title {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    font-style: normal !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    letter-spacing: normal !important;
    text-transform: none !important; /* Matches mixed case (Impressum) on the original site */
    margin: 50px 0px 15px 0px !important; /* Pushes title down by 100px top margin, 20px bottom spacer */
    padding: 0 !important;
}

/* Body text — Elementor text-editor widget defaults: Lato 16px/1.6 */
.cts-impressum-body {
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #e2e2e2 !important;
}

/* Paragraphs — WordPress block gap = 24px */
.cts-impressum-body p {
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #e2e2e2 !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
}

.cts-impressum-body p:last-child {
    margin-bottom: 0 !important;
}

/* Strong — section sub-headings: Haftung für Inhalte, Urheberrecht etc. */
.cts-impressum-body strong {
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

/* Spacer — matches original <div class="br-br"> </div>: 1.5em = 24px */
.cts-impressum-spacer {
    display: block;
    height: 24px;
    width: 100%;
}

/* Links */
.cts-impressum-link,
.cts-impressum-body a {
    font-family: 'Lato', sans-serif !important;
    color: #FFAF00 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    transition: color 0.2s ease;
}

.cts-impressum-link:hover,
.cts-impressum-body a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* Sub-headings and lists inside the body (e.g. for Datenschutz page) */
.cts-impressum-body h1 {
    font-family: 'Lato', sans-serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 24px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

.cts-impressum-body h2 {
    font-family: 'Lato', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 40px 0 24px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

.cts-impressum-body h3 {
    font-family: 'Lato', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 32px 0 24px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

.cts-impressum-body ul {
    margin: 0 0 24px 0 !important;
    padding-left: 20px !important;
    list-style-type: disc !important;
}

.cts-impressum-body li {
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #e2e2e2 !important;
    margin-bottom: 8px !important;
}

.cts-impressum-body li:last-child {
    margin-bottom: 0 !important;
}

/* ---- Responsive: Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
    .cts-impressum-main {
        padding-top: 120px !important; /* Adjusted to clear mobile sticky navbar cleanly without excessive space */
        padding-bottom: 60px;
    }
    .cts-impressum-container {
        padding-left: 15px !important; /* Explicitly overrides desktop 35px padding on mobile */
        padding-right: 15px !important;
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    .cts-impressum-title {
        font-size: 20px !important;
        margin: 40px 0px 20px 0px !important; /* Reduced top margin on mobile for neat spacing */
    }
    .cts-impressum-body,
    .cts-impressum-body p,
    .cts-impressum-body li {
        font-size: 15px !important;
    }
    .cts-impressum-body h1 {
        font-size: 24px !important;
    }
    .cts-impressum-body h2 {
        font-size: 20px !important;
    }
    .cts-impressum-body h3 {
        font-size: 18px !important;
    }
}

/* ============================================================
   DATENSCHUTZ PAGE — pixel-perfect: teammichael.de/Datenschutzhinweis/
   ============================================================ */

/* Hide Eventmie breadcrumb + page-header on datenschutz page */
body:has(.cts-datenschutz-main) .page-header,
body:has(.cts-datenschutz-main) section.bg-gradient,
body:has(.cts-datenschutz-main) .breadcrumb-wrapper,
body:has(.cts-datenschutz-main) nav[aria-label="breadcrumb"] {
    display: none !important;
}

.cts-datenschutz-main {
    display: block;
    width: 100%;
    background-color: #000000 !important;
    min-height: 100vh;
    padding-top: 120px !important; /* Spacing for sticky navbar */
    padding-bottom: 25px;
    box-sizing: border-box;
}

.cts-datenschutz-container {
    display: block;
    max-width: 1140px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    box-sizing: border-box;
}

.cts-datenschutz-title {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: bolder !important;
    font-style: normal !important;
    line-height: 1.2 !important;
    color: #E2E2E2 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    margin-top: .5rem !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
}

/* 50px Spacer matching elementor-element-a0fbc84 */
.cts-datenschutz-spacer {
    display: block;
    height: 50px;
    width: 100%;
}

/* 1px Solid Black Divider with 15px top/bottom padding matching elementor-element-954080a */
.cts-datenschutz-divider {
    display: block;
    width: 100%;
    border-top: 1px solid #000000;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.cts-datenschutz-body {
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #e2e2e2 !important;
    padding-top: 70px !important;
}

/* Headings and elements inside the body */
.cts-datenschutz-body h1 {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-top: .5rem !important;
    margin-bottom: 1rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

.cts-datenschutz-body h2 {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 400 !important;
    color: #E2E2E2 !important;
    margin-top: .5rem !important;
    margin-bottom: 1rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

.cts-datenschutz-body h3 {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-top: .5rem !important;
    margin-bottom: 1rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

.cts-datenschutz-body p {
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #e2e2e2 !important;
    margin-top: 0 !important;
    margin-bottom: .9rem !important;
    padding: 0 !important;
}

.cts-datenschutz-body p:last-child {
    margin-bottom: 0 !important;
}

.cts-datenschutz-body strong,
.cts-datenschutz-body b {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif !important;
    font-size: 2rem;
    font-weight: 400 !important;
    color: #E2E2E2 !important;
    line-height: 1.2;
}

.cts-datenschutz-body ul,
.cts-datenschutz-body ol {
    margin-top: 0 !important;
    margin-bottom: .9rem !important;
    padding-left: 20px !important;
}

.cts-datenschutz-body ul {
    list-style-type: disc !important;
}

.cts-datenschutz-body ol {
    list-style-type: decimal !important;
}

.cts-datenschutz-body li {
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #e2e2e2 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.cts-datenschutz-body li:last-child {
    margin-bottom: 0 !important;
}

.cts-datenschutz-body a {
    font-family: 'Lato', sans-serif !important;
    color: #FFAF00 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    transition: color 0.2s ease;
}

.cts-datenschutz-body a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    .cts-datenschutz-main {
        padding-top: 120px !important;
        padding-bottom: 60px;
    }
    .cts-datenschutz-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    .cts-datenschutz-body,
    .cts-datenschutz-body p,
    .cts-datenschutz-body li {
        font-size: 15px !important;
    }
    .cts-datenschutz-body h1 {
        font-size: 24px !important;
    }
    .cts-datenschutz-body h2 {
        font-size: 20px !important;
    }
    .cts-datenschutz-body h3 {
        font-size: 18px !important;
    }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON STYLES
   ============================================================ */
.cts-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.cts-whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.cts-whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .cts-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* ============================================================
   COOKIE CONSENT — Zustimmung verwalten
   Same-to-same clone of teammichael.de Complianz manage-consent button
   ============================================================ */

/* Trigger Button — bottom-left, exact Complianz default position */
.cts-consent-trigger {
    position: fixed;
    bottom: 0;
    right: 40px;
    min-width: 100px;
    left: auto;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background-color: #000000;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 1.1em !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    padding: 8px 14px;
    border-radius: 3px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    user-select: none;
    text-transform: uppercase;
}

.cts-consent-trigger:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.cts-consent-trigger.hidden {
    opacity: 0;
    pointer-events: none;
}

.cts-consent-trigger-label {
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Modal Overlay — soft cookiewall backdrop */
.cts-consent-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cts-consent-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Modal Box */
.cts-consent-modal {
    position: relative;
    background: #000000;
    border: none;
    border-radius: 12px;
    width: 100%;
    max-width: 526px;
    max-height: calc(100vh - 20px);
    padding: 15px 20px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    display: grid;
    grid-gap: 10px;
    overflow-y: auto;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s ease;
    transition-delay: 0.05s;
}

.cts-consent-overlay.active .cts-consent-modal {
    transform: translateY(0);
    opacity: 1;
}

/* Modal Header — 3-column grid: logo | title | close */
.cts-consent-header {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
}

.cts-consent-logo {
    display: flex;
    align-items: center;
}

.cts-consent-logo img {
    max-height: 40px;
    width: auto;
}

.cts-consent-logo span {
    font-family: 'CoFo Kabeltouw Stencil 20', sans-serif;
    font-size: 1.4em;
    color: #ffffff;
    line-height: 1;
}

.cts-consent-title {
    justify-self: center;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: none;
    letter-spacing: normal;
}

.cts-consent-close {
    justify-self: end;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    line-height: 20px;
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.cts-consent-close:hover {
    opacity: 0.7;
}

/* Divider */
.cts-consent-divider {
    border-top: 1px solid #000000;
    margin-left: -20px;
    margin-right: -20px;
}

/* Modal Body */
.cts-consent-body {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 55vh;
}

.cts-consent-text {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 5px;
    word-wrap: break-word;
    padding-block: 16px;
}

.cts-consent-manage-link {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #ffaf00 !important;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cts-consent-manage-link:hover {
    color: #ffffff !important;
}

/* Action Buttons */
.cts-consent-actions {
    display: flex;
    gap: 10px;
}

.cts-consent-btn-accept {
    flex: 1;
    background-color: #ffaf00;
    color: #000000;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #ffaf00;
    height: 45px;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    line-height: 20px;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
}

.cts-consent-btn-accept:hover {
    text-decoration: none;
    opacity: 0.9;
}

.cts-consent-btn-reject {
    flex: 1;
    background-color: #000000;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #ffffff;
    height: 45px;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    line-height: 20px;
    transition: opacity 0.2s ease;
}

.cts-consent-btn-reject:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Footer Link */
.cts-consent-footer {
    text-align: center;
}

.cts-consent-footer-link {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #ffaf00 !important;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cts-consent-footer-link:hover {
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 576px) {
    .cts-consent-actions {
        flex-direction: column;
    }

    .cts-consent-trigger {
        bottom: 20px;
        right: 20px;
        left: auto;
    }
}


