/* ===== Variables ===== */

:root {
    --highlight-pink: #e63064; /* Magenta aus dem Waffle Day Design */
    --highlight-yellow: #ffe76b; /* Leuchtendes Gelb */
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
    
    /* Font Families */
    --font-heading: 'Fira Sans', sans-serif;
    --font-body: 'brother-1816', sans-serif;
}

/* ===== Fonts ===== */
@font-face {
    font-family: 'Fira Sans';
    src: url('../fonts/FiraSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


/*
@font-face {
    font-family: 'Brother 1816';
    src: url('../fonts/brother-1816-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

*/
/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type removed to prevent aggressive locking */
}

/* Apply snap alignment to all major structural elements */
section, footer, .hero {
    /* scroll-snap-align removed for more fluid scrolling */
    scroll-margin-top: 80px; /* Keep offset for sticky navbar anchor links */
}

body {
    font-family: var(--font-body);
    font-weight: 500; /* Use 500 as standard text, as 400 is not available */
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, b {
    font-weight: 800; /* Use actual ExtraBold weight */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Components ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    /*font-weight: 700;*/
    line-height: 1.1;
    margin-bottom: 20px;
    /*letter-spacing: -0.5px;*/
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* ===== Navigation ===== */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.navbar .container {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: flex-start; /* Standard flow starts left */
    position: relative; /* Allows absolute positioning relative to container */
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    cursor: pointer;
}

.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    width: auto;
    z-index: 10;
    cursor: pointer;
}

/* Fallback for standard .logo if used elsewhere */
.navbar .logo {
    /* height: 60px; handled above */ 
}

/* Sticky State */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    background: var(--highlight-yellow); /* Yellow background on scroll */
    animation: slideDown 0.3s ease;
}

.navbar.sticky .logo,
.navbar.sticky .logo-center {
    height: 40px;
}

/* Mobile Adjustments for Logos */
@media (max-width: 480px) {
    /* On very small screens, ensure logos don't shrink too much but fit available space */
    .logo, .logo-center {
        height: 50px; /* Slightly smaller on mobile default */
    }
    
    .navbar.sticky .logo,
    .navbar.sticky .logo-center {
        height: 35px; /* Slightly smaller sticky on mobile */
    }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ===== Hero Section ===== */
.hero {
    /* Layout */
    min-height: 100vh; /* Full viewport height */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Start from top to prevent clipping */
    text-align: center;
    
    /* Spacing: Large top padding to clear navbar */
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 20px;
    padding-right: 20px;
    
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 231, 107, 0.85), rgba(255, 231, 107, 0.85)); /* Yellow wash */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* Disabled for yellow wash design */
}

/* Hero Elements */
.hero-date-badge {
    display: inline-block;
    border: 2px solid #000;
    padding: 0px 20px;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    background: transparent; 
    color: #000;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-pink);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #000;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.4;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Countdown Box */
.countdown-box {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
    /* cursor: pointer; removed */
    /* transition: transform 0.3s ease; removed */
}

/* Removed whole box hover effect */

.countdown-header {
    background: var(--highlight-pink);
    color: var(--white);
    padding: 12px 20px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    /* Button Styling */
    margin: 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
    transition: all 0.3s ease;
    animation: pulse-button 2s infinite;
}

.countdown-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.6);
    
}

