/* 
* Livengo - Events in Hameln
* Hauptstylesheet
* 
* Schriftart: Outfit (ersetzt Montserrat)
*/

/* === SCHRIFTARTEN === */
@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* === GRUNDEINSTELLUNGEN === */
:root {
    --primary-color: #3e2d75; /* Ändere Pinktöne zu Dunkelviolett */
    --secondary-color: #ffa500; /* Orange als Akzentfarbe - bleibt für Akzente */
    --gradient-start: #e83e8c; /* Pinktöne als Gradient-Start */
    --gradient-middle: #9951cc; /* Lila als Gradient-Mitte */
    --gradient-end: #ffc107; /* Gelb als Gradient-Ende */
    --dark-color: #ffffff; /* Weiß als Haupthintergrund statt dunkel */
    --dark-color-lighter: #f8f8f8; /* Hellgrau als zweite Hintergrundfarbe */
    --light-color: #f3f3f3; /* Noch helleres Grau für hellere Bereiche */
    --text-color: #130034; /* Neue primäre Textfarbe */
    --light-text: #ffffff; /* Weiß für Text auf dunklem Hintergrund */
    --gray-color: #666680; /* Dunkleres Grau für weniger wichtigen Text */
    --gradient-text: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); /* Standard-Gradient für Text */
    --gradient-bg: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); /* Standard-Gradient für Hintergründe */
    --card-bg: #ffffff; /* Weiß für Cards */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color); /* Normale Textfarbe statt Gradient */
    display: inline-block;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.bg-light {
    background-color: var(--light-color);
    color: var(--text-color);
}

.bg-dark {
    background-color: var(--dark-color-lighter);
    color: var(--text-color);
}

/* Neue Gradient-Container-Klasse */
.bg-gradient {
    background: var(--gradient-bg);
    color: var(--light-text);
    padding: 40px 20px;
    border-radius: 10px;
}

.bg-gradient h2, .bg-gradient h3 {
    color: var(--light-text);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: var(--gradient-bg);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--gradient-end), var(--gradient-start));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient-bg);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background-image: var(--gradient-bg), var(--gradient-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.2);
}

/* === NAVIGATION === */
header {
    position: relative;
    background-color: var(--dark-color);
    background-image: url('../img/hero-hameln.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light-text);
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.8), rgba(153, 81, 204, 0.8));
    z-index: 1;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo a span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu li a:hover, 
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-bg);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after, 
.nav-menu li a.active::after {
    width: 100%;
}

/* Spezielle Styling für Tickets-Link */
.nav-menu li a.tickets-link {
    /* Updated background color as requested */
    background: #0056d6;
    color: #ffffff !important;
    border: 1px solid #0056d6;
    padding: 5px 16px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
    transform: translateY(-2px);
    vertical-align: middle;
    line-height: 1.2;
}

/* Sehr spezifischer Hover-Selektor mit Transform */
header nav .nav-wrapper .nav-menu li a.tickets-link:hover {
    transform: translateY(-5px) !important;
    transition: transform 0.3s ease !important;
}

.nav-menu li a.tickets-link::after {
    display: none; /* Entfernt die normale Unterstreichung */
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1024px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* === EVENTS SECTION === */
.event-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--text-color);
    padding: 8px 20px;
    margin: 0 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Standard-Button mit Gradient-Border */
.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--gradient-bg);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Button mit benutzerdefinierter Farbe */
.filter-btn.custom-color::before {
    background: none;
    opacity: 0;
}

.filter-btn.custom-color {
    border: none;
    color: white !important;
}

/* Hover und Active Zustände */
.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-bg) !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(232, 62, 140, 0.2);
    border: none;
}

/* Hover und Active für Buttons mit benutzerdefinierter Farbe */
.filter-btn.custom-color:hover,
.filter-btn.custom-color.active {
    background: var(--gradient-bg) !important;
    border: none;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.event-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gradient-bg);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
}

.event-info {
    padding: 25px;
}

