/* ============================================
   Sabat Shalom — Stiluri speciale pentru Sabat
   ============================================ */

:root {
    --sabbath-gold: #f0d060;
    --sabbath-gold-light: #f8e890;
    --sabbath-gold-dark: #c9a030;
    --sabbath-bg: #1a0f05;
    --sabbath-bg-gradient: linear-gradient(135deg, #1a0f05 0%, #2a1a0a 30%, #1a1a2e 70%, #0f1923 100%);
    --sabbath-warm-glow: rgba(240, 208, 96, 0.08);
    --sabbath-candle-glow: rgba(255, 180, 50, 0.3);
    --sabbath-text-cream: #f5e8c8;
    --sabbath-text-gold: #f0d060;
}

.sabbath-mode {
    --color-gold: var(--sabbath-gold);
    --color-gold-light: var(--sabbath-gold-light);
    --color-gold-dark: var(--sabbath-gold-dark);
}

/* ============================================
   Sabat Bar
   ============================================ */

:root { --sabbat-bar-height: 44px; }

.sabbat-bar {
    display: block; text-decoration: none;
    background: var(--sabbath-bg-gradient);
    border-bottom: 1px solid rgba(240, 208, 96, 0.15);
    cursor: pointer; transition: background 0.3s ease;
    position: fixed; top: 0; right: 0; left: 0;
    z-index: 1001; height: var(--sabbat-bar-height, 44px); overflow: hidden;
}

.premiere-bar ~ .sabbat-bar { display: none; }
.sabbat-bar + .premiere-bar { top: var(--sabbat-bar-height, 44px); }

.sabbat-bar:hover {
    background: linear-gradient(135deg, #2a1a10 0%, #3a2a10 30%, #2a2a3e 70%, #1a2a33 100%);
}

.sabbat-bar::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 208, 96, 0.3), transparent);
}

.sabbat-bar__inner {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.55rem 1rem; height: 100%;
    max-width: var(--max-width, 1200px); margin: 0 auto;
}

.sabbat-bar__badge {
    display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--sabbath-gold);
    background: rgba(240, 208, 96, 0.12);
    border: 1px solid rgba(240, 208, 96, 0.25); border-radius: 6px;
    padding: 0.25rem 0.55rem; white-space: nowrap;
}

.sabbat-bar__badge-icon {
    font-size: 0.85rem; line-height: 1;
    animation: sabbathCandleFlicker 3s ease-in-out infinite;
}

