/* ============================================================
   Teatru Guguta - stiluri pentru paginile noi (publice).
   Foloseste aceleasi variabile din style.css.
   ============================================================ */

.container { max-width: 1408px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 699px) { .container { padding: 0 20px; } }

/* ---------- Page header / breadcrumbs ---------- */
.page-header { padding: 24px 0; }
.page-header__inner {
    max-width: 1408px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 699px) { .page-header__inner { padding: 0 20px; } }
.page-header__banner {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    background:
        linear-gradient(90deg, rgba(40,18,22,0.92) 0%, rgba(40,18,22,0.78) 45%, rgba(40,18,22,0.40) 75%, rgba(40,18,22,0.10) 100%),
        url('/assets/img/decorative-img/bg-spectales.png') no-repeat center/cover;
    border-radius: 32px;
    box-sizing: border-box;
    min-height: 240px;
    padding: 40px;
}
@media (max-width: 699px) {
    .page-header__banner {
        background:
            linear-gradient(180deg, rgba(40,18,22,0.55) 0%, rgba(40,18,22,0.88) 100%),
            url('/assets/img/decorative-img/bg-spectales.png') no-repeat 75% center/cover;
    }
}
@media (max-width: 1024px) { .page-header__banner { min-height: 200px; padding: 32px; } }
@media (max-width: 699px)  { .page-header__banner { min-height: 160px; padding: 24px; border-radius: 24px; background-position: 75% center; } }

.page-header__title {
    font-weight: 800;
    font-size: clamp(28px, 4vw, 56px);
    color: var(--gold-bright);
    letter-spacing: -.015em;
    margin: 0 0 8px;
    line-height: 1.05;
}
.page-header__lead {
    color: rgba(255,255,255,.9);
    font-size: 17px;
    max-width: 720px;
    margin: 0;
}
@media (max-width: 699px) { .page-header__lead { font-size: 15px; } }

.breadcrumbs { margin-bottom: 18px; }
.breadcrumbs ol {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    font-size: 13px; color: rgba(255, 255, 255, 0.7);
    list-style: none; padding: 0; margin: 0;
}
.breadcrumbs li { list-style: none; }
.breadcrumbs li::marker { content: ''; }
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; opacity: .5; }
.breadcrumbs a { color: var(--bg-2); transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span[aria-current="page"] { color: #ffffff; font-weight: 500; }

/* ---------- Header dropdown ---------- */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.has-dropdown__chevron {
    transition: transform .2s ease;
    flex-shrink: 0;
}
.main-nav .has-dropdown:hover > a .has-dropdown__chevron,
.main-nav .has-dropdown:focus-within > a .has-dropdown__chevron {
    transform: rotate(180deg);
}
.main-nav .has-dropdown:hover > a,
.main-nav .has-dropdown:focus-within > a { color: var(--gold); }
.main-nav .dropdown {
    position: absolute; top: 100%; left: 0; width: max-content; min-width: 160px; max-width: 280px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 8px; display: none;
    box-shadow: 0 12px 32px rgba(193,41,62,.18);
    z-index: 200;
}
.main-nav .dropdown li { display: block; }
.main-nav .dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--text); }
.main-nav .dropdown a:hover { background: var(--bg-2); color: var(--primary); }
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown { display: block; }

/* ---------- Language switch dropdown ---------- */
.lang-switch { position: relative; }
.lang-switch__toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
    padding: 8px 12px; font-size: 13px; font-weight: 600;
    letter-spacing: .03em; cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}