.event-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.event-location {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.event-location i {
    margin-right: 5px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-description {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-color);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.events-cta {
    text-align: center;
    margin-top: 30px;
}

/* === ABOUT SECTION === */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray-color);
}

.about-image {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    text-align: left;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 40px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.feature p {
    font-size: 14px;
    color: var(--gray-color);
}

/* === LOCATIONS SECTION === */
.locations-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 50px 0;
}

.locations-slider {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    touch-action: pan-y;
}

.location-slide {
    min-width: 350px;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 0 0 calc(33.33% - 20px);
    position: relative;
}

.location-slide:hover {
    transform: translateY(-8px);
}

/* Separater Hover-Effekt für den Schatten */
.location-slide::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.location-slide:hover::after {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Navigation arrows */
.location-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-color);
    border: none;
    font-size: 18px;
}

.location-nav-prev {
    left: 10px;
    top: 175px; /* Position des Zurück-Pfeils anpassen, vertikal zentriert zur Kachel */
    transform: translateY(0); /* Überschreibe die Transformation vom Parent-Selector */
}

.location-nav-next {
    right: 10px;
    top: 175px; /* Position des Vorwärts-Pfeils anpassen, vertikal zentriert zur Kachel */
    transform: translateY(0); /* Überschreibe die Transformation vom Parent-Selector */
}

.location-nav-arrow:hover {
    background: var(--gradient-bg);
    color: white;
}

/* Navigation dots */
.location-nav-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.location-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.location-nav-dot.active {
    background: var(--gradient-bg);
    width: 20px;
    border-radius: 10px;
}

.location-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-info {
    padding: 25px;
}

.location-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-color);
}

.location-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

/* === CONTACT SECTION === */
.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.4;
}

.social-instagram {
    margin-top: 30px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
}

.contact-info-footer li {
    display: block;
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 15px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
}

/* === CONTACT FORM === */
.contact-form .form-group {
    margin-bottom: 20px;
}

/* Grundstile für alle Formularelemente */
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Einheitliche Darstellung von Platzhaltern */
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: var(--gray-color);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

/* Webkit-spezifische Platzhalter-Stile */
.contact-form .form-group input::-webkit-input-placeholder,
.contact-form .form-group textarea::-webkit-input-placeholder {
    color: var(--gray-color);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

/* Mozilla-spezifische Platzhalter-Stile */
.contact-form .form-group input::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder {
    color: var(--gray-color);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(232, 62, 140, 0.15);
}

.contact-form .form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form .form-inputs {
    margin-bottom: 15px;
}

/* Checkbox im Kontaktformular */
.contact-form .checkbox-group {
    margin: 30px 0 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form .checkbox-label {
    display: block;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-color);
}

.contact-form .checkbox-label input[type="checkbox"] {
    float: left;
    margin-right: 10px;
    margin-top: 3px;
    min-width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form .checkbox-label a {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline;
}

.contact-form .btn-primary {
    padding: 15px 25px;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.2);
}

.contact-form .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.3);
}

/* === FOOTER === */
footer {
    background-color: var(--dark-color-lighter);
    color: var(--text-color);
    padding: 80px 0 30px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 50px;
}

.footer-logo {
    flex: 1;
    max-width: 350px;
}

.footer-links {
    flex: 1;
}

.contact-info-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 0;
}

.map-container {
    width: 100%;
    height: 350px;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-logo a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo p {
    color: var(--text-color);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-color);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-bg);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray-color);
    font-size: 14px;
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 20px;
}

.modal-content {
    position: relative;
    background-color: var(--dark-color);
    margin: 30px auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: modalOpen 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

@keyframes modalOpen {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(232, 62, 140, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background-color: var(--gradient-start);
    transform: scale(1.1);
}

.event-details-header {
    background: var(--gradient-bg);
    padding: 40px 20px;
    color: var(--light-text);
    border-radius: 10px 10px 0 0;
    margin: -1px; /* Entfernt den weißen Rand */
}

.event-details-header h2 {
    color: var(--light-text);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
    color: var(--light-text);
}

.event-meta span {
    display: flex;
    align-items: center;
}

.event-meta i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.event-details-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .event-details-content {
        flex-direction: row;
    }
}

.event-details-image {
    flex: 0 0 100%;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .event-details-image {
        flex: 0 0 45%;
    }
}

.event-details-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 500px;
}