.sabbat-bar__scroll-wrap {
    flex: 1; min-width: 0; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.sabbat-bar__scroll {
    display: flex; align-items: center; gap: 2rem;
    animation: sabbathScroll 30s linear infinite; width: max-content;
}

.sabbat-bar__text {
    font-size: 0.82rem; color: var(--sabbath-text-cream);
    white-space: nowrap; font-weight: 500; letter-spacing: 0.02em;
}

.sabbat-bar__sep { color: rgba(240, 208, 96, 0.3); font-size: 0.6rem; flex-shrink: 0; }

.sabbat-bar__cta {
    display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0;
    font-size: 0.72rem; font-weight: 600; color: var(--sabbath-gold);
    white-space: nowrap; padding: 0.3rem 0.65rem;
    border: 1px solid rgba(240, 208, 96, 0.25); border-radius: 6px;
    transition: all 0.25s ease; background: rgba(240, 208, 96, 0.06);
    text-decoration: none;
}

.sabbat-bar:hover .sabbat-bar__cta {
    background: rgba(240, 208, 96, 0.15); border-color: rgba(240, 208, 96, 0.5);
}

.sabbat-bar__cta svg { transition: transform 0.25s ease; }
.sabbat-bar:hover .sabbat-bar__cta svg { transform: translateX(3px); }

@keyframes sabbathScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ============================================
   Lumanare Virtuala
   ============================================ */

.sabbath-candle {
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 0.25rem; cursor: pointer; user-select: none;
    transition: transform 0.3s ease; position: relative;
}

.sabbath-candle:hover { transform: scale(1.05); }
.sabbath-candle:active { transform: scale(0.95); }

.sabbath-candle__body {
    width: 22px; height: 44px;
    background: linear-gradient(180deg, #f5e6c8 0%, #e8d5a8 40%, #d4c090 100%);
    border-radius: 3px 3px 2px 2px; position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.sabbath-candle__body::before {
    content: ''; position: absolute; top: -10px; left: 50%;
    transform: translateX(-50%); width: 8px; height: 14px;
    background: linear-gradient(180deg, transparent 0%, #8b7355 100%);
    border-radius: 4px 4px 0 0;
}

.sabbath-candle__wick {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 12px; background: #5a4a3a; border-radius: 1px;
    opacity: 0; transition: opacity 0.5s ease;
}

.sabbath-candle__flame {
    position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
    width: 12px; height: 18px;
    background: radial-gradient(ellipse at 50% 60%, #ffd700 0%, #ffaa00 40%, #ff6600 70%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0; transition: opacity 0.6s ease, transform 0.3s ease;
    filter: blur(0.5px); pointer-events: none;
}

.sabbath-candle__glow {
    position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px;
    background: radial-gradient(circle, rgba(255, 180, 50, 0.25) 0%, transparent 70%);
    border-radius: 50%; opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}

.sabbath-candle--lit .sabbath-candle__wick { opacity: 1; }
.sabbath-candle--lit .sabbath-candle__flame {
    opacity: 1; animation: sabbathFlameFlicker 1.5s ease-in-out infinite alternate;
}
.sabbath-candle--lit .sabbath-candle__glow {
    opacity: 1; animation: sabbathGlowPulse 2s ease-in-out infinite alternate;
}
.sabbath-candle--lit .sabbath-candle__body {
    background: linear-gradient(180deg, #f5e6c8 0%, #e8d5a8 30%, #d4c090 80%, #c0a870 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 8px rgba(255, 180, 50, 0.15);
}

.sabbath-candle__base {
    width: 32px; height: 6px;
    background: linear-gradient(180deg, #d4c090 0%, #b8a070 100%);
    border-radius: 2px; margin-top: -1px; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sabbath-candle__label {
    font-size: 0.65rem; color: var(--sabbath-text-cream); opacity: 0.7;
    margin-top: 0.25rem; white-space: nowrap; font-weight: 500; letter-spacing: 0.03em;
}

/* Candle variants */
.sabbath-candle--small .sabbath-candle__body { width: 16px; height: 28px; }
.sabbath-candle--small .sabbath-candle__base { width: 22px; height: 4px; }
.sabbath-candle--small .sabbath-candle__flame { width: 8px; height: 12px; top: -16px; }
.sabbath-candle--small .sabbath-candle__glow { width: 28px; height: 28px; top: -22px; }
.sabbath-candle--small .sabbath-candle__wick { height: 8px; top: -8px; }
.sabbath-candle--small .sabbath-candle__body::before { width: 6px; height: 10px; top: -8px; }
.sabbath-candle--small .sabbath-candle__label { font-size: 0.55rem; }

.sabbath-candle--large .sabbath-candle__body { width: 36px; height: 72px; }
.sabbath-candle--large .sabbath-candle__base { width: 50px; height: 8px; }
.sabbath-candle--large .sabbath-candle__flame { width: 20px; height: 28px; top: -34px; }
.sabbath-candle--large .sabbath-candle__glow { width: 64px; height: 64px; top: -46px; }
.sabbath-candle--large .sabbath-candle__wick { height: 16px; top: -14px; }
.sabbath-candle--large .sabbath-candle__body::before { width: 12px; height: 18px; top: -14px; }
.sabbath-candle--large .sabbath-candle__label { font-size: 0.75rem; }

/* ============================================
   Animations
   ============================================ */

@keyframes sabbathFlameFlicker {
    0% { transform: translateX(-50%) scale(1) rotate(-1deg); opacity: 0.9; }
    25% { transform: translateX(-50%) scale(1.08, 0.92) rotate(1deg); opacity: 1; }
    50% { transform: translateX(-50%) scale(0.95, 1.05) rotate(-0.5deg); opacity: 0.85; }
    75% { transform: translateX(-50%) scale(1.05, 0.95) rotate(0.5deg); opacity: 0.95; }
    100% { transform: translateX(-50%) scale(1) rotate(0deg); opacity: 0.9; }
}

@keyframes sabbathGlowPulse {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.9; transform: translateX(-50%) scale(1.12); }
}

@keyframes sabbathCandleFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.03); }
    75% { opacity: 0.8; transform: scale(0.97); }
}

@keyframes sabbathSparkFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.4; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-120px) translateX(20px) scale(0.3); opacity: 0; }
}

.sabbath-spark {
    position: absolute; width: 3px; height: 3px; background: var(--sabbath-gold);
    border-radius: 50%; pointer-events: none;
    animation: sabbathSparkFloat 4s ease-out forwards; opacity: 0;
    box-shadow: 0 0 4px var(--sabbath-gold), 0 0 8px rgba(240, 208, 96, 0.3);
}

/* ============================================
   Dashboard
   ============================================ */

.daily-card--sabbath {
    border: 2px solid rgba(240, 208, 96, 0.25) !important;
    background: linear-gradient(135deg, #1a0f05 0%, #2a1a0a 50%, #1a1a2e 100%) !important;
    color: var(--sabbath-text-cream); position: relative; overflow: hidden;
}

.daily-card--sabbath::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--sabbath-gold-dark), var(--sabbath-gold), var(--sabbath-gold-light), var(--sabbath-gold));
    z-index: 1;
}

