/* Hero Section für die Visualisierungs-Seite */
/* Removed specific background-image styling to allow .dark-bg class to take precedence */

/* Testimonial Karten-Styling */
.testimonial-card {
    background-color: var(--brand-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.video-wrapper-insta {
    position: relative;
    width: 100%;
    max-width: 350px; /* typische Reel-Breite */
    height: 622px; /* 16:9 Aspekt Ratio auf typischer Breite */
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper-insta iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Timeline für den "How it works" Prozess */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-gold), #d4c098);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-content {
    padding: 2rem;
    position: relative;
    border-radius: 8px;
    background-color: var(--brand-slate-black);
}

.accent-border-left {
    border-left: 4px solid var(--brand-gold);
}

.accent-border-right {
     border-right: 4px solid var(--brand-gold);
}

.timeline-step {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--brand-slate-black);
    color: var(--brand-gold);
    border: 3px solid var(--brand-gold);
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-step {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-step {
    left: -25px;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
     .accent-border-right {
        border-right: none;
        border-left: 4px solid var(--brand-gold);
    }
    .timeline-step {
        left: 6px;
    }
    .timeline-item:nth-child(odd) .timeline-step,
    .timeline-item:nth-child(even) .timeline-step {
        left: 6px;
    }
}

/* YouTube Placeholder Styles */
.youtube-placeholder .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    transition: all 0.2s ease-in-out;
    pointer-events: none; /* Verhindert, dass der Klick am Button hängen bleibt */
}

.youtube-placeholder:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-placeholder .play-button-bg {
    fill: var(--brand-gold);
    fill-opacity: 0.9;
    transition: fill-opacity 0.2s ease;
}

.youtube-placeholder:hover .play-button-bg {
    fill-opacity: 1;
}

.youtube-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-placeholder.video-loaded {
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}