.event-details-info {
    background-color: var(--dark-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1;
    padding: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

.info-item p {
    line-height: 1.6;
    color: var(--text-color);
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item ul li {
    margin-bottom: 10px;
    padding-left: 0;
    display: flex;
    color: var(--text-color);
}

.info-item ul li strong {
    min-width: 120px;
    margin-right: 10px;
    color: var(--text-color);
    font-weight: 700;
}

.event-details-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-details-actions .btn-primary,
.event-details-actions .btn-gradient-details {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px;
}

/* === FORMULARMELDUNGEN === */
.form-message {
    color: var(--text-color);
    background-color: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #2ecc71;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
}

.form-message.info {
    background-color: rgba(13, 202, 240, 0.15);
    border: 1px solid rgba(13, 202, 240, 0.5);
    color: #48dbfb;
}

.form-message ul {
    margin: 10px 0 0 20px;
    color: inherit;
}

.form-message ul li {
    margin-bottom: 5px;
}

/* === MEDIA QUERIES === */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-features {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .contact-info-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color-lighter);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile Styling für Tickets-Link */
    .nav-menu li a.tickets-link {
        margin-left: 0;
        margin-top: 10px;
        padding: 10px 20px;
        border-radius: 25px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .event-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    
    .event-filters::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        flex: 0 0 auto;
        margin: 0 5px;
        padding: 8px 15px;
    }

    .location-nav-prev, 
    .location-nav-next {
        top: 135px; /* Niedrigere Position auf kleinen Bildschirmen */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        margin-bottom: 10px;
    }

    .location-nav-prev, 
    .location-nav-next {
        top: 100px; /* Noch niedrigere Position auf sehr kleinen Bildschirmen */
        width: 30px; /* Kleinere Buttons */
        height: 30px; /* Kleinere Buttons */
        font-size: 14px; /* Kleinerer Pfeil */
    }
}

/* Checkbox Styling für DSGVO */
.checkbox-group {
    margin-top: 15px;
    margin-bottom: 15px;
}

.checkbox-label {
    display: block;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-color);
}

.checkbox-label input[type="checkbox"] {
    float: left;
    margin-right: 10px;
    margin-top: 3px;
    min-width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.checkbox-label span {
    display: block;
    margin-left: 28px;
}

.link-light {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s;
}

.link-light:hover {
    color: #fff;
}

#contact .checkbox-label {
    color: var(--text-color);
}

/* === GRADIENT DETAILS BUTTON === */
.btn-gradient-details {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-gradient-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--gradient-end), var(--gradient-start));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.btn-gradient-details:hover::before {
    opacity: 1;
}

.btn-gradient-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.3);
}

/* === SOCIAL ICONS FOOTER === */
.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon-footer i {
    color: white !important;
}

.social-icon-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.social-icon-footer:hover i {
    color: white !important;
}

/* Kontaktinformationen im Footer */
.contact-info-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-footer li {
    display: block;
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 15px;
    margin-bottom: 0;
}

.social-instagram {
    margin-top: 30px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
}

/* NEU: Styles für Kategorie-Beschreibung - Kacheldarstellung */
.category-description-area {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 0;
    margin: 20px auto 30px auto;
    max-width: 1000px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.category-description-area.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-description-header {
    background: var(--gradient-bg);
    padding: 12px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: -1px -1px 0 -1px; /* Entfernt den weißen Rand */
}

.category-description-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.category-description-content {
    padding: 20px;
}

.category-description-area p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Style für Scrollbar in der Kategoriebeschreibung */
.category-description-area p::-webkit-scrollbar {
    width: 4px;
}

.category-description-area p::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.category-description-area p::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Ende NEU */

/* === KATEGORIE-KACHELN === */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px auto 40px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.category-card-header {
    background: var(--gradient-bg);
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: -1px -1px 0 -1px; /* Entfernt den weißen Rand */
}

/* Kategorie mit benutzerdefinierter Farbe */
.category-card-header.custom-color {
    background: none;
}

.category-card-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.category-card-content {
    padding: 20px;
    flex-grow: 1;
}

.category-card-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: right;
}