.daily-card--sabbath .daily-card__title { color: var(--sabbath-gold) !important; }
.daily-card--sabbath .daily-card__header .daily-card__icon { filter: none; }
.daily-card--sabbath .daily-card__desc { color: rgba(245, 232, 200, 0.7) !important; }

.sabbath-verse {
    padding: 1.25rem; margin: 0.75rem 0;
    background: rgba(240, 208, 96, 0.06);
    border: 1px solid rgba(240, 208, 96, 0.15);
    border-radius: var(--radius); position: relative;
}

.sabbath-verse__text {
    font-family: var(--font-display); font-size: 1.05rem; line-height: 1.85;
    font-style: italic; color: var(--sabbath-text-cream);
    margin: 0 0 0.65rem; position: relative; z-index: 1;
}

.sabbath-verse__ref {
    display: block; font-size: 0.85rem; font-style: normal;
    color: var(--sabbath-gold); font-weight: 600; text-align: right;
}

.sabbath-devotional {
    padding: 1rem 0; border-top: 1px solid rgba(240, 208, 96, 0.1); margin-top: 0.75rem;
}

.sabbath-devotional__title {
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    color: var(--sabbath-gold-light); margin-bottom: 0.5rem;
}

.sabbath-devotional__text {
    font-size: 0.9rem; line-height: 1.75; color: rgba(245, 232, 200, 0.8);
}

.sabbath-timer {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 1rem; margin-top: 0.75rem;
    background: rgba(240, 208, 96, 0.08);
    border: 1px solid rgba(240, 208, 96, 0.12);
    border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--sabbath-text-cream);
}

.sabbath-timer__icon { font-size: 1rem; flex-shrink: 0; }
.sabbath-timer__text { font-weight: 500; flex: 1; }
.sabbath-timer__value { font-weight: 700; color: var(--sabbath-gold); white-space: nowrap; }

/* ============================================
   Homepage
   ============================================ */

.sabbath-hero-intro {
    display: block; position: relative; max-width: 620px; padding: 1.5rem 2rem 1.25rem;
    margin-bottom: 1.25rem; background: rgba(245, 232, 200, 0.04);
    border: 1px solid rgba(240, 208, 96, 0.12); border-radius: 16px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sabbath-hero-intro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 208, 96, 0.12);
    border-color: rgba(240, 208, 96, 0.25);
}

.sabbath-hero-intro__glow {
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(240, 208, 96, 0.06) 0%, transparent 70%);
    pointer-events: none; border-radius: 50%;
}

.sabbath-hero-intro__title { margin-bottom: 0.4rem; }
.sabbath-hero-intro__subtitle {
    margin-bottom: 0; font-size: 0.92rem;
    color: rgba(245, 232, 200, 0.65);
}

.hero__verse--sabbath {
    display: block; text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: var(--radius); max-width: 620px;
}