.lang-switch__toggle:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.lang-switch__toggle svg { transition: transform .2s; }
.lang-switch.is-open .lang-switch__toggle { border-color: var(--gold-bright); color: var(--gold-bright); }
.lang-switch.is-open .lang-switch__toggle svg { transform: rotate(180deg); }
.lang-switch__menu {
    position: absolute; top: calc(100% + 6px); right: 0;
    width: max-content; min-width: 0; list-style: none; margin: 0; padding: 6px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; box-shadow: 0 12px 32px rgba(193,41,62,.18);
    display: none; z-index: 200;
}
.lang-switch.is-open .lang-switch__menu { display: block; }
.lang-switch__menu li { list-style: none; }
.lang-switch__menu a {
    display: block; padding: 10px 14px; border-radius: 8px;
    font-size: 14px; color: var(--text); transition: background .2s, color .2s;
}
.lang-switch__menu a:hover { background: var(--bg-2); color: var(--primary); }
.lang-switch__menu a.is-active { color: var(--primary); background: var(--bg-2); font-weight: 600; }

/* ---------- About sections ---------- */
.about-stack { padding: 24px 0 80px; }
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.about-row--reverse { direction: rtl; }
.about-row--reverse > * { direction: ltr; }
.about-row__media img { border-radius: 16px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.about-row__title {
    font-weight: 700; letter-spacing: -.01em;
    font-size: 32px; color: var(--gold); margin-bottom: 16px;
}
.about-row__text { color: var(--text-muted); font-size: 16px; line-height: 1.7; }
@media (max-width: 800px) {
    .about-row { grid-template-columns: 1fr; gap: 24px; }
    .about-row--reverse { direction: ltr; }
}

/* ---------- People grid (actori / administratie) ---------- */
.people { padding-block: 24px 80px; }
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.person-card { transition: transform .25s; }
.person-card:hover { transform: translateY(-4px); }
.person-card__photo {
    aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
    background: var(--surface); margin-bottom: 12px;
}
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-card__name { font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.person-card__role { color: var(--text-muted); font-size: 14px; }

.person-detail { padding-block: 24px 80px; }
.person-detail__grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; }
.person-detail__photo img { width: 100%; border-radius: 16px; aspect-ratio: 3/4; object-fit: cover; }
.person-detail__bio { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
@media (max-width: 800px) { .person-detail__grid { grid-template-columns: 1fr; } }

/* ---------- Show cards (lista spectacole) ---------- */
.shows { padding-block: 24px 80px; }
.shows-list { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 32px 0 0;
    flex-wrap: wrap;
}
.pagination__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination__list li { list-style: none; }
.pagination__btn,
.pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.pagination__btn:hover,
.pagination__page:hover {
    background: var(--bg-2);
    border-color: rgba(193,41,62,0.30);
    color: var(--primary);
}
.pagination__page.is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.pagination__btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.pagination__gap {
    color: var(--text-muted);
    padding: 0 4px;
    font-weight: 600;
}
@media (max-width: 480px) {
    .pagination__btn, .pagination__page { min-width: 34px; height: 34px; font-size: 13px; padding: 0 8px; }
}
.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.shows-grid .nbl-slimPosterBlock { width: 100%; }
.show-poster-card { display: flex; flex-direction: column; gap: 10px; }
.show-poster-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;
    text-align: center;
}
.show-poster-card__details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: background .15s, color .15s, border-color .15s;
}
.show-poster-card__details:hover {
    background: rgba(255,255,255,0.12);
    color: var(--gold);
    border-color: var(--gold);
}
@media (max-width: 1024px) {
    .shows-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 599px) {
    .shows-grid { grid-template-columns: 1fr; gap: 16px; }
}
.show-card {
    display: grid; grid-template-columns: 280px 1fr;
    background: var(--surface); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
}
.show-card__media { position: relative; aspect-ratio: 16/10; background: var(--bg-2); }
.show-card__media img { width: 100%; height: 100%; object-fit: cover; }
.show-card__age { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.6); color: #fff; padding: 4px 10px; border-radius: 12px; font-size: 12px; }
.show-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.show-card__title { font-size: 22px; font-weight: 700; }
.show-card__title a:hover { color: var(--primary); }
.show-card__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; color: var(--text-muted); font-size: 14px; }
.show-card__meta li::before { content: '•'; margin-right: 8px; opacity: .4; }
.show-card__meta li:first-child::before { content: ''; margin: 0; }
.show-card__desc { color: var(--text-muted); font-size: 14px; }
.show-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.show-card__price { font-size: 20px; font-weight: 700; color: var(--text); }
.show-card__cta { padding: 10px 20px; font-size: 14px; }
@media (max-width: 700px) {
    .show-card { grid-template-columns: 1fr; }
    .show-card__media { aspect-ratio: 16/9; }
}

/* ---------- Show hero (stil Netflix - imaginea full bg) ---------- */
.show-hero {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    margin-bottom: 40px;
}
.show-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.show-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10,8,12,0.92) 0%, rgba(10,8,12,0.7) 35%, rgba(10,8,12,0.15) 70%, rgba(10,8,12,0) 100%),
        linear-gradient(0deg, rgba(10,8,12,1) 0%, rgba(10,8,12,0.4) 30%, rgba(10,8,12,0) 100%);
}
.show-hero__inner {
    position: relative;
    padding-top: 80px;
    padding-bottom: 56px;
    width: 100%;
}
.show-hero .breadcrumbs { margin-bottom: 32px; }
.show-hero__content { max-width: 620px; }
.show-hero__badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: .5px;
}
.show-hero__title {
    color: #fff;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin: 0 0 16px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.show-hero__meta {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
    align-items: center;
}
.show-hero__meta-sep { color: rgba(255,255,255,.4); }
.show-hero__lead {
    color: rgba(255,255,255,.9);
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 24px;
    max-width: 540px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.show-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.show-hero__status {
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
}
.show-hero__status.is-past,
.show-hero__status.is-unscheduled { color: rgba(255,255,255,.6); }

@media (max-width: 800px) {
    .show-hero { min-height: 460px; align-items: flex-end; }
    .show-hero__bg { object-position: center top; }
    .show-hero__overlay {
        background: linear-gradient(0deg, rgba(10,8,12,1) 0%, rgba(10,8,12,0.6) 45%, rgba(10,8,12,0.1) 100%);
    }
    .show-hero__inner { padding-top: 32px; padding-bottom: 32px; }
    .show-hero__title { font-size: clamp(32px, 9vw, 48px); }
    .show-hero__lead { font-size: 15px; }
    .show-hero__actions { width: 100%; }
    .show-hero__actions .btn-cta { width: 100%; justify-content: center; }
}

/* Descriere full HTML din admin (sub hero) */
.show-content { padding-block: 0 56px; }
.show-content .show-detail__desc { max-width: 880px; }

/* Legacy show-detail (compat - nu mai e folosit pe spectacol.php) */
.show-detail__backdrop { display: none; }

.show-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.show-detail__main { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.show-detail__main * { max-width: 100%; }
@media (max-width: 960px) {
    .show-detail__grid { grid-template-columns: 1fr; gap: 28px; }
}

.show-detail__title {
    color: var(--primary);
    font-size: clamp(48px, 7vw, 96px);
    line-height: .95;
    letter-spacing: -.02em;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 16px;
    word-break: break-word;
}
.show-detail__sub {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px;
}
.show-detail__sub-sep { margin: 0 8px; color: var(--text-muted); }

.show-detail__stats {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
    color: var(--text-muted);
    font-size: 15px;
}
.show-detail__stats li { display: inline-flex; align-items: center; }
.show-detail__stats li strong {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
}

.show-detail__lead {
    color: var(--text);
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: 580px;
}
.show-detail__desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 580px;
}
/* cand contine HTML din admin, reducem tipografia ca sa nu rupa layoutul cu 2 col */
.show-detail__desc.page-body { font-size: 15px; line-height: 1.6; }
.show-detail__desc.page-body p { margin: 0 0 12px; color: var(--text-muted); }
.show-detail__desc.page-body h2 { font-size: 18px; margin: 18px 0 8px; }
.show-detail__desc.page-body h3 { font-size: 16px; margin: 16px 0 6px; }
.show-detail__desc.page-body h4 { font-size: 15px; margin: 14px 0 6px; }
.show-detail__desc.page-body ul,
.show-detail__desc.page-body ol { margin: 0 0 12px; padding-left: 20px; }
.show-detail__desc.page-body img { max-width: 100%; margin: 12px 0; }
.show-detail__desc.page-body strong { color: var(--text); }
.show-detail__desc.page-body br + br { display: none; }

.show-detail__status {
    display: inline-flex;
    align-items: center;
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px;
}
.show-detail__status.is-sold { color: var(--primary); }
.show-detail__status.is-past,
.show-detail__status.is-unscheduled { color: var(--text-muted); }

.show-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.show-detail__actions .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-cta--lg { padding: 14px 32px; font-size: 16px; border-radius: 14px; }
.btn-cta.is-disabled { opacity: .5; pointer-events: none; }

.show-detail__media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
    background:
        radial-gradient(60% 50% at 50% 50%, rgba(193,41,62,0.18) 0%, rgba(0,0,0,0) 70%),
        #0d0a0e;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 640px;
    min-height: 360px;
}
.show-detail__poster {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.show-detail__poster img {
    display: block;
    max-width: 100%;
    max-height: 640px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 960px) {
    .show-detail__media { max-height: 480px; min-height: 280px; }
    .show-detail__poster img { max-height: 480px; }
}

/* Video trailer - sectiune dedicata, lata, sub hero */
.show-detail__video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.show-detail__video iframe,
.show-detail__video video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Event info (organizer + map) ---------- */
.event-info { padding-block: 32px 64px; }
.event-info__heading {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}
.event-info__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch;
}
@media (max-width: 800px) {
    .event-info__grid { grid-template-columns: 1fr; gap: 20px; }
}
.event-info__list {
    margin: 0;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.event-info__row { display: flex; flex-direction: column; gap: 4px; }
.event-info__row dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    font-weight: 600;
}
.event-info__row dd {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}
.event-info__row a { color: var(--text); }
.event-info__row a:hover { color: var(--gold); }
.event-info__map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text) !important;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: background .15s, color .15s, border-color .15s, transform .15s;
    align-self: flex-start;
}
.event-info__map-link:hover {
    background: #fff;
    color: #111 !important;
    border-color: #fff;
    transform: translateY(-1px);
}
.event-info__map-link svg { flex-shrink: 0; }

.event-info__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #1a1418;
    min-height: 340px;
    height: 100%;
}
.event-info__map iframe {
    display: block;
    width: 100%; height: 100%;
    min-height: 340px;
    filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.9) saturate(0.7);
}

/* ---------- Show related (luna aceasta) ---------- */
.show-related { padding-block: 24px 80px; }
.show-related__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.show-related__heading {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.show-related__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: color .15s;
}
.show-related__more:hover { color: var(--gold); }
.show-related__more svg { margin-top: 1px; }

/* ---------- Show content (galerie) ---------- */
.show-content { padding-block: 24px 64px; }
.show-content__heading {
    font-size: 22px; font-weight: 700; color: var(--gold);
    margin: 0 0 16px;
}

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.tab { padding: 10px 18px; border-radius: 10px; background: var(--surface); color: var(--text-muted); font-size: 14px; border: 1px solid var(--border); }
.tab:hover { color: var(--text); }
.tab.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- Events ---------- */
.events { padding-block: 24px 80px; }
.events-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.event-card { background: var(--surface); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.event-card__media { display: block; aspect-ratio: 16/9; background: var(--bg-2); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 20px; }
.event-card__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.event-card__title a:hover { color: var(--primary); }
.event-card__date, .event-card__loc { color: var(--text-muted); font-size: 14px; margin-bottom: 4px; }
.event-card__desc { color: var(--text-muted); font-size: 14px; margin-top: 10px; }

.event-detail { padding: 24px 0 80px; }
.event-detail__media { margin: 0 0 24px; }
.event-detail__media img { width: 100%; border-radius: 16px; max-height: 480px; object-fit: cover; }
.event-detail__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0 0 12px;
}
.event-detail__lead { color: var(--text); font-size: 18px; line-height: 1.55; margin: 0 0 16px; max-width: 760px; }
.event-detail__meta { display: flex; gap: 24px; flex-wrap: wrap; color: var(--text-muted); margin-bottom: 24px; }
.event-detail__meta strong { color: var(--text); margin-right: 6px; }
.event-detail__body { color: var(--text-muted); line-height: 1.8; max-width: 880px; }

/* ---------- Partners ---------- */
.partners { padding-block: 24px 80px; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.partner-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    height: 100%;
    box-sizing: border-box;
    gap: 16px;
    text-decoration: none;
    color: var(--text);
}
a.partner-card__inner:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.partner-card__logo-wrap {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}
.partner-card__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.partner-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
    text-transform: capitalize;
}
.partner-card__desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 699px) {
    .partner-card__logo-wrap { height: 160px; padding: 16px; }
    .partner-card__name { font-size: 17px; }
}

/* ---------- News ---------- */
.news { padding-block: 24px 80px; }
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1100px) { .news-list { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 520px)  { .news-list { grid-template-columns: 1fr; gap: 16px; } }
.news-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-card__media {
    display: block;
    aspect-ratio: 16/9;
    max-height: 220px;
    background: var(--bg-2);
    flex-shrink: 0;
    overflow: hidden;
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
.news-card__date { color: var(--text-muted); font-size: 13px; }
.news-card__title { font-size: 20px; font-weight: 700; margin: 6px 0 10px; }
.news-card__title a:hover { color: var(--primary); }
.news-card__excerpt { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.news-card__author { color: var(--text-muted); font-size: 13px; font-style: italic; margin-bottom: 12px; }
.news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    align-self: flex-start;
    transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.news-card__more svg { transition: transform .2s; }
.news-card__more:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(193,41,62,.25);
}
.news-card__more:hover svg { transform: translateX(3px); }

/* ---------- Article layout (detail noutate + sidebar recente) ---------- */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    padding-block: 24px 80px;
    align-items: start;
}
.article-layout .article { padding: 0; max-width: none; }
.article-sidebar {
    position: sticky;
    top: 96px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.article-sidebar__heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--gold);
    margin: 0 0 16px;
}
.article-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.article-sidebar__list li { list-style: none; }
.article-sidebar__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    transition: transform .15s;
}
.article-sidebar__item:hover { transform: translateX(2px); }
.article-sidebar__item:hover .article-sidebar__title { color: var(--gold); }
.article-sidebar__thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-2);
}
.article-sidebar__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-sidebar__meta { min-width: 0; flex: 1; }
.article-sidebar__meta time {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.article-sidebar__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.article-sidebar__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    width: 100%;
}
.article-sidebar__all:hover { color: var(--primary); }
.article-sidebar__all svg { transition: transform .2s; }
.article-sidebar__all:hover svg { transform: translateX(3px); }

@media (max-width: 960px) {
    .article-layout { grid-template-columns: 1fr; gap: 32px; }
    .article-sidebar { position: static; }
}

/* Article (noutate detalii) */
.article { padding-block: 24px 80px; max-width: 880px; }

/* Continut editabil din admin (HTML din trumbowyg) */
.page-body { color: var(--text); font-size: 16px; line-height: 1.7; }
.page-body h1, .page-body h2, .page-body h3, .page-body h4 {
    color: var(--gold);
    margin: 32px 0 12px;
    line-height: 1.2;
    font-weight: 700;
}
.page-body h2 { font-size: 26px; }
.page-body h3 { font-size: 20px; }
.page-body h4 { font-size: 17px; }
.page-body p { margin: 0 0 16px; color: var(--text); }
.page-body ul, .page-body ol { margin: 0 0 16px; padding-left: 22px; color: var(--text); }
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { color: var(--gold); }
.page-body a.btn-cta,
.page-body a.btn-secondary { color: #fff; text-decoration: none; }
.page-body a.btn-cta:hover,
.page-body a.btn-secondary:hover { color: #fff; }
.page-body blockquote {
    border-left: 3px solid var(--primary);
    padding: 8px 16px;
    margin: 16px 0;
    color: var(--text-muted);
    background: rgba(193,41,62,0.04);
    border-radius: 0 8px 8px 0;
}
.page-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }
.page-body hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.article__cover { margin: 0 0 24px; }
.article__cover img { width: 100%; border-radius: 16px; max-height: 480px; object-fit: cover; }
.article__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0 0 12px;
}
.article__lead { color: var(--text); font-size: 18px; line-height: 1.55; margin: 0 0 16px; max-width: 760px; }
.article__meta { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.article__video { margin: 0 0 24px; aspect-ratio: 16/9; }
.article__video iframe, .article__video video { width: 100%; height: 100%; border: 0; border-radius: 16px; }
.article__body { color: var(--text); font-size: 17px; line-height: 1.8; }
.article__body h2, .article__body h3 { margin: 24px 0 12px; color: var(--gold); font-weight: 700; letter-spacing: -.01em; }
.article__body p { margin-bottom: 16px; }
.article__body a { color: var(--primary); text-decoration: underline; }
.article__body img { border-radius: 12px; margin: 16px 0; }
.article__gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin-top: 24px; }
.article__gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }

/* ---------- Transparenta ---------- */
.transparency { padding-block: 24px 80px; display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.transparency__sidebar-title { font-size: 16px; margin-bottom: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.transparency__nav { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; margin: 0; }
.transparency__nav li { list-style: none; }
.transparency__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    transition: background .15s, color .15s, transform .15s;
}
.transparency__nav a::after {
    content: '';
    flex-shrink: 0;
    width: 14px; height: 14px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>") center/contain no-repeat;
    opacity: .5;
    transition: transform .2s ease, opacity .2s ease;
}
.transparency__nav a:hover { background: var(--surface); color: var(--text); }
.transparency__nav a:hover::after { opacity: 1; transform: translateX(3px); }
.transparency__nav a.is-active { background: var(--primary); color: #fff; }
.transparency__nav a.is-active::after { opacity: 1; }
.transparency__nav-group > ul { list-style: none; margin: 4px 0 4px 12px; padding: 0; display: flex; flex-direction: column; gap: 4px; border-left: 1px solid var(--border); padding-left: 8px; }
.transparency__nav-group > ul a { padding: 8px 12px; font-size: 13px; }
.transparency__nav-group > ul a::after { width: 12px; height: 12px; }
.transparency__list { display: flex; flex-direction: column; gap: 16px; }
.doc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; transition: border-color .2s, transform .2s; }
.doc-card:hover { border-color: rgba(249,211,76,.35); }
.doc-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.doc-card__title { font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.3; }
.doc-card__date { color: var(--text-muted); font-size: 13px; white-space: nowrap; }
.doc-card__cat { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.doc-card__desc { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.5; }

.doc-card__files { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.doc-card__files li { list-style: none; }
.doc-card__files a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    max-width: 100%;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.doc-card__files a:hover {
    background: rgba(249,211,76,.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}
.doc-card__file-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
}
.doc-card__files a:hover .doc-card__file-icon {
    background: rgba(249,211,76,.18);
    color: var(--gold);
}
.doc-card__file-name {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.doc-card__file-ext {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 2px 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
}
@media (max-width: 800px) {
    .transparency { display: flex; flex-direction: column; gap: 20px; }
    .transparency__sidebar {
        background: transparent;
        padding: 0;
        margin: 0 -20px;
    }
    .transparency__sidebar-title {
        padding: 0 20px;
        margin-bottom: 8px;
        font-size: 13px;
    }
    .transparency__nav {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding: 4px 20px 12px;
        scrollbar-width: none;
    }
    .transparency__nav::-webkit-scrollbar { display: none; }
    .transparency__nav > li { flex-shrink: 0; }
    .transparency__nav a {
        background: var(--surface);
        border: 1px solid var(--border);
        padding: 8px 14px;
        font-size: 13px;
        white-space: nowrap;
        border-radius: 999px;
    }
    .transparency__nav a::after { display: none; }
    .transparency__nav a.is-active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }
    .transparency__nav-group > ul {
        display: none; /* sub-categoriile se ascund pe mobil — vor aparea ca filtru in pagina */
    }
}

/* ---------- Checkout ---------- */
.checkout { padding-block: 24px 80px; }
.checkout__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
}
.checkout__summary {
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(249,211,76,0.08) 0%, rgba(249,211,76,0) 55%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 96px;
}
.checkout__image {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 16/10;
    object-fit: contain;
    background: #1a1320;
    margin-bottom: 18px;
    display: block;
}
.checkout__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--red, #c1293e);
    margin: 0 0 14px;
    line-height: 1.25;
}
.checkout__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}
.checkout__meta li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.checkout__meta li:last-child { border-bottom: 0; padding-bottom: 0; }
.checkout__meta strong {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin: 0 0 2px;
}
.checkout__meta li > :not(strong) { color: var(--text); font-size: 15px; font-weight: 500; }

