/* ==========================================================================
   SEELENZEICHNUNG – MOAKTOR FARBLEHRE
   Schwan (weiß), Pfau (teal), Krähe (violett), Gold, Nachtblau
   ========================================================================== */

/* ── Hero ── */
.sz-hero {
    text-align: center;
    padding: 100px 0 40px;
    background: radial-gradient(circle at center, #1a2a40 0%, var(--nacht, #0b1a2f) 80%);
}

.sz-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--pfau, #1a8a8a), var(--gold, #d4af37));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sz-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text, #e0e0e0);
}

/* ── Container ── */
.sz-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 24px;
}

/* ── Prozess-Schritte ── */
.sz-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sz-step {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26,26,46,0.5), rgba(11,26,47,0.5));
    transition: border-color 0.3s, background 0.3s;
}

.sz-step:hover {
    border-color: var(--pfau, #1a8a8a);
    background: linear-gradient(135deg, rgba(26,138,138,0.1), rgba(11,26,47,0.5));
}

.sz-step .step-number {
    font-size: 2rem;
    color: var(--gold, #d4af37);
    font-family: 'Playfair Display', serif;
}

.sz-step h3 {
    font-size: 1.2rem;
    color: var(--schwan, #f5f0e8);
    margin: 0.5rem 0;
}

.sz-step p {
    font-size: 0.95rem;
    color: var(--dim, #aaa);
}

/* ── Preis-Karten ── */
.sz-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.sz-price-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(11,26,47,0.6));
    transition: transform 0.3s, border-color 0.3s;
}

.sz-price-card:hover {
    border-color: var(--gold, #d4af37);
    transform: translateY(-3px);
}

.sz-price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold, #d4af37);
}

.sz-price-card p {
    font-size: 1rem;
    color: var(--dim, #aaa);
    margin: 0.5rem 0;
}

.sz-price-card .price {
    font-size: 2rem;
    color: var(--schwan, #f5f0e8);
    margin: 1rem 0;
    font-weight: 700;
}

/* ── Video-Thumbnail ── */
.video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212,175,55,0.3);
    transition: border-color 0.3s;
    margin: 2rem 0;
    max-width: 100%;
}

.video-thumbnail:hover {
    border-color: var(--gold, #d4af37);
}

.video-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0b1a2f;
    box-shadow: 0 0 30px rgba(212,175,55,0.4);
    transition: transform 0.3s;
    pointer-events: none;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}
.video-thumbnail-fallback {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(11,26,47,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: rgba(212,175,55,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0b1a2f;
    box-shadow: 0 0 40px rgba(212,175,55,0.5);
    transition: transform 0.3s;
    pointer-events: none;
}

.video-thumbnail:hover .play-button-large {
    transform: scale(1.1);
}
/* ── Responsive ── */
@media (max-width: 600px) {
    .sz-hero h1 {
        font-size: 2rem;
    }
    .sz-pricing {
        grid-template-columns: 1fr;
    }
}