.hero__verse--sabbath:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(240, 208, 96, 0.15); }
.hero__verse--sabbath:hover .hero__verse-ref { color: var(--color-gold-light); }
.hero__verse--sabbath .hero__verse-ref { transition: color 0.25s ease; }

.hero__verse-footer-arrow {
    font-size: 0.8rem; color: var(--sabbath-gold); opacity: 0.6;
    transition: opacity 0.25s ease, transform 0.25s ease; margin-left: 0.5rem;
}

.hero__verse--sabbath:hover .hero__verse-footer-arrow { opacity: 1; transform: translateX(4px); }

.sabbath-hero-accent {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem; background: rgba(240, 208, 96, 0.12);
    border: 1px solid rgba(240, 208, 96, 0.2); border-radius: 50px;
    color: var(--sabbath-gold-light); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.03em; animation: sabbathAccentPulse 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

.sabbath-hero-accent__icon { font-size: 0.9rem; animation: sabbathCandleFlicker 3s ease-in-out infinite; }

@keyframes sabbathAccentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(240, 208, 96, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(240, 208, 96, 0.02); }
}

/* ============================================
   Pagina /sabat
   ============================================ */

.sabbath-page-hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0f0802 0%, #1a0f05 30%, #1a1a2e 60%, #0f1923 100%);
    padding: 3rem 0 2.5rem; text-align: center; display: flex; align-items: center;
}

.sabbath-page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 208, 96, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(240, 208, 96, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(240, 208, 96, 0.03) 0%, transparent 35%);
    pointer-events: none;
}

.sabbath-page-hero__content { position: relative; z-index: 2; }

.sabbath-page-hero__badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 1rem; background: rgba(240, 208, 96, 0.12);
    border: 1px solid rgba(240, 208, 96, 0.2); border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; color: var(--sabbath-gold-light);
    margin-bottom: 0.75rem;
}

.sabbath-page-hero__title {
    font-family: var(--font-display); font-size: 2.6rem; color: var(--color-white);
    margin-bottom: 0.5rem; font-weight: 700; line-height: 1.2;
}

.sabbath-page-hero__subtitle {
    font-size: 1rem; color: rgba(245, 232, 200, 0.7);
    max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.6;
}

.sabbath-page-hero__candle { margin: 0 auto 1.5rem; }

.sabbath-page-hero__timer {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; background: rgba(240, 208, 96, 0.08);
    border: 1px solid rgba(240, 208, 96, 0.15); border-radius: var(--radius);
    font-size: 0.82rem; color: var(--sabbath-text-cream); margin-top: 0.25rem;
}

.sabbath-page-hero__timer-value { font-weight: 700; color: var(--sabbath-gold); font-size: 1rem; }

.sabbath-page-content { padding: 4rem 0 5rem; background: var(--color-cream); }
.sabbath-page-content__inner { max-width: 720px; margin: 0 auto; }
.sabbath-page-section { margin-bottom: 3rem; }

.sabbath-page-section__title {
    font-family: var(--font-display); font-size: 1.6rem;
    color: var(--color-primary); margin-bottom: 1rem; font-weight: 600;
}

.sabbath-page-section__text {
    font-size: 1.05rem; line-height: 1.85; color: var(--color-text); margin-bottom: 1rem;
}

.sabbath-verse-card {
    display: block; padding: 2rem 2.5rem; background: var(--color-white-pure);
    border: 1px solid rgba(240, 208, 96, 0.2); border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(26, 42, 74, 0.06); margin-bottom: 1.5rem;
    position: relative; text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sabbath-verse-card--clickable:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240, 208, 96, 0.12); }
.sabbath-verse-card--clickable:hover .sabbath-verse-card__ref { color: var(--sabbath-gold); }
.sabbath-verse-card--clickable .sabbath-verse-card__ref { transition: color 0.25s ease; }

.sabbath-verse-card::before {
    content: '\201C'; position: absolute; top: 0.5rem; left: 1.25rem;
    font-family: var(--font-display); font-size: 4rem; color: var(--sabbath-gold);
    opacity: 0.12; pointer-events: none; line-height: 1;
}

.sabbath-verse-card__text {
    font-family: var(--font-display); font-size: 1.15rem; line-height: 1.85;
    font-style: italic; color: var(--color-text); margin: 0 0 0.75rem;
}

.sabbath-verse-card__ref {
    display: block; font-size: 0.9rem; font-style: normal;
    color: var(--color-primary); font-weight: 600; text-align: right;
}

/* ============================================
   Resource Cards
   ============================================ */

.sabbath-resource-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1rem;
}

.sabbath-resource-card {
    position: relative; display: flex; flex-direction: column;
    padding: 2rem 1.5rem 1.5rem; background: var(--color-white-pure);
    border: 1px solid rgba(240, 208, 96, 0.2); border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(26, 42, 74, 0.06); text-decoration: none; color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden;
}

.sabbath-resource-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(240, 208, 96, 0.12); border-color: rgba(240, 208, 96, 0.4); }

.sabbath-resource-card__bg {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--sabbath-gold-dark), var(--sabbath-gold), var(--sabbath-gold-light), var(--sabbath-gold));
    opacity: 0.6; transition: opacity 0.3s ease;
}

.sabbath-resource-card:hover .sabbath-resource-card__bg { opacity: 1; }
.sabbath-resource-card__icon { font-size: 2rem; margin-bottom: 0.75rem; line-height: 1; }

.sabbath-resource-card__title {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
    color: var(--color-primary); margin-bottom: 0.6rem; line-height: 1.35; transition: color 0.25s ease;
}

.sabbath-resource-card:hover .sabbath-resource-card__title { color: var(--sabbath-gold-dark); }

.sabbath-resource-card__desc {
    font-size: 0.88rem; line-height: 1.7; color: var(--color-text-light);
    margin-bottom: 1rem; flex: 1;
}

.sabbath-resource-card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.sabbath-resource-card__tag {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; padding: 0.2rem 0.5rem; background: rgba(240, 208, 96, 0.1);
    color: var(--sabbath-gold-dark); border-radius: 4px; transition: background 0.25s ease;
}

.sabbath-resource-card:hover .sabbath-resource-card__tag { background: rgba(240, 208, 96, 0.18); }

.sabbath-resource-card__arrow {
    font-size: 0.82rem; font-weight: 600; color: var(--sabbath-gold-dark);
    display: flex; align-items: center; gap: 0.35rem; transition: gap 0.25s ease; margin-top: auto;
}

.sabbath-resource-card:hover .sabbath-resource-card__arrow { gap: 0.6rem; }

/* ============================================
   Timeline Sabat — cu efect de lupa si scroll
   ============================================ */

.sabbath-timeline {
    position: relative; margin: 1.5rem 0; padding-left: 2rem;
}

/* Linia aurie */
.sabbath-timeline::before {
    content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, rgba(240, 208, 96, 0.6) 0%, var(--sabbath-gold) 20%, var(--sabbath-gold) 80%, rgba(240, 208, 96, 0.6) 100%);
    border-radius: 2px; z-index: 1;
}

.sabbath-timeline__item {
    position: relative; margin-bottom: 1.75rem; padding-left: 1.5rem;
}

.sabbath-timeline__item:last-child { margin-bottom: 0; }

/* Bullet-ul auriu — pinned la linie, scale la hover si activ */
.sabbath-timeline__dot {
    position: absolute; left: -1.55rem; top: 0.35rem;
    width: 14px; height: 14px; background: var(--color-white-pure);
    border: 3px solid var(--sabbath-gold); border-radius: 50%;
    z-index: 3; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Cardul — efect de lupa (scale) */
.sabbath-timeline__content {
    background: var(--color-white-pure);
    border: 1px solid rgba(240, 208, 96, 0.15);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    transform-origin: left center;
}

/* ========== Bullet activ (la scroll) — urmareste pozitia ========== */
.sabbath-timeline__dot--active {
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(240, 208, 96, 0.6), 0 0 40px rgba(240, 208, 96, 0.2);
    background: var(--sabbath-gold);
    border-color: var(--sabbath-gold-dark);
}

/* ========== Lupa — cardul activ se mareste vizibil la scroll ========== */
.sabbath-timeline__item--active .sabbath-timeline__content {
    transform: scale(1.06);
    border-color: rgba(240, 208, 96, 0.5);
    box-shadow: 0 12px 36px rgba(240, 208, 96, 0.18), 0 0 0 1px rgba(240, 208, 96, 0.1);
    background: linear-gradient(135deg, var(--color-white-pure) 0%, rgba(255, 248, 235, 0.6) 100%);
}

/* Titlul cardului activ — devine auriu */
.sabbath-timeline__item--active .sabbath-timeline__heading {
    color: var(--sabbath-gold-dark);
}

/* Data badge pe cardul activ — mai pregnant */
.sabbath-timeline__item--active .sabbath-timeline__date {
    background: rgba(240, 208, 96, 0.2);
    color: var(--sabbath-gold-dark);
    box-shadow: 0 1px 4px rgba(240, 208, 96, 0.15);
}

/* Tranzitii line pentru heading si date la activare/dezactivare */
.sabbath-timeline__heading {
    transition: color 0.4s ease;
}

.sabbath-timeline__date {
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Data badge */
.sabbath-timeline__date {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--sabbath-gold-dark); background: rgba(240, 208, 96, 0.1);
    padding: 0.15rem 0.55rem; border-radius: 4px; margin-bottom: 0.35rem;
}

.sabbath-timeline__heading {
    font-family: var(--font-display); font-size: 1rem;
    color: var(--color-primary); margin-bottom: 0.3rem; font-weight: 600;
}

.sabbath-timeline__content p {
    font-size: 0.88rem; line-height: 1.7; color: var(--color-text-light); margin: 0;
}

.sabbath-timeline__content strong { color: var(--color-primary); }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    :root { --sabbat-bar-height: 40px; }
    .sabbat-bar__inner { padding: 0.4rem 0.75rem; gap: 0.6rem; }
    .sabbat-bar__badge { font-size: 0.62rem; padding: 0.2rem 0.4rem; }
    .sabbat-bar__text { font-size: 0.75rem; }
    .sabbat-bar__cta-text { display: none; }
    .sabbath-page-hero__title { font-size: 1.8rem; }
    .sabbath-page-hero { padding: 2.5rem 0 2rem; }
    .sabbath-verse-card { padding: 1.5rem; }
    .sabbath-resource-cards { grid-template-columns: repeat(2, 1fr); }
    .sabbath-candle--large .sabbath-candle__body { width: 28px; height: 56px; }
    .sabbath-candle--large .sabbath-candle__base { width: 38px; height: 6px; }
    .sabbath-candle--large .sabbath-candle__flame { width: 16px; height: 22px; }
    /* Sabbath hero homepage — prevenim overflow pe mobil */
    .sabbath-hero-intro {
        max-width: 100%;
        padding: 1.25rem 1.25rem 1rem;
    }
    .hero__verse--sabbath {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    :root { --sabbat-bar-height: 38px; }
    .sabbat-bar__badge { font-size: 0.55rem; padding: 0.15rem 0.3rem; }
    .sabbat-bar__badge-icon { font-size: 0.7rem; }
    .sabbat-bar__text { font-size: 0.7rem; }
    .sabbath-page-hero__title { font-size: 1.5rem; }
    .sabbath-page-hero__subtitle { font-size: 0.88rem; }
    .sabbath-page-section__title { font-size: 1.25rem; }
    .sabbath-verse-card { padding: 1.25rem; }
    .sabbath-verse-card__text { font-size: 1rem; }
    .sabbath-resource-cards { grid-template-columns: 1fr; }
    .sabbath-resource-card { padding: 1.5rem 1.25rem 1.25rem; }
    .sabbath-timeline { padding-left: 1rem; }
    .sabbath-timeline__content { padding: 0.85rem 1rem; }
    .sabbath-timeline__item { padding-left: 0.5rem; }
    .sabbath-timeline__dot { width: 10px; height: 10px; left: -1.15rem; top: 0.4rem; }
    .sabbath-timeline__item--active .sabbath-timeline__content { transform: scale(1.03); }
    .sabbath-timeline__dot--active { transform: scale(1.2); box-shadow: 0 0 10px rgba(240, 208, 96, 0.4); }
}