.checkout__form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}
.checkout__form h2,
.checkout__form-heading {
    font-size: 20px;
    color: var(--text);
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.checkout__form .form-row { margin-bottom: 18px; }
.checkout__form .form-row label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}
.checkout__form .form-row input {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}
.checkout__form .form-row input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(193,41,62,0.12);
    outline: none;
}
.checkout__total {
    font-size: 18px;
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(193,41,62,0.06);
    border: 1px solid rgba(193,41,62,0.20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
}
.checkout__total strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

/* Agreement checkbox */
.checkout__agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 18px;
    padding: 14px 16px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.checkout__agree:hover { border-color: rgba(193,41,62,0.30); }
.checkout__agree input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: 1px;
    accent-color: var(--primary);
    cursor: pointer;
}
.checkout__agree a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}
.checkout__agree a:hover { color: var(--primary-hover); }
.checkout__form .btn-cta {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.checkout__notice {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 960px) {
    .checkout__grid { grid-template-columns: 1fr; gap: 20px; }
    .checkout__summary { position: static; }
}
@media (max-width: 699px) {
    .checkout__summary,
    .checkout__form { padding: 20px; border-radius: 16px; }
    .checkout__form { padding: 22px 20px; }
    .checkout__title { font-size: 19px; }
    .checkout__total { padding: 14px 16px; font-size: 16px; }
    .checkout__total strong { font-size: 22px; }
}

/* ---------- Forms ---------- */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 14px; color: var(--text-muted); }
.form-row input, .form-row textarea, .form-row select {
    background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
    padding: 12px 14px; border-radius: 10px; font: inherit;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none; border-color: var(--primary);
}
.form-row--checkbox label { display: flex; align-items: center; gap: 8px; color: var(--text); }

.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 16px; }
.alert--error { background: rgba(193, 41, 62, .15); color: #ffb1c4; border: 1px solid rgba(193, 41, 62,.3); }
.alert--success { background: rgba(60, 200, 130, .15); color: #b8f0d2; border: 1px solid rgba(60,200,130,.3); }

/* ---------- Thanks ---------- */
.thanks { padding: 40px 0 80px; }
.thanks-card { max-width: 720px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.thanks-card h2 { margin-bottom: 16px; }
.thanks-card__meta { display: flex; flex-direction: column; gap: 8px; color: var(--text-muted); margin-bottom: 16px; }
.thanks-card__meta strong { color: var(--text); margin-right: 6px; }

/* ---------- Empty state ---------- */
.empty-state { color: var(--text-muted); padding: 40px 0; text-align: center; }

/* ---------- Hero meta ---------- */
.hero-card-meta { display: inline-block; color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 8px; }

/* ---------- Media: galerie + video ---------- */
.media-video {
    margin: 24px 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.media-video iframe,
.media-video video { width: 100%; height: 100%; display: block; border: 0; }

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin: 16px 0 24px;
}
.media-gallery__item {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,.3);
    transition: transform .2s;
}
.media-gallery__item:hover { transform: scale(1.03); }
.media-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