.category-more-btn {
    background: transparent;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.category-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--gradient-bg);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.category-more-btn:hover {
    background: var(--gradient-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.2);
    }

.category-more-btn:hover::before {
    opacity: 0;
}

/* Responsive-Stile für Kategorie-Kacheln */
@media (max-width: 992px) {
    .category-cards {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-cards {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

/* === TRENNER ZWISCHEN KATEGORIEN UND EVENTS === */
.section-divider {
    display: flex;
    align-items: center;
    margin: 40px 0;
    position: relative;
    background: var(--gradient-bg);
    padding: 40px 0;
    color: var(--light-text);
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.01));
}

.divider-content {
    padding: 0 30px;
    text-align: center;
}

.divider-content h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: var(--light-text);
    display: inline-block;
}

/* Styling-Unterschiede zwischen Kategorien und Events verstärken */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.event-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Style für "Keine Events" Nachricht */
.no-events {
    text-align: center;
    grid-column: 1 / -1; /* Erstreckt sich über alle Spalten im Grid */
    padding: 50px 20px;
    margin: 30px 0;
}

.no-events p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Inhaber-Zitat im Über-Bereich */
.owner-quote {
    background: var(--gradient-bg);
    color: var(--light-text);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 0 0 15px;
}

.quote-content p {
    font-style: italic;
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-content p:before {
    content: '"';
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
}

.quote-author {
    font-style: normal !important;
    text-align: right;
    font-weight: 600;
    color: var(--light-text) !important;
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

/* Responsive-Anpassungen für das Inhaber-Zitat */
@media (max-width: 768px) {
    .owner-quote {
        padding: 15px 20px;
        margin: 20px 0 30px;
    }
    
    .quote-content p {
        font-size: 15px;
    }
}

/* Überarbeiteter Kontaktbereich */
.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.4;
}

.social-instagram {
    margin-top: 30px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
}

.contact-info-footer li {
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 15px;
}

/* === CONTACT SECTION - NEU === */
.contact-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    padding: 15px 20px;
    color: white;
}

.contact-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.contact-details {
    padding: 20px;
}

.contact-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.contact-row:last-of-type {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    width: 80px;
    flex-shrink: 0;
}

.contact-value {
    color: var(--text-color);
}

.contact-social {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social a {
    display: inline-block;
    background-color: var(--card-bg);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-social i {
    margin-right: 8px;
}

/* === FOOTER - NEU === */
.footer-contact p {
    margin: 8px 0;
    color: var(--gray-color);
}

.footer-hours {
    margin-top: 15px !important;
    color: var(--primary-color) !important;
    font-style: italic;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-social i {
    margin-right: 8px;
}

/* MediaQueries für Kontaktbereich */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }
    
    .contact-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Footer-Links */
.copyright a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary-color);
}

/* Details-Tabelle anpassen */
.kategorie, .preis, .tickets, .veranstalter {
    color: var(--gray-color);
    background-color: var(--light-color);
}

/* Weitere Tabellenfelder für Eventdetails */
table.event-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.event-details-table tr td:first-child {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--gray-color);
    width: 30%;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
}

table.event-details-table tr td:last-child {
    background-color: var(--dark-color-lighter);
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
}

/* Pinke Überschriften in #3e2d75 ändern */
.info-item h3, 
.contact-info-content h4, 
.section-header h2, 
.about-content h2,
.event-details-content h3,
.event-info h3 {
    color: var(--primary-color);
}

/* Detailansicht Überschriften */
.modal-content h2.section-title,
.modal-content h3.section-subtitle {
    color: var(--primary-color);
}

/* Beschreibung und Details-Überschriften */
.modal-content h2 {
    color: var(--primary-color);
}

/* Tabellenheader in Detailansicht */
.event-details-table td.header {
    color: var(--primary-color);
}