@keyframes pulse-button {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.countdown-header:hover {
    animation: none; /* Stop pulse on hover to prevent conflict */
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    margin: 0;
    background: #fff;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 70px;
}

.countdown-value {
    display: block;
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    display: block;
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Checklist Styling */
.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left; /* Changed from center to left for grid alignment */
    display: inline-block; /* Allow centering the whole block */
    max-width: 800px;
}

.hero-checklist li {
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000;
    
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.hero-checklist li .list-content {
    display: block; /* Inline flow on desktop */
}

.hero-checklist li strong {
    display: inline;
    margin-right: 5px; /* Add spacing between label and text */
    /*color: var(--highlight-pink);*/
    font-weight: 800;
    font-size: 1.2rem;
}

.hero-checklist li span {
    display: inline;
}

.hero-checklist li::before {
    content: '';
    flex-shrink: 0;
    background-image: url('../images/ListitemIcon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    margin-top: 5px; /* Visual alignment with the title */
}

/* ===== Buttons ===== */
.btn {

}

.btn:hover {

}



/* ===== Parallax Legacy Support ===== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

@media (hover: none) {
    .parallax { background-attachment: scroll; }
}

/* ===== FAQ Accordion ===== */
.faq-section {
    padding: 100px 0;
    background-color: #000;
}

.faq-badge {
    display: inline-block;
    border: 1px solid #fff;
    padding: 5px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-title {
    color: var(--highlight-pink);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq-accordion {
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    border: 1px solid #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800; /* Extra bold */
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    transform-origin: center;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

/* Chevron Down using CSS border */
.faq-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle { 
    transform: rotate(180deg); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 500px; /* Arbitrary large height */
}

.faq-answer p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
}



/* ===== Registration Section ===== */
.registration-section {

}

.registration-section .section-title,
.registration-section .section-subtitle {

}

.registration-box {

}

#eventbrite-register {

}

#eventbrite-register:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--white);
    margin: 0 15px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {

}

/* ===== Floating CTA Mobile ===== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    text-align: center;
}

/* ===== Animations ===== */
/* ===== Partner Slider ===== */
.partner-slider-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.partner-slider-container {
    display: flex;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-slide {
    flex: 0 0 auto;
    width: 200px; /* Uniform width */
    height: 100px; /* Uniform height container */
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.partner-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 280px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
    border: 1px solid var(--highlight-pink);
    line-height: 1.4;
}

.partner-tooltip strong {
    display: block;
    color: var(--highlight-pink);
    margin-bottom: 5px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.partner-slide:hover .partner-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partner-slide {
        width: 150px;
        margin: 0 20px;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .countdown-item { min-width: 60px; padding: 10px; }
    .countdown-value { font-size: 1.8rem; }
    
    .floating-cta { display: block; }
    .navbar .btn { display: none; } /* Hide Navbar btn on mobile in favor of floating */
    
    .benefits-grid { grid-template-columns: 1fr; }    
    .experience-cards-wrapper {
        flex-direction: column;
        position: relative !important;
        background: #1a1a1a !important; /* Solid background on mobile */
    }
    
    .experience-image-container {
        height: auto !important;
        min-height: 400px;
    }
}

/* ===== Experience Section (Live aus der Gastro) ===== */
.experience-section {
    background-color: var(--highlight-yellow);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

/* Optional: Gradient from Hero if needed, but solid yellow usually works best with the hero overlay */
/* .experience-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--highlight-yellow));
    z-index: 1;
} */

.badge-box {
    display: inline-block;
    border: 2px solid #000;
    padding: 0px 20px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 20px;
}

.experience-title {
    font-family: var(--font-heading);
    color: var(--highlight-pink);
    font-size: 2.5rem;
    font-weight: 800; /* Extra Bold */
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.experience-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

/* Image Container */
.experience-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px; /* Fixed height for desktop */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('../images/bg02.jpeg');
    background-size: cover;
    background-position: center;
    /*box-shadow: 0 20px 40px rgba(0,0,0,0.15);*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to bottom */
}

/* Cards Wrapper - Overlay at bottom */
.experience-cards-wrapper {
    display: flex;
    gap: 20px;
    padding: 40px; /* Spacing from edges */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    width: 100%;
    align-items: flex-end;
}

.experience-card {
    flex: 1;
    background: rgba(20, 20, 20, 0.85); /* Semi-transparent dark card */
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 20, 0.95);
}

.experience-icon {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    /* Often white icons are better, ensure PNGs are suitable or use filter */
}

.experience-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800; /* Extra Bold */
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
}

.experience-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.4;
    color: #dedede;
}

/* ===== Video Section ===== */
.video-section {
    background-color: #000; /* Black background as requested */
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.video-subtitle {
    font-family: var(--font-heading);
    color: var(--highlight-pink); /* Neumärker Pink */
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.video-title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 500; /* Extra Bold */
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--white);
}

.video-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.4;
    color: #fff;
}

.video-wrapper {
    position: relative;
    max-width: 1000px; /* Large cinematic width */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8; 
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-thumb {
    opacity: 0.6; /* Darken slightly on hover for play button focus */
}

/* Play Button */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--highlight-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(230, 48, 100, 0.6); 
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.video-wrapper:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff4d82; /* Lighter pink */
}

/* Play Triange */
.play-btn-overlay::after {
    content: '';
    display: block;
    width: 0; 
    height: 0; 
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 26px solid white;
    margin-left: 6px; /* Visual centering adjustment */
}

/* Overlay Text "WINE, DINE & SING" */
.video-overlay-text {
    position: absolute;
    bottom: 30px; 
    left: 0; 
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 5;
}

.video-overlay-title {
    font-family: var(--font-heading);
    font-size: 4.5rem; /* Massive text */
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.9;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .video-title { font-size: 1.8rem; }
    .video-overlay-title { font-size: 2.5rem; }
}

/* ===== Highlights & Success Section ===== */
.highlights-section {
    background-color: var(--highlight-yellow);
    padding: 80px 0;
    text-align: center;
}

/* Tag Cloud Box */
.tag-cloud-box {
    font-family: var(--font-heading);
    border: 3px solid #000;
    padding: 30px;
    margin: 0 auto 120px;
    max-width: 900px;
    background: transparent;
}

.tag-line {
    margin-bottom: 15px;
    line-height: 1.2;
}

.tag-line:last-child {
    margin-bottom: 0;
}

.tag-pink {
    color: var(--highlight-pink);
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0 5px;
}

.tag-black {
    color: #000;
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0 5px;
}

/* Media query for mobile font sizes in tag cloud */
@media (max-width: 768px) {
    .tag-pink, .tag-black { 
        font-size: 1.2rem; 
        display: inline-block; 
        margin: 5px 3px !important; /* Ensure spacing when wrapping */
    }
    .tag-cloud-box { 
        padding: 15px; 
        line-height: 1.6; /* Better line height for text flow */
    }
    .tag-line {
        display: inline; /* Make lines flow together on mobile */
        margin-bottom: 0;
    }
    
    /* Navbar Mobile Adjustments */
    .navbar .container {
        justify-content: space-between !important; 
        gap: 6px; /* Tighter gap so three items fit */
    }
    
    .navbar .logo {
        height: auto; 
        max-height: 40px; /* Max target size */
        width: auto;
        max-width: 28%; /* Leave more room for switcher */
        object-fit: contain;
        flex-shrink: 1; /* Allow shrinking */
    }
    
    .logo-center {
        position: static !important; 
        transform: none !important;
        left: auto !important; /* Reset left property */
        height: auto; 
        max-height: 40px; /* Max target size */
        width: auto;
        max-width: 28%; /* Leave more room for switcher */
        margin: 0;
        object-fit: contain;
        flex-shrink: 1; /* Allow shrinking */
    }

    /* Language switcher sizing so it stays inside viewport */
    #lang-switcher {
        max-width: 32%;
        flex-shrink: 1;
        white-space: nowrap;
    }
    
    /* Add logic for sticky state if needed, but base size reduction helps */
    /*.navbar.sticky .logo, 
    .navbar.sticky .logo-center {
        height: 45px; 
        margin-right: 10px; 
        object-fit: contain;
    }*/

    /* Checklist Mobile */
    .hero-checklist {
        padding: 0 10px;
    }
    .hero-checklist li {
        font-size: 1rem; /* Smaller font for mobile */
        gap: 10px;
        align-items: flex-start; /* Keep icon at top if text wraps */
        text-align: left;
        width: 100%;
    }
    .hero-checklist li .list-content {
        display: flex;
        flex-direction: column; /* Re-enable stacking on mobile */
    }
    .hero-checklist li strong {
        display: block; /* Force block on mobile */
        margin-bottom: 2px; /* Add small space below title */
    }
    .hero-checklist li span {
        display: block; /* Force block on mobile */
    }
    .hero-checklist li::before {
        width: 20px; /* Scale icon down slightly */
        height: 20px;
        margin-top: 2px;
    }
    
    /* Countdown Box Mobile Enhancements */
    /* Mobile CTA Box tweak to prevent squishing */
    .cta-box {
        padding: 20px !important;
        width: 100% !important;
    }

    .countdown-box { 
        margin: 20px auto 40px !important; 
        max-width: 100% !important; /* Allow full width but contained */
        box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
        padding: 0 5px; /* Slight padding inside the box itself */
    }
    .countdown-header {
        padding: 10px !important;
        font-size: 1.1rem !important; /* Slightly smaller to fit */
    }
    .countdown {
        padding: 10px 0 !important;
        gap: 2px !important; /* Tighter gap */
        justify-content: space-around; /* Distribute evenly */
    }
    .countdown-item {
        min-width: unset !important; /* Let them shrink naturally */
        flex: 1; 
        padding: 2px;
    }
    .countdown-value {
        font-size: 1.4rem !important; /* Smaller numbers */
    }
    .countdown-label {
        font-size: 0.65rem !important; /* Smaller labels */
    }

    /* Headings Compact Mobile */
    h1.hero-title {
        font-size: 2rem !important; /* Reduce hero title size */
        margin-bottom: 20px !important;
    }
    h2 {
        font-size: 1.8rem !important; /* Scale down h2 titles */
        line-height: 1.2 !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
}


/* Success Content */
.success-content {
    margin-bottom: 50px;
}

/* Responsive adjustments for the new Stories Grid layout */
@media (max-width: 900px) {
    /* Reduce background image height on mobile to focus on the content */
    .stories-grid-wrapper > div:first-child {
        height: 500px !important; /* Shorter image so cards cover it better */
        background-position: center top !important; /* Adjust focus */
    }
    
    /* Reset absolute positioning on mobile to stack naturally */
    .stories-grid-wrapper .stories-grid {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: -300px; /* Pull cards up to overlap significantly - adjusted for better coverage */
        padding: 0 20px !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto !important;
    }
    
    .stories-grid-wrapper .story-card {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 0px; /* Gap handles spacing */
        height: auto !important; /* Ensure content fits */
        min-height: auto !important;
        overflow: visible !important; /* Allow content to spill if needed */
        padding-bottom: 40px !important; /* Add padding to bottom to ensure text isn't right on edge */
    }

    /* Adjust the background image container height specifically for mobile if possible via CSS targeting structure */
    /* Since style is inline on the element, we might need a class or just rely on the overlap */


    /* Reset experience grid translation on mobile to avoid layout gaps */
    /* This targets the second direct child of the third direct child which is the flex container */
    .experience-image-container > div:nth-child(3) > div:nth-child(2) {
        transform: translateY(0) !important;
    }
}

.success-badge {
    display: inline-block;
    border: 2px solid #000;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: transparent;
    color: #000;
}

.success-title {
    font-family: var(--font-heading);
    color: var(--highlight-pink);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.success-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Stories Grid */
.stories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 500px; /* Tall cards like in image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.story-card:hover .story-card-bg {
    transform: scale(1.05); /* Slight zoom on hover */
}

.story-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
    padding: 30px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.story-badge {
    display: inline-block;
    border: 1px solid #fff;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: transparent;
    color: #fff;
    align-self: center;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.story-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.story-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: #000;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.testimonial-badge-wrapper {
    margin-bottom: 20px;
}

.testimonial-badge {
    display: inline-block;
    border: 1px solid #fff;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
}

.text-pink {
    color: var(--highlight-pink);
    font-weight: 800;
}

.text-white {
    color: #fff;
}

.quotes-list {
    margin-bottom: 50px;
}

.quote-item {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Optional: Add quotes marks or stylistic elements */
/* .quote-item::before { content: '„'; } .quote-item::after { content: '“'; } */
/* Since they are in the text already, we can skip pseudo-elements or make them bigger */

.testimonial-video-wrapper {
    display: block;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.testimonial-thumb {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.testimonial-video-wrapper:hover .testimonial-thumb {
    transform: scale(1.03);
}

.testimonial-video-wrapper:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff4d82;
}

@media (max-width: 768px) {
    .testimonial-title { font-size: 1.5rem; }
    .quote-item { font-size: 1rem; }
}

/* ===== Target Group Section ===== */
.target-group-section {
    position: relative;
    background: transparent;
}

/* Header Area - Yellow */
.target-header-area {
    background-color: var(--highlight-yellow);
    padding: 80px 0 50px;
    text-align: center;
}

.target-badge {
    display: inline-block;
    border: 2px solid #000;
    padding: 10px 30px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}

.target-title {
    font-family: var(--font-heading);
    color: var(--highlight-pink);
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.target-desc {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2rem;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Cards Area & Background */
.target-cards-area {
    position: relative;
    padding: 60px 0 80px;
}

/* Background Grid (Images) */
.target-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping if we want 3x2 or similar */
    z-index: 1;
}

.target-bg-item {
    width: 33.333%; /* 3 images per row if using 6 total in 2 rows, or just 3 columns depending on layout. 
                     Let's assume a collage style. The provided image shows 3 columns roughly matching the cards. */
    height: 50%; /* 2 rows */
    background-size: cover;
    background-position: center;
    filter: brightness(0.8); /* Slightly darken background images so text pops */
}
/* If exactly 6 images (bg06-bg11), we can do 3 cols x 2 rows */

.target-cards-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: -30px; /* Pull up into the yellow section slightly if desired, or keep separate */
}

/* Card Styling */
.target-card {
    flex: 1;
    min-width: 300px;
    background: rgba(26, 26, 26, 0.92); /* Dark semi-transparent background */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-top: 20px; /* Offset for staggered look if desired, or flat */
}


.target-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    min-height: 3.2em; /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-card-highlight {
    font-weight: 900; /* Extra bold highlight */
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #fff;
}

.target-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .target-bg-item {
        width: 50%; /* 2 cols */
        height: 33.33%;
    }
}

@media (max-width: 600px) {
    .target-bg-item {
        width: 100%;
        height: 16.66%; /* Stacked */
        display: none; /* Often cleaner to remove complexbg on mobile or simplify */
    }
    
    .target-cards-area {
        background: #222; /* Fallback dark bg */
    }
}

/* ===== Comparison Section (Vorher/Nachher) ===== */
.comparison-section {
    background-color: var(--highlight-yellow);
    /* top part is solid color, bottom part has image */
}

.comparison-header {
    background-color: var(--highlight-yellow);
    padding: 80px 0 50px;
    text-align: center;
}

.comparison-title {
    font-family: var(--font-heading);
    color: var(--highlight-pink);
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}

.comparison-desc {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2rem;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.comparison-content-wrapper {
    /* Image background wrapper */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 60px 0 100px;
    position: relative;
}

/* Overlay to darken image behind cards */
.comparison-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.comparison-grid {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    background: rgba(30, 30, 30, 0.95); /* Nearly opaque dark bg */
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

/* Card Header Strip */
.comparison-label-box {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
}

.arrow-icon {
    color: #fff;
    margin: 0 10px;
    font-size: 0.8rem;
}

/* Card Title Area */
.comparison-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 30px 20px 20px;
    line-height: 1.2;
    margin: 0;
    border-bottom: 1px solid #444;
}

/* List Styling */
.comparison-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex-grow: 1;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: #fff; /* White capsules */
    border-radius: 8px;
    padding: 15px;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.list-icon-status {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    /* In case images are missing, text will show */
}

/* Specific styling for AFTER card if needed */
.card-after .comparison-label-box {
    /* border-bottom: 2px solid var(--highlight-yellow); optional accent */
}

@media (max-width: 768px) {
    .comparison-content-wrapper {
        background-attachment: scroll; /* Disable fixed bg on mobile for performance */
    }
    
    .comparison-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-card {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== Location Section Responsive ===== */
@media (max-width: 900px) {
    .location-grid {
        flex-direction: column-reverse; /* Map on top for mobile if preferred, or standard column for Text first */
        gap: 50px !important;
        text-align: center;
    }
    
    .location-text {
        padding-right: 0 !important;
        text-align: center; /* Center text on mobile */
    }
/*
    .location-text h2 {
        font-size: 2.2rem !important;
        margin-left: auto;
        margin-right: auto;
    }*/
    
    .location-map img {
        max-width: 80% !important; /* Smaller map on mobile */
    }
}

/* ===== Program Section ===== */
.program-section {
    background-color: var(--highlight-yellow);
    padding: 100px 0;
    color: #000;
}

.program-block {
    margin-bottom: 60px;
}

.program-block:last-child {
    margin-bottom: 0;
}


.program-item {
    margin-bottom: 30px;
}

.program-item:last-child {
    margin-bottom: 0px;
}

.program-item-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.1;
    color: var(--highlight-pink);
}

.program-item-desc {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Mobile responsiveness for footer */
@media (max-width: 900px) {
    .footer-top-grid {
        flex-direction: column;
    }
    
    .footer-social-col {
        align-items: flex-start !important;
        margin-top: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom > div:last-child {
        justify-content: center;
        flex-wrap: wrap;
    }
/*
    .footer-text-col h2 {
        font-size: 1.8rem !important;
    }*/
}