/* =====================================================================
   Atlantis Almere — Live Cooking Showcase  (dc-orbit-showcase)
   Cinematic interactive stage: cooking stations crossfade on the stage
   while a glass list auto-advances with progress bars.
   Scoped under .dc-live. Edge-to-edge, self-contained.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

.elementor-widget-dc-orbit-showcase,
.elementor-widget-dc-orbit-showcase .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
}

.dc-live {
    --dc-ink:       #08131f;
    --dc-ink-2:     #0d2236;
    --dc-gold:      #d4a24e;
    --dc-gold-soft: #e7c98b;
    --dc-heading:   #ffffff;
    --dc-text:      rgba(255,255,255,.74);
    --dc-glass:     rgba(255,255,255,.06);
    --dc-glass-brd: rgba(255,255,255,.14);
    --dc-radius:    24px;
    --dc-ease:      cubic-bezier(.16,1,.3,1);

    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(72px, 10vw, 130px) 0;
    overflow: hidden;
    isolation: isolate;
    color: var(--dc-text);
    background:
        radial-gradient(120% 80% at 85% 0%, rgba(212,162,78,.10) 0%, transparent 55%),
        linear-gradient(180deg, var(--dc-ink) 0%, var(--dc-ink-2) 100%);
    font-family: 'Karla', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.dc-live__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(22px, 5vw, 72px);
}

/* ----------------------------- header ----------------------------- */
.dc-live__head { max-width: 720px; margin: 0 0 clamp(36px, 5vw, 60px); }
.dc-live__eyebrow {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 8px 16px 8px 13px;
    border: 1px solid var(--dc-glass-brd);
    border-radius: 999px;
    background: var(--dc-glass);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--dc-gold-soft);
}
.dc-live__eyebrow svg { width: 17px; height: 17px; color: var(--dc-gold); }
.dc-live__title {
    margin: 20px 0 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600; color: var(--dc-heading);
    font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.01em;
}
.dc-live__title em { font-style: italic; font-weight: 500; color: var(--dc-gold); }
.dc-live__intro { margin: 16px 0 0; font-size: clamp(1rem,1.15vw,1.12rem); line-height: 1.7; max-width: 56ch; }

/* ----------------------------- body grid -------------------------- */
.dc-live__body {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: stretch;
}

/* ----------------------------- stage ------------------------------ */
.dc-live__stage {
    position: relative;
    border-radius: var(--dc-radius);
    overflow: hidden;
    min-height: 420px;
    aspect-ratio: 16 / 11;
    background: #04101b;
    box-shadow: 0 40px 90px -36px rgba(0,0,0,.85);
    border: 1px solid var(--dc-glass-brd);
}
.dc-live__media {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .8s var(--dc-ease), transform 1.4s var(--dc-ease);
    will-change: opacity, transform;
}
.dc-live__media.is-active { opacity: 1; transform: scale(1); }
.dc-live__media img,
.dc-live__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc-live__stage-shade {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, rgba(4,12,22,.15) 0%, rgba(4,12,22,.25) 45%, rgba(4,12,22,.92) 100%);
    pointer-events: none;
}
.dc-live__badge {
    position: absolute; top: 18px; left: 18px; z-index: 4;
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 15px; border-radius: 999px;
    background: rgba(8,19,31,.66);
    border: 1px solid var(--dc-glass-brd);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.dc-live__badge-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #ff5a4d; }
.dc-live__badge-dot::after {
    content: ""; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid #ff5a4d; animation: dc-live-pulse 1.7s var(--dc-ease) infinite;
}
@keyframes dc-live-pulse { 0%{transform:scale(.5);opacity:1} 100%{transform:scale(1.9);opacity:0} }

.dc-live__caption { position: absolute; left: clamp(20px,3vw,34px); right: clamp(20px,3vw,34px); bottom: clamp(20px,3vw,30px); z-index: 4; }
.dc-live__cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    opacity: 0; transform: translateY(14px);
    transition: opacity .55s var(--dc-ease), transform .55s var(--dc-ease);
    pointer-events: none;
}
.dc-live__cap.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.dc-live__cap-tag {
    display: inline-flex; align-items: center; gap: 7px; margin-bottom: 10px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(212,162,78,.16); border: 1px solid rgba(212,162,78,.42);
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dc-gold-soft);
}
.dc-live__cap-tag svg { width: 13px; height: 13px; }
.dc-live__cap-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 600; color: #fff; line-height: 1.15; }
.dc-live__cap-desc { margin-top: 8px; max-width: 46ch; font-size: .98rem; line-height: 1.6; color: rgba(255,255,255,.82); }

/* ----------------------------- station list ----------------------- */
.dc-live__list { display: flex; flex-direction: column; gap: 12px; }
.dc-live__item {
    position: relative;
    display: flex; align-items: center; gap: 16px;
    width: 100%; text-align: left;
    padding: 16px 18px;
    border: 1px solid var(--dc-glass-brd);
    border-radius: 16px;
    background: var(--dc-glass);
    color: var(--dc-text);
    cursor: pointer;
    font-family: inherit;
    overflow: hidden;
    transition: background-color .35s var(--dc-ease), border-color .35s var(--dc-ease), transform .35s var(--dc-ease);
}
.dc-live__item:hover { transform: translateX(4px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.dc-live__item:focus-visible { outline: 3px solid var(--dc-gold-soft); outline-offset: 2px; }
.dc-live__item.is-active { background: rgba(212,162,78,.12); border-color: rgba(212,162,78,.5); }

.dc-live__item-ic {
    display: grid; place-items: center; flex: none;
    width: 50px; height: 50px; border-radius: 13px;
    color: var(--dc-gold);
    background: rgba(212,162,78,.12);
    border: 1px solid rgba(212,162,78,.3);
    transition: transform .4s var(--dc-ease);
}
.dc-live__item-ic svg { width: 26px; height: 26px; }
.dc-live__item.is-active .dc-live__item-ic { transform: scale(1.08) rotate(-3deg); }
.dc-live__item-body { flex: 1 1 auto; min-width: 0; }
.dc-live__item-name { font-size: 1.06rem; font-weight: 700; color: #fff; line-height: 1.25; }
.dc-live__item-meta { font-size: .85rem; color: rgba(255,255,255,.6); }
.dc-live__item-arrow { flex: none; color: rgba(255,255,255,.35); transition: transform .4s var(--dc-ease), color .4s var(--dc-ease); }
.dc-live__item-arrow svg { width: 20px; height: 20px; }
.dc-live__item.is-active .dc-live__item-arrow { color: var(--dc-gold); transform: translateX(3px); }

/* auto-advance progress bar (bottom edge of the active item) */
.dc-live__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: rgba(255,255,255,.08); }
.dc-live__bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--dc-gold-soft), var(--dc-gold)); }

/* ----------------------------- reveal states --------------------- */
.dc-live--anim .dc-live__head > *,
.dc-live--anim .dc-live__stage,
.dc-live--anim .dc-live__item { opacity: 0; }

/* ----------------------------- responsive ------------------------- */
@media (max-width: 980px) {
    .dc-live__body { grid-template-columns: 1fr; }
    .dc-live__stage { aspect-ratio: 16 / 12; min-height: 340px; }
}
@media (max-width: 600px) {
    .dc-live__item { padding: 13px 14px; gap: 13px; }
    .dc-live__item-ic { width: 44px; height: 44px; }
    .dc-live__item-arrow { display: none; }
    .dc-live__cap-desc { display: none; }
    .dc-live__stage { aspect-ratio: 4 / 5; }
}

@media (prefers-reduced-motion: reduce) {
    .dc-live__media { transition: opacity .3s linear; transform: none !important; }
    .dc-live__cap { transition: opacity .3s linear; }
    .dc-live--anim .dc-live__head > *,
    .dc-live--anim .dc-live__stage,
    .dc-live--anim .dc-live__item { opacity: 1 !important; }
    .dc-live__badge-dot::after { animation: none; }
}