/* Überschriften für die Detailbereiche im Modal */
.event-details-content .section-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

/* Überschriften in der Event-Detailansicht */
.modal-content .Beschreibung,
.modal-content .Details {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.modal-content .Beschreibung::after,
.modal-content .Details::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

/* Kategorieüberschriften in Tabellen */
.modal-content .Kategorie, 
.modal-content .Preis, 
.modal-content .Tickets, 
.modal-content .Veranstalter {
    color: var(--primary-color);
    font-weight: 600;
}

/* Alle h3 und h2 Elemente in der Modal-Ansicht standardmäßig in Primärfarbe */
.modal-content h2,
.modal-content h3 {
    color: var(--primary-color);
}

/* Event-Titel im Modal auf Weiß setzen - mit höherer Spezifität */
.modal-content h1,
.modal-content h2.event-title,
.modal-content .event-title,
.event-details-header h1,
.modal-content > h1,
.modal-content > h2,
.modal-content .Test.Event,
.modal-content #event-title,
.modal .Test.Event,
.modal-content .events-title,
h1.event-title,
h2.event-title,
.Test.Event,
h1[class*="Test"],
.modal-content [class*="Test"] {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Allgemeiner Selektor für Test Event Überschrift */
[class*="Test"] {
    color: white !important;
}

/* Haupttitel oben im Modal */
h1, h2 {
    color: white !important;
}

/* Spezifisch für den Titel der in der obersten Sektion des Modals ist */
header h1, 
.modal header h1,
.event-details-header h1,
.modal .event-details-header h1,
.modal-content > div:first-child h1,
.modal-content > :first-child h1,
.modal-content > h1 {
    color: white !important;
}

/* Alle h1 Elemente im Modal-Header */
.modal-content h1 {
    color: white !important;
}

/* Lila Überschrift in Weiß umwandeln */
.modal-content .Test {
    color: white !important;
}

/* Direkter Selektor für die "Test Event" Überschrift im Farbverlaufsbereich */
.modal-content > div:first-child > h1,
.modal-content > div:first-child > h2,
.modal-content > div > h1 {
    color: white !important;
}

/* Kontaktiere uns Überschrift in primärer Textfarbe */
h1:contains("Kontaktiere uns"),
h2:contains("Kontaktiere uns"),
.contact-header h1,
.contact-header h2,
.contact-section h1,
.contact-section h2,
.contact-title,
.section-contact h1,
.section-contact h2,
.contactSection h1,
.contactSection h2,
.contact-page-title,
h1.contact-title,
h2.contact-title,
.contact h1,
.contact h2 {
    color: var(--text-color) !important;
}

/* Genereller Kontaktüberschriften-Selektor */
[class*="kontakt"] h1,
[class*="kontakt"] h2,
[class*="contact"] h1,
[class*="contact"] h2,
h1[class*="kontakt"],
h2[class*="kontakt"],
h1[class*="contact"],
h2[class*="contact"] {
    color: var(--text-color) !important;
}

/* Weitere Sektionsüberschriften in primärer Textfarbe */
h1:contains("Veranstaltungsorte"),
h2:contains("Veranstaltungsorte"),
h1:contains("Über Livengo"),
h2:contains("Über Livengo"),
h1:contains("Kommende Events"),
h2:contains("Kommende Events"),
.venues-title,
.about-title,
.events-title,
.venues-section h1,
.venues-section h2,
.about-section h1,
.about-section h2,
.events-section h1,
.events-section h2,
.section-venues h1,
.section-venues h2,
.section-about h1,
.section-about h2,
.section-events h1,
.section-events h2,
h1.section-title,
h2.section-title {
    color: var(--text-color) !important;
}

/* Generelle Selektoren für diese Sektionen */
[class*="venue"] h1,
[class*="venue"] h2,
[class*="about"] h1,
[class*="about"] h2,
[class*="event"] h1,
[class*="event"] h2,
section h1,
section h2,
.section h1,
.section h2 {
    color: var(--text-color) !important;
} 