/* ═══════════════════════════════════════════════════════════
   DIANA JAVORČÍKOVÁ – KAMPAŇOVÝ WEB  |  main.css
   Farby: #380036 (fialová) + #ffc20e (žltá/zlatá)
   Font: Poppins
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple:       #380036;
  --purple-mid:   #520050;
  --purple-light: rgba(56,0,54,0.06);
  --yellow:       #ffc20e;
  --yellow-light: #ffd655;
  --white:        #ffffff;
  --off-white:    #f9f7f4;
  --gray:         #e8e4df;
  --text:         #1a1018;
  --text-muted:   #6b5f69;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(56,0,54,0.10);
  --trans:        0.22s ease;
  --header-h:     70px;
  --max-w:        1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── SHARED UTILITIES ──────────────────────────────────────── */
.diana-section__inner    { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; }
.diana-section__label    { font-size: .75rem; font-weight: 600; letter-spacing: .1em;
                           text-transform: uppercase; color: var(--yellow);
                           background: var(--purple); display: inline-block;
                           padding: .25rem .75rem; border-radius: 4px; margin-bottom: .9rem; }
.diana-section__title    { font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 700;
                           letter-spacing: -.02em; line-height: 1.15; margin-bottom: 1rem; }
.diana-section__header   { margin-bottom: 2.5rem; }
.diana-section__header--row { display: flex; justify-content: space-between;
                               align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.diana-section__cta      { margin-top: 2.5rem; text-align: center; }
.diana-empty             { color: var(--text-muted); padding: 2rem 0; font-style: italic; }
.diana-content p         { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.3rem; }
.diana-content h2, .diana-content h3 { margin: 1.8rem 0 .8rem; font-weight: 600; }
.diana-content--narrow   { max-width: 740px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.diana-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--trans), background var(--trans), color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.diana-btn:hover              { transform: translateY(-2px); }
.diana-btn--primary           { background: var(--yellow); color: var(--purple); }
.diana-btn--primary:hover     { background: var(--yellow-light); }
.diana-btn--secondary         { background: transparent; color: var(--purple); border-color: var(--purple); }
.diana-btn--secondary:hover   { background: var(--purple); color: var(--yellow); }
.diana-btn--outline           { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.diana-btn--outline:hover     { border-color: var(--white); }
.diana-btn--small             { padding: .45rem 1rem; font-size: .82rem; }
.diana-btn--donate            { background: var(--yellow); color: var(--purple); border-color: var(--yellow); font-size: 1rem; padding: .9rem 2.2rem; }
.diana-btn--donate:hover      { background: var(--purple); border-color: var(--yellow); color: var(--white); }
.diana-btn--outline-dark      { background: transparent; color: var(--purple); border-color: rgba(56,0,54,.45); }
.diana-btn--outline-dark:hover { background: var(--purple); color: var(--yellow); border-color: var(--purple); }

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════ */
.diana-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  background: var(--purple);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(56,0,54,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.diana-header--scrolled { box-shadow: 0 4px 30px rgba(56,0,54,.35); }
.diana-header--hidden   { transform: translateY(-100%); }

.diana-header__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 5vw;
  height: 100%; display: flex; align-items: center; gap: 1.5rem;
}

.diana-logo { flex-shrink: 0; display: flex; align-items: center; z-index: 9999; }
.diana-logo img { height: 44px; width: auto; }
.diana-logo__text { font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }

/* Desktop Nav */
.diana-nav { flex: 1; }
.diana-nav__list { display: flex; gap: .25rem; align-items: center; justify-content: flex-end; }
.diana-nav__list li a {
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: 6px;
  transition: background var(--trans), color var(--trans);
}
.diana-nav__list li a:hover,
.diana-nav__list li.current-menu-item a { color: var(--yellow); background: rgba(255,255,255,.07); }

.diana-header__social { display: flex; gap: .5rem; align-items: center; }

/* Desktop "Pridajte sa" button */
.diana-nav .diana-button-pridajte-sa > a {
  color: #380036 !important;
  background: #fec10ee0;
  border: 2px dotted #3a0a38;
  margin-left: 10px;
  padding: .45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--trans);
}
.diana-nav .diana-button-pridajte-sa > a:hover {
  color: var(--yellow) !important;
  background: var(--purple);
  border: 2px dotted #fec10ee0;
}

/* ── HAMBURGER ── */
.diana-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: .5rem; margin-left: auto;
  position: relative; z-index: 1001;
}
.diana-hamburger span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: all var(--trans); display: block;
}
.diana-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.diana-hamburger.is-open span:nth-child(2) { opacity: 0; }
.diana-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.diana-mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background-color: var(--purple); z-index: 1000;
  padding: 100px 5vw 4rem !important;
  flex-direction: column; align-items: center; justify-content: flex-start;
  overflow-y: auto;
}
.diana-mobile-nav.is-open {
  display: flex;
  animation: fadeInBackground 0.3s ease-out;
}
@keyframes fadeInBackground {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.diana-mobile-nav__list {
  width: 100%; max-width: 100%; padding: 0 0.5vw;
  text-align: center; margin-bottom: 2rem; list-style: none;
}
.diana-mobile-nav__list li { border-bottom: 1px solid rgba(255,255,255,0.15); }
.diana-mobile-nav__list li a { display: block; padding: 1.2rem 0; color: white; font-size: 1.25rem; font-weight: 600; }

.diana-mobile-nav__list .diana-button-pridajte-sa { margin-top: 1.5rem; border-bottom: none !important; }
.diana-mobile-nav__list .diana-button-pridajte-sa > a {
  margin-left: 0 !important;
  display: block !important;
  background: var(--yellow) !important;
  color: var(--purple) !important;
  border: none !important;
  padding: 1rem !important;
  font-size: 1.1rem !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 25px rgba(255,194,14,0.2);
}

.diana-mobile-nav__social {
  display: flex; gap: 1.5rem; justify-content: center; margin-top: 2rem;
}
.diana-mobile-nav__social .diana-social-link {
  background: rgba(255,255,255,0.1); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s;
}

/* ── HERO ──────────────────────────────────────────────────── */
.diana-hero {
  background: var(--yellow);
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* Background image is hidden */
.diana-hero__bg { display: none !important; }

/* All decorations are hidden */
.diana-hero__decorations,
.diana-deco { display: none !important; }

.diana-hero__inner {
  position: relative; z-index: 2;
  flex: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 5vw;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; gap: 6rem;
  min-height: calc(100vh - var(--header-h));
}

.diana-hero__content {
  position: relative; z-index: 5;
  align-self: center;
  padding-bottom: 4rem;
  padding-top: 2rem;
}

.diana-hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(56,0,54,.1); border: 1px solid rgba(56,0,54,.25);
  color: var(--purple); font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.75rem;
}
.diana-hero__badge-dot {
  width: 7px; height: 7px; background: var(--purple);
  border-radius: 50%; display: inline-block; animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.diana-hero__slogan { display: flex; flex-direction: column; align-items: center; line-height: 1; margin-top: 5rem; margin-bottom: 2rem; }

.diana-hero__slogan-bold {
  display: block !important;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}


.diana-hero__slogan-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.diana-hero__name-box {
  display: inline-block;
  text-align: center;
  border-radius: 22px;
  padding: 1rem 2.5rem 1rem 0rem;
  margin: 1.8rem 0 0 0;
  position: relative;
}
.diana-hero__name-box .diana-hero__name { margin-top: 0; margin-bottom: 0.4rem; margin-left: 0; }
.diana-hero__name-box .diana-hero__role { margin-bottom: 0; margin-left: 0; letter-spacing: 0.05rem; }

.diana-hero__name {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--purple); line-height: 1.05;
  margin-bottom: .55rem; margin-top: 1.4rem;
  word-break: keep-all;
}

.diana-hero__role {
  display: inline-flex; flex-direction: row; align-items: baseline;
  gap: 0.4rem; margin-bottom: 1.8rem; margin-left: 0;
  letter-spacing: 0.05rem;
}
.diana-hero__role-label { font-size: 1.05rem; font-weight: 700; color: var(--purple); display: block; }
.diana-hero__role-desc  { font-size: 1.05rem; font-weight: 400; color: var(--purple); opacity: 0.85; display: block; }

.diana-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.diana-hero__photo {
  position: relative; z-index: 3;
  height: 100%; min-height: 500px;
  align-self: stretch; overflow: visible;
  margin-right: 4rem;
}

.diana-hero__photo-img {
  position: absolute; z-index: 1;
  bottom: 0; left: 36%;
  transform: translateX(-50%);
  height: 95%; width: auto; max-width: none;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 16px 40px rgba(56,0,54,.18));
  display: block;
}

.diana-hero__scroll {
  position: absolute; bottom: 2rem; left: 35%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(56,0,54,.45); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; z-index: 4;
}
.diana-hero__scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(56,0,54,.4); border-bottom: 2px solid rgba(56,0,54,.4);
  transform: rotate(45deg); animation: scrollBounce 1.5s infinite; margin-left: -7rem;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* ── COUNTDOWN ─────────────────────────────────────────────── */
.diana-countdown { background: var(--yellow); padding: 2.5rem 5vw; text-align: center; }
.diana-countdown__inner { max-width: var(--max-w); margin: 0 auto; }
.diana-countdown__title { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: 1.2rem; opacity: .7; }
.diana-countdown__units { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.diana-countdown__unit  { text-align: center; min-width: 80px; }
.diana-countdown__num   { display: block; font-size: clamp(2.4rem,5vw,3.5rem); font-weight: 800; color: var(--purple); line-height: 1; font-variant-numeric: tabular-nums; }
.diana-countdown__label { font-size: .75rem; font-weight: 500; color: var(--purple); opacity: .6; }
.diana-countdown__sep   { font-size: 2.5rem; font-weight: 800; color: var(--purple); opacity: .4; margin-bottom: 1.2rem; }
.diana-countdown__sub   { font-size: .95rem; color: var(--purple); font-weight: 500; opacity: .75; }

/* ── PROGRAM ───────────────────────────────────────────────── */
.diana-program       { padding: 6rem 0; background: var(--off-white); }
.diana-program__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: .5rem; }
.diana-program__card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .6rem;
  box-shadow: 0 2px 12px rgba(56,0,54,.07);
  transition: transform var(--trans), box-shadow var(--trans);
  border-top: 4px solid var(--card-color, var(--purple));
}
.diana-program__card:hover     { transform: translateY(-4px); box-shadow: var(--shadow); }
.diana-program__card-icon      { font-size: 2rem; line-height: 1; margin-bottom: .5rem; }
.diana-program__card-title     { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.diana-program__card-text      { font-size: .95rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.diana-program__card-arrow     { font-size: 1.1rem; color: var(--yellow); margin-top: auto; font-weight: 700; }

/* ── ABOUT ─────────────────────────────────────────────────── */
.diana-about           { padding: 7rem 0; background: var(--white); }
.diana-about__inner    { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.diana-about__photo    { position: relative; }
.diana-about__photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; z-index: 1; }
.diana-about__photo::before {
  content: ''; position: absolute; top: -16px; left: -16px;
  width: 100%; height: 100%; border-radius: var(--radius-lg);
  border: 4px solid var(--yellow); z-index: 0;
}
.diana-about__content .diana-section__title { margin-bottom: 1.2rem; }
.diana-about__content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.15rem; }

.diana-about__traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin: 2rem 0; }
.diana-about__trait-card {
  background: rgba(56,0,54,.05); border: 1px solid rgba(56,0,54,.12);
  border-left: 4px solid var(--purple); border-radius: var(--radius);
  padding: .9rem 1rem; display: flex; flex-direction: column; gap: .4rem;
  transition: background var(--trans), transform var(--trans);
}
.diana-about__trait-card:hover { background: rgba(56,0,54,.09); transform: translateY(-2px); }
.diana-about__trait-dot {
  width: 28px; height: 28px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.diana-about__trait-text     { font-size: .9rem; font-weight: 600; color: var(--purple); line-height: 1.35; }
.diana-about__traits--5 .diana-about__trait-card:last-child { grid-column: span 2; }
.diana-about__traits--4 { grid-template-columns: repeat(2, 1fr); }
.diana-about__traits--2 { grid-template-columns: repeat(2, 1fr); }
.diana-about__traits--1 { grid-template-columns: 1fr; }

/* ── NEWS / AKTUALITY ──────────────────────────────────────── */
.diana-news          { padding: 6rem 0; background: var(--off-white); }
.diana-news__grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.diana-news__card {
  background: var(--white); border-radius: 20px; border: 1px solid var(--gray);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(56,0,54,.03);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.diana-news__card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(56,0,54,.08); border-color: var(--yellow); }
.diana-news__card-img   { display: block; aspect-ratio: 16/9; overflow: hidden; line-height: 0; }
.diana-news__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.diana-news__card:hover .diana-news__card-img img { transform: scale(1.04); }
.diana-news__card-body  { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.diana-news__date       { font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .8rem; display: block; }
.diana-news-card-title  { font-size: 1.3rem; font-weight: 800; line-height: 1.3; margin-bottom: 1rem; color: var(--purple); }
.diana-news__card-body h3   { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.3; }
.diana-news__card-body h3 a:hover { color: var(--purple); }
.diana-news__card-excerpt   { font-size: .92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.8rem; }
.diana-news__card-body p    { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.diana-news__card .diana-btn { margin-top: auto; align-self: flex-start; }

/* Featured card */
@media (min-width: 1025px) {
  .diana-news__card--featured { grid-column: span 3; flex-direction: row; max-height: 480px; }
  .diana-news__card--featured .diana-news__card-img  { flex: 1.2; height: 100%; }
  .diana-news__card--featured .diana-news__card-body { flex: 1; padding: 3.5rem; justify-content: center; }
  .diana-news__card--featured .diana-news-card-title { font-size: 2.2rem; }
  .diana-news__card--featured .diana-news__placeholder { height: 100%; min-height: 400px; }
}

/* News placeholder */
.diana-news__placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.diana-news__placeholder::before {
  content: ""; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 20px 20px;
}
.diana-news__placeholder svg { width: 50px; height: 50px; color: var(--white); opacity: 0.15; position: relative; z-index: 2; }

/* ── EVENTS ────────────────────────────────────────────────── */
.diana-events        { padding: 6rem 0; background: var(--white); }
.diana-events__list  { display: flex; flex-direction: column; gap: 1px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(56,0,54,.07); }
.diana-events__item  {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--white); padding: 1.4rem 1.75rem; border-bottom: 1px solid var(--gray);
  position: relative; cursor: pointer;
  transition: background var(--trans), transform .3s ease, box-shadow .3s ease;
}
.diana-events__item:hover           { background: var(--off-white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(56,0,54,.08); }
.diana-events__item:hover h3 a      { color: var(--purple); }
.diana-events__item--past           { opacity: .6; }
.diana-events__item-link::after     { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
.diana-events__item .diana-btn--small { position: relative; z-index: 5; }

.diana-events__date-box { flex-shrink: 0; width: 58px; text-align: center; background: var(--purple); border-radius: var(--radius); padding: .5rem .25rem; color: var(--white); }
.diana-events__day      { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; color: var(--yellow); }
.diana-events__month    { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; margin-top: .1rem; }
.diana-events__info     { flex: 1; min-width: 0; }
.diana-events__type     { display: inline-block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: .15rem .6rem; border-radius: 4px; margin-bottom: .4rem; background: var(--purple-light); color: var(--purple); }
.diana-events__type--online { background: rgba(0,180,100,.1); color: #0a6b3c; }
.diana-events__info h3      { font-size: 1.15rem; font-weight: 600; margin-bottom: .2rem; line-height: 1.3; color: var(--purple); }
.diana-events__info h3 a:hover { color: var(--purple); }

.diana-events__meta      { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 0.6rem; font-size: .92rem; }
.diana-events__meta-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: .92rem; font-weight: 500; }
.diana-events__meta-icon { font-size: 1rem; line-height: 1; display: inline-flex; align-items: center; opacity: 0.8; }
.diana-events__meta-text { line-height: 1.2; }

/* Archive event headings */
.diana-events-archive__heading      { font-size: 1.2rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--purple); }
.diana-events-archive__heading--past { opacity: .5; }

/* ── GALLERY ───────────────────────────────────────────────── */
.diana-gallery       { padding: 6rem 0; background: var(--off-white); }
.diana-gallery .diana-section__inner { margin-bottom: 2rem; }
.diana-gallery__grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 4px; }
.diana-gallery__grid .diana-gallery__item:first-child { grid-column: span 2; grid-row: span 2; }
.diana-gallery__item { position: relative; overflow: hidden; cursor: pointer; }
.diana-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.diana-gallery__item:hover img { transform: scale(1.06); }
.diana-gallery__overlay { position: absolute; inset: 0; background: rgba(56,0,54,.5); display: flex; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: opacity var(--trans); }
.diana-gallery__item:hover .diana-gallery__overlay { opacity: 1; }

/* ── PARTNERS ──────────────────────────────────────────────── */
.diana-partners      { padding: 5rem 0; background: var(--white); }
.diana-partners__grid { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; margin-top: 2rem; }
.diana-partners__item { opacity: .65; transition: opacity var(--trans), transform var(--trans); }
.diana-partners__item:hover { opacity: 1; transform: scale(1.05); }
.diana-partners__item img  { max-height: 60px; max-width: 140px; object-fit: contain; }
.diana-partners__name { font-size: .95rem; font-weight: 600; color: var(--text-muted); }

/* ── DONATION ──────────────────────────────────────────────── */
.diana-donation { background: var(--purple); padding: 5rem 5vw; display: flex; align-items: center; justify-content: center; }
.diana-donation__inner { max-width: var(--max-w); width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.diana-donation h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.diana-donation p  { color: rgba(255,255,255,.6); font-size: 1.05rem; font-weight: 300; }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.diana-newsletter       { padding: 5rem 0; background: var(--off-white); }
.diana-newsletter__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.diana-newsletter__content h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: .6rem; color: var(--purple); }
.diana-newsletter__content p  { font-size: 1.05rem; color: var(--text-muted); }
.diana-newsletter__fields { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .75rem; }
.diana-input { flex: 1; min-width: 160px; padding: .72rem 1rem; border: 1.5px solid var(--gray); border-radius: var(--radius); font-family: 'Poppins', sans-serif; font-size: .9rem; outline: none; transition: border-color var(--trans); }
.diana-input:focus { border-color: var(--purple); }
.diana-newsletter__gdpr { font-size: .72rem; color: var(--text-muted); line-height: 1.5; }
.diana-newsletter__gdpr a { text-decoration: underline; }
.diana-newsletter__msg     { margin-top: .75rem; font-size: .88rem; font-weight: 500; min-height: 1.4rem; }
.diana-newsletter__msg--ok  { color: #0a6b3c; }
.diana-newsletter__msg--err { color: #c0392b; }

/* ── PAGE HERO & CONTENT ────────────────────────────────────── */
.diana-page-hero { background: var(--purple); padding: calc(var(--header-h) + 3.5rem) 0 2rem; color: var(--white); }
.diana-page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; margin-top: .5rem; }
.diana-page-hero p  { color: rgba(255,255,255,.65); margin-top: .75rem; font-size: .95rem; }
.diana-page-content { padding: 5rem 0; }

/* ── SINGLE POST ────────────────────────────────────────────── */
.diana-single        { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 5rem; }
.diana-single__inner { max-width: 760px; padding-top: 1.5rem; }
.diana-single__cats  { font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .06em; }
.diana-single__title { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 1rem; }
.diana-single__meta  { font-size: .82rem; color: var(--text-muted); margin-bottom: 2rem; display: flex; gap: .5rem; align-items: center; }
.diana-single__featured { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.diana-single__featured img { width: 100%; max-height: 480px; object-fit: cover; }
.diana-single__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray); }
.diana-single__share  { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; font-size: .88rem; color: var(--text-muted); }
.diana-single__nav    { display: flex; gap: 1rem; }
.diana-post-nav       { flex: 1; font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.diana-post-nav a:hover { color: var(--purple); }

/* Post footer & share */
.diana-post-footer { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--gray); }
.diana-post-share  { margin-bottom: 4rem; }

/* ── ARCHIVE ────────────────────────────────────────────────── */
.diana-archive       { padding: 5rem 0; }
.diana-archive__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }

.diana-archive__pagination { margin-top: 5rem; text-align: center; }
.diana-archive__pagination .nav-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; list-style: none; }
.diana-archive__pagination a,
.diana-archive__pagination span { display: inline-flex; align-items: center; justify-content: center; padding: .6rem 1.1rem; border: 1.5px solid var(--gray); border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--text); }
.diana-archive__pagination a:hover,
.diana-archive__pagination span.current,
.diana-archive__pagination .current { background: var(--purple); color: var(--yellow); border-color: var(--purple); }

/* ── KANDIDATKA ─────────────────────────────────────────────── */
.diana-kandidatka        { padding: 5rem 0; }
.diana-kandidatka__grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2.5rem; }

.diana-kandidat-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray); overflow: hidden; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease; z-index: 1;
}
.diana-kandidat-card:hover      { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(56,0,54,.12); border-color: var(--yellow); }
.diana-kandidat-card--featured  { border: 2px solid var(--yellow); }
.diana-kandidat-card__photo     { width: 100%; margin: 0; padding: 0; line-height: 0; font-size: 0; aspect-ratio: 1/1; background: #eee; overflow: hidden; order: 1; }
.diana-kandidat-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.diana-kandidat-number-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--purple); color: var(--yellow);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; z-index: 10;
  border: 2px solid var(--white); box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.diana-kandidat-card__body      { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; order: 2; }
.diana-kandidat-card__body h3   { margin: 0 0 .4rem 0; font-size: 1.05rem; font-weight: 700; }
.diana-kandidat-card__meta      { font-size: .78rem; color: var(--text-muted); margin-bottom: .5rem; }
.diana-kandidat-card__body .profesia-label { min-height: 0; margin-bottom: 1.2rem; font-size: .88rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.diana-kandidat-card__body .bio-text       { min-height: 20.5em; margin-bottom: 1.5rem; line-height: 1.65; font-size: 1rem; color: var(--text); }
.diana-kandidat-card__link      { text-decoration: none; color: inherit; }
.diana-kandidat-card__link::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.diana-kandidat-card__body a[href*="facebook.com"] { position: relative; z-index: 10; }
.diana-kandidat-card__fb        { color: var(--purple); display: inline-flex; }
.diana-kandidat-card__fb:hover  { color: var(--yellow); }

.diana-kandidat-card__body > div:last-child { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--gray); position: relative; z-index: 10; }
.diana-kandidat-card__footer {
  display: flex; flex-direction: column; gap: 0.9rem;
  border-top: 1px solid var(--gray); padding-top: 1.2rem; margin-top: auto;
}
.diana-kandidat-card__footer-top { display: flex; align-items: center; justify-content: space-between; }
.diana-kandidat-card__location   { display: flex; align-items: center; gap: 0.35rem; font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.diana-kandidat-card__location svg { flex-shrink: 0; opacity: 0.6; }
.diana-kandidat-card__fb-btn     { width: 28px; height: 28px; border-radius: 50%; background: #e7f0fd; color: #1877F2; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; flex-shrink: 0; position: relative; z-index: 10; }
.diana-kandidat-card__fb-btn:hover { background: #1877F2; color: white; transform: scale(1.1); }
.diana-kandidat-card__profile-btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  background: var(--purple); color: var(--yellow) !important; font-size: .88rem; font-weight: 700;
  padding: 0.6rem 1rem; border-radius: 50px; transition: background 0.2s, transform 0.2s;
  white-space: nowrap; position: relative; z-index: 10; min-height: 50px; margin-top: 6px;
}
.diana-kandidat-card__profile-btn:hover { background: var(--purple-mid); transform: translateY(-1px); }

/* Kandidatka footer & share */
.diana-kandidat-footer { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--gray); display: flex; justify-content: space-between; align-items: center; gap: 2rem; }

.diana-share-card {
  background: white; border: 1px solid var(--gray); padding: 1rem 1.2rem;
  border-radius: 100px; display: flex; align-items: center; gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(56,0,54,.06); transition: all .3s ease;
}
.diana-share-card:hover              { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(56,0,54,.1); border-color: var(--yellow); }
.diana-share-card__content           { display: flex; align-items: center; gap: .8rem; }
.diana-share-card__emoji             { font-size: 1.5rem; animation: heartBeat 2s infinite; display: inline-block; }
.diana-share-card__text              { display: flex; flex-direction: column; line-height: 1.2; }
.diana-share-card__text strong       { font-size: .9rem; color: var(--purple); font-weight: 800; }
.diana-share-card__text span         { font-size: .75rem; color: var(--text-muted); }
.diana-share-card__btn               { background: #1877F2; color: white; padding: .6rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; transition: background .2s; }
.diana-share-card__btn:hover         { background: #145dbf; color: white; }

/* Attention share card */
.diana-attention-card {
  background: white; border: 1px solid var(--gray); padding: 1.5rem 2rem; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  box-shadow: 0 12px 40px rgba(56,0,54,0.06); transition: all 0.3s ease;
}
.diana-attention-card:hover              { transform: translateY(-3px); box-shadow: 0 15px 45px rgba(56,0,54,0.1); border-color: var(--yellow); }
.diana-attention-card__content           { display: flex; align-items: center; gap: 1.2rem; }
.diana-attention-card__emoji             { font-size: 2.2rem; animation: heartBeat 2s infinite; display: inline-block; }
.diana-attention-card__text              { display: flex; flex-direction: column; line-height: 1.3; }
.diana-attention-card__text strong       { font-size: 1.2rem; color: var(--purple); font-weight: 800; }
.diana-attention-card__text p            { margin-bottom: 0 !important; margin-top: 4px !important; }
.diana-attention-card__text span         { font-size: 0.95rem; color: var(--text-muted); }
.diana-attention-card__btn               { background: #1877F2; color: white !important; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 0.6rem; transition: all 0.2s ease; white-space: nowrap; text-decoration: none; }
.diana-attention-card__btn:hover         { background: #145dbf; transform: scale(1.05); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.diana-footer { background-color: var(--purple); color: var(--white); padding: 6rem 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.diana-footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5vw; }
.diana-footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 5rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.diana-footer__brand        { display: flex; flex-direction: column; gap: 1.5rem; }
.diana-footer__logo-text    { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); display: block; }
.diana-footer__tagline      { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 300px; }
.diana-footer__social       { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.diana-footer__social .diana-social-link {
  background: rgba(255,255,255,0.06); color: white; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(255,255,255,0.1);
}
.diana-footer__social .diana-social-link:hover { background: var(--yellow); color: var(--purple); transform: translateY(-4px); border-color: var(--yellow); }

.diana-footer__title,
.diana-footer__nav h4,
.diana-footer__contact h4   { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--yellow); margin-bottom: 2rem !important; }

.diana-footer__nav-list     { list-style: none; padding: 0; }
.diana-footer__nav-list li  { font-size: 1.4rem; margin-bottom: 1rem; }
.diana-footer__nav-list a   { font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: all 0.2s ease; }
.diana-footer__nav-list a:hover { color: var(--white); padding-left: 6px; }

.diana-footer__contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.diana-footer__contact-item  { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.diana-footer__contact-item svg { color: var(--yellow); flex-shrink: 0; margin-top: 3px; opacity: 0.8; }
.diana-footer__contact-item a:hover { color: var(--white); text-decoration: underline; }

.diana-footer__bottom  { display: flex; justify-content: space-between; align-items: center; padding: 2.5rem 0; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.diana-footer__legal   { display: flex; gap: 1.2rem; align-items: center; }
.diana-footer__legal a:hover { color: var(--white); }
.diana-footer__sep     { opacity: 0.2; }

/* ── FLOATING SOCIAL PANEL ─────────────────────────────────── */
.diana-float {
  position: fixed; right: 1.25rem; top: 30%; z-index: 998;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.diana-float__arrow {
  position: absolute; right: calc(100% + .5rem); top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: .3rem;
  animation: floatArrow 1.8s ease-in-out infinite; pointer-events: none;
}
.diana-float__arrow-label {
  font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 700;
  color: #CC1111; white-space: nowrap; letter-spacing: .04em; text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(255,255,255,.8);
  background: rgba(255,255,255,.9); padding: .2rem .5rem; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.diana-float__arrow-icon { color: #CC1111; display: flex; align-items: center; }
@keyframes floatArrow {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(5px); }
}
.diana-float.was-opened .diana-float__arrow      { display: none; }
.diana-float.was-opened .diana-float__icon-share { animation: none; }

.diana-float__trigger {
  width: 64px; height: 60px; background: #ffffff; border-radius: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 10px;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  box-shadow: 0 2px 10px rgba(105,38,38,.35);
  border: 0px;
}
.diana-float__trigger:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(105,38,38,.35); }
.diana-float__icon-close    { display: none; color: #CC1111; }
.diana-float__icon-share    { display: flex; animation: heartbeat 2.8s ease-in-out infinite; }
.diana-float__trigger[aria-expanded="true"] .diana-float__icon-share { display: none; }
.diana-float__trigger[aria-expanded="true"] .diana-float__icon-close { display: flex; }

.diana-float__panel {
  background: var(--purple); border: 1px solid rgba(255,194,14,.2); border-radius: var(--radius-lg);
  padding: 1.1rem .85rem; display: flex; flex-direction: column; align-items: center; gap: .75rem;
  box-shadow: 0 8px 32px rgba(56,0,54,.4); opacity: 0; pointer-events: none;
  position: absolute; right: calc(100% + .75rem); top: 70%;
  transform: translateY(-50%) translateX(8px) scale(.97);
  transition: opacity .22s ease, transform .22s ease; width: 140px;
}
.diana-float__panel.is-open     { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0) scale(1); }
.diana-float__panel-title       { font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); text-align: center; white-space: nowrap; }
.diana-float__socials           { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.diana-float__socials .diana-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75); padding: 0;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.diana-float__socials .diana-social-link:hover { background: rgba(255,194,14,.2); color: var(--yellow); border-color: rgba(255,194,14,.3); transform: scale(1.1); }
.diana-float__divider { width: 32px; height: 1px; background: rgba(255,255,255,.15); }
.diana-float__cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--purple); border: none; border-radius: var(--radius);
  font-size: .62rem; font-weight: 700; padding: .45rem .5rem; width: 100%;
  white-space: nowrap; letter-spacing: .03em; text-align: center;
}
.diana-float__cta:hover { background: var(--yellow-light); transform: translateY(-1px); }

/* ── CONTENT: VIDEO & FEATURE BOX ──────────────────────────── */
.single-diana_event .wp-block-video { margin: 3.5rem auto; max-width: 900px; display: flex; justify-content: center; }
.single-diana_event .wp-block-video video { border-radius: 20px; box-shadow: 0 20px 60px rgba(56,0,54,.15); max-height: 600px; width: auto; max-width: 100%; background-color: #000; display: block; }

.diana-feature-box { background-color: #fcfaff; border-radius: 30px; padding: 4rem; margin: 0 0 4rem 0; border: 1px solid rgba(56,0,54,.05); box-shadow: 0 15px 45px rgba(56,0,54,.04); }
.diana-feature-box p { font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.diana-feature-box .wp-block-columns { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; width: 100%; }
.diana-feature-box .wp-block-column  { flex: 1 1 200px; min-width: 0; }
.diana-feature-box .wp-block-video video { border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.15); width: 100%; object-fit: cover; }

.diana-event-main-content { min-width: 0; overflow: hidden; }
.diana-event-main-content .diana-feature-box { padding: 2rem; overflow: hidden; }
.diana-content            { word-break: break-word; overflow-wrap: break-word; min-width: 0; }

/* Emoji in content */
.diana-content p img, .diana-feature-box p img { display: inline; width: auto; height: 1.2em; margin: 0 0.2em; vertical-align: middle; box-shadow: none; border: none; }
img.emoji, img.wp-smiley { display: inline; vertical-align: middle; height: 1.1em; }

/* ── FACEBOOK BUTTON ───────────────────────────────────────── */
.btn-fb-event {
  background: #1877F2; color: white !important; width: 100%; justify-content: center;
  margin-bottom: 1.5rem; font-size: 0.9rem; font-weight: 600; padding: 0.7rem 1.2rem;
  border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(24,119,242,0.3);
}
.btn-fb-event:hover { background: #145dbf; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(24,119,242,0.4); }
.btn-fb-event svg   { flex-shrink: 0; }

/* ── SHARE BUTTONS ─────────────────────────────────────────── */
.diana-share-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; padding: .4rem .85rem; border-radius: 6px; font-weight: 600; }
.diana-share-btn--fb,
.diana-share-btn--print,
.diana-share-btn--email {
  width: 100%; justify-content: center; padding: 0.85rem 1.5rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 10px;
  text-decoration: none; position: relative; z-index: 1; transition: color 0.3s, transform 0.3s;
}
.diana-share-btn--fb::before,
.diana-share-btn--print::before,
.diana-share-btn--email::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0); transition: clip-path 0.6s linear;
}
.diana-share-btn--fb:hover::before,
.diana-share-btn--print:hover::before,
.diana-share-btn--email:hover::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0); }
.diana-share-btn--fb svg, .diana-share-btn--fb span,
.diana-share-btn--print svg, .diana-share-btn--print span,
.diana-share-btn--email svg, .diana-share-btn--email span { position: relative; pointer-events: none; }

.diana-share-btn--fb    { background: transparent !important; color: #1877F2 !important; margin-bottom: 1.5rem; border: 2px solid rgba(24,119,242,0.15) !important; }
.diana-share-btn--fb::before { border: 2px solid #1877F2; }
.diana-share-btn--fb:hover   { transform: translateY(-2px); color: #115dc7 !important; }

.diana-share-btn--print    { background: transparent !important; color: var(--purple) !important; margin-bottom: 0.75rem; border: 2px solid rgba(56,0,54,0.15) !important; }
.diana-share-btn--print::before { border: 2px solid var(--purple); }
.diana-share-btn--print:hover   { transform: translateY(-2px); color: var(--purple-mid) !important; }

.diana-share-btn--email    { background: transparent !important; color: #0a6b3c !important; margin-top: 1.7rem; margin-bottom: 0.75rem; border: 2px solid rgba(10,107,60,0.15) !important; }
.diana-share-btn--email::before { border: 2px solid #0a6b3c; }
.diana-share-btn--email:hover   { transform: translateY(-2px); color: #085c33 !important; }

/* ── MAP ─────────────────────────────────────────────────── */
.diana-map-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  5%   { transform: scale(1.12); }
  10%  { transform: scale(1); }
  15%  { transform: scale(1.08); }
  20%  { transform: scale(1); }
  100% { transform: scale(1); }
}
@keyframes heartBeat {
  0%, 40%, 100% { transform: scale(1); }
  10%, 30%      { transform: scale(1.25); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* ── LARGE DESKTOP NAV ─────────────────────────────────────── */
@media (min-width: 1800px) {
  :root { --max-w: 1400px; }
  .diana-nav__list { justify-content: flex-end; }
}

@media (min-width: 2400px) { :root { --max-w: 1600px; } }
@media (min-width: 3200px) { :root { --max-w: 1800px; } }

/* ── 4K / LARGE SCREENS ────────────────────────────────────── */
@media (min-width: 1400px) {
  .diana-hero { min-height: unset; height: 100vh; max-height: 900px; }
  .diana-hero__inner   { min-height: unset; height: 100%; }
  .diana-hero__photo   { margin-right: 0; }
  .diana-hero__photo-img { left: 60%; height: 88%; }
  .diana-hero__slogan img { max-width: 480px; }
}

@media (min-width: 1800px) {
  .diana-hero { max-height: 1000px; }
  .diana-hero__photo-img { left: 60%; height: 95%; }
}

@media (min-width: 2400px) {
  .diana-hero { max-height: 1100px; }
  .diana-hero__photo-img { left: 62%; }
}

@media (min-width: 3200px) {
  .diana-hero { max-height: 1200px; }
}

/* ── DESKTOP PHOTO POSITION BY RANGE ──────────────────────── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .diana-hero__photo-img { left: 57%; }
}

@media (min-width: 861px) and (max-width: 1199px) {
  .diana-hero__photo-img { left: 50%; }
}

/* ── MID DESKTOP (861–1799px) – photo height ─────────────── */
@media (min-width: 861px) and (max-width: 1799px) {
  .diana-hero__photo-img { height: 105%; top: 20px; bottom: auto; object-position: top center; }
  .diana-hero { max-height: 860px; }
}

/* ── MEDIUM SCREENS (861–944px) ───────────────────────────── */
@media (min-width: 861px) and (max-width: 944px) {
  .diana-hero__slogan-bold  { font-size: 3.2rem; white-space: nowrap; }
  .diana-hero__name         { font-size: 2.4rem; }
  .diana-hero__role-label,
  .diana-hero__role-desc    { font-size: 0.92rem; }
  .diana-hero__name-box .diana-hero__name,
  .diana-hero__name-box .diana-hero__role { margin-left: 1.15rem !important; }
  .diana-hero__photo-img    { left: 46%; height: 95%; }
  .diana-hero__inner        { gap: 2rem; }
}

/* ── NAME BOX MARGINS ON MEDIUM DESKTOPS ──────────────────── */
@media (max-width: 1351.98px) {
  .diana-hero__name-box .diana-hero__name,
  .diana-hero__name-box .diana-hero__role { margin-left: 1rem; }
}

@media (max-width: 1124px) {
  .diana-hero__name-box .diana-hero__name,
  .diana-hero__name-box .diana-hero__role { margin-left: 3rem; }
}

/* ── DESKTOP SLOGAN LEFT-ALIGN ─────────────────────────────── */
@media (min-width: 861px) and (max-width: 1799px) {
  .diana-hero__slogan { align-items: flex-start; }
  .diana-hero__slogan-img { margin-left: 0; margin-right: 0; }
}

/* ── HAMBURGER: hide desktop nav ──────────────────────────── */
@media (max-width: 1100px) {
  .diana-hamburger { display: flex; }
  .diana-nav, .diana-header__social { display: none; }
}

/* ── GRID BREAKPOINTS ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .diana-program__grid { grid-template-columns: repeat(2,1fr); }
  .diana-archive__grid { grid-template-columns: repeat(2,1fr); }
  .diana-news__grid    { grid-template-columns: repeat(2,1fr); }
}

/* ── TABLET / MOBILE (≤860px) ─────────────────────────────── */
@media (max-width: 860px) {
  /* Hero layout */
  .diana-hero { min-height: unset; padding-bottom: 0; }
  .diana-hero__inner {
    grid-template-columns: 1fr; min-height: unset; height: auto;
    padding-top: 1.5rem; padding-bottom: 0 !important; gap: 0; align-items: start;
  }
  .diana-hero__content { align-self: auto; padding-bottom: 0; padding-top: 0; text-align: center; }
  .diana-hero__slogan  { margin-top: 3rem; margin-bottom: 0.75rem; align-items: center; }
  .diana-hero__slogan img { margin-left: auto; margin-right: auto; }
  .diana-hero__slogan-bold   { font-size: clamp(2rem, 8vw, 3rem); }
  .diana-hero__name-box {
    padding: 0.75rem 1.1rem; border-radius: 16px; margin-top: 1.2rem; margin-bottom: 1.05rem;
    text-align: center; margin-left: auto; margin-right: auto;
  }
  .diana-hero__name-box .diana-hero__name { margin-left: 0.4rem; margin-top: 0; }
  .diana-hero__name-box .diana-hero__role { margin-left: 0.8rem; }
  .diana-hero__role    { justify-content: center; }
  .diana-hero__actions { justify-content: center; }
  .diana-hero__badge   { margin-left: auto; margin-right: auto; }
  .diana-hero__scroll  { display: none; }

  /* Photo */
  .diana-hero__photo {
    height: auto !important; min-height: unset !important; max-height: unset !important;
    margin-left: 0 !important; margin-right: 0; margin-top: 0; padding-bottom: 0; margin-bottom: 0;
    width: 100%; display: flex; justify-content: center; align-self: auto;
  }
  .diana-hero__photo-img {
    position: relative !important; left: auto !important; right: auto !important;
    bottom: auto !important; top: auto !important; transform: none !important;
    height: auto !important; width: 90% !important; max-width: 500px;
    margin: 0 auto; margin-right: -3px; display: block;
    object-fit: contain; object-position: bottom center;
  }

  /* Sections */
  .diana-about__inner      { grid-template-columns: 1fr; gap: 2.5rem; }
  .diana-newsletter__inner { grid-template-columns: 1fr; gap: 2rem; }
  .diana-about__traits     { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .diana-gallery__grid     { grid-template-columns: repeat(3,1fr); }
  .diana-gallery__grid .diana-gallery__item:first-child { grid-column: span 3; }

  /* Float */
  .diana-float             { right: .75rem; top: auto; bottom: 1.5rem; }
  .diana-float__trigger    { width: 50px; height: 50px; padding: 8px; }
  .diana-float__arrow      { display: none; }
  .diana-float__panel      { right: 0; left: auto; top: auto; bottom: calc(100% + .75rem); transform: translateY(8px) scale(.97); }
  .diana-float__panel.is-open { transform: translateY(0) scale(1); }

  /* Kandidat footer */
  .diana-kandidat-footer   { flex-direction: column-reverse; text-align: center; }
  .diana-share-card        { width: 100%; border-radius: 20px; justify-content: center; padding: 1.5rem; }

  /* Content */
  .diana-feature-box       { padding: 2rem; border-radius: 20px; }
  .diana-feature-box .wp-block-columns { gap: 2rem; }
  .single-diana_event .wp-block-video { margin: 2rem auto; }
  .single-diana_event .wp-block-video video { max-height: 500px; border-radius: 12px; }

  /* Footer */
  .diana-footer__top        { grid-template-columns: 1fr 1fr; gap: 3rem; text-align: center; }
  .diana-footer__brand,
  .diana-footer__tagline    { max-width: 100%; align-items: center; }
  .diana-footer__contact-item { justify-content: center; }
  .diana-footer__bottom     { flex-direction: column-reverse; gap: 1.5rem; text-align: center; }
}

/* ── SMALL MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .diana-page-hero  { padding-bottom: 1.5rem; }
  .diana-single__inner { padding-top: 1rem; }
  .diana-news__card--featured { flex-direction: column; max-height: none; }
  .diana-news__card--featured .diana-news__card-body { padding: 2rem; }
}

@media (max-width: 600px) {
  .diana-news__grid    { grid-template-columns: 1fr; }
  .diana-program__grid { grid-template-columns: 1fr; }
  .diana-archive__grid { grid-template-columns: 1fr; }
  .diana-gallery__grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .diana-gallery__grid .diana-gallery__item:first-child { grid-column: span 2; }
  .diana-footer__top   { grid-template-columns: 1fr; }
  .diana-donation__inner { flex-direction: column; text-align: center; }
  .diana-map-container { padding: 0; }

  .diana-events__item    { flex-wrap: wrap; gap: 1rem; align-items: flex-start; }
  .diana-events__info    { flex: 1; min-width: 200px; }
  .diana-events__item .diana-btn { width: 100%; justify-content: center; margin-top: 0.5rem; order: 3; }
  .diana-events__meta    { gap: 0.5rem; flex-direction: column; }
  .diana-events__meta-item { font-size: 0.82rem; }
}

@media (max-width: 530px) {
  .diana-hero__name-box { margin-bottom: 2rem; }
}

/* ── ATTENTION CARD ────────────────────────────────────────── */
@media (max-width: 900px) {
  .diana-attention-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .diana-attention-card__content { flex-direction: column; gap: 0.5rem; }
  .diana-attention-card__btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   INTERVIEW COUNTER  –  add to the end of main.css
═══════════════════════════════════════════════════════════ */

/* ── SECTION ─────────────────────────────────────────────── */
.diana-intcounter {
  background: var(--purple);
  padding: 4.5rem 5vw;
  position: relative;
  overflow: hidden;
}

/* subtle dot-grid texture */
.diana-intcounter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,194,14,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* glowing blob in the background */
.diana-intcounter::after {
  content: '';
  position: absolute;
  top: 50%;  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,194,14,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── INNER LAYOUT ────────────────────────────────────────── */
.diana-intcounter__inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 0;
  width: 100%;
}

/* ── SCOREBOARD ──────────────────────────────────────────── */
.diana-intcounter__scoreboard {
  display: flex;
  gap: clamp(.3rem, 1vw, .6rem);
  align-items: center;
  justify-content: center;
  padding: .5rem 0;
  margin-top: 1rem;
}
.diana-intcounter__digit-card {
  background: #280024;
  border: 2px solid rgba(255,194,14,.5);
  border-radius: 10px;
  width: clamp(3.2rem, 8vw, 5.5rem);
  height: clamp(4.8rem, 12vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0,0,0,.5),
    0 0 20px rgba(255,194,14,.15),
    inset 0 1px 0 rgba(255,194,14,.15);
  transition: border-color .4s ease, box-shadow .4s ease;
}

/* The horizontal split line – classic scoreboard look */
.diana-intcounter__digit-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgb(44 6 43);
  z-index: 3;
  pointer-events: none;
}

/* subtle top sheen */
.diana-intcounter__digit-card::after {
  content: '';
  position: absolute;
  inset: 0 0 50% 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.diana-intcounter__digit {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1;
  position: relative;
  z-index: 4;
  display: block;
  text-shadow:
    0 2px 0 rgba(0,0,0,.4),
    0 0 20px rgba(255,194,14,.25);
  transition: color .15s ease;
}

/* Flip animation triggered by JS */
.diana-intcounter__digit-card.is-flipping {
  animation: digit-flip .32s ease-in-out;
}

@keyframes digit-flip {
  0%   { opacity: 1; transform: translateY(0)    scale(1);    }
  28%  { opacity: 0; transform: translateY(-10px) scale(0.92); }
  72%  { opacity: 0; transform: translateY( 10px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

.diana-intcounter__digit-card.is-flipping .diana-intcounter__digit {
  will-change: opacity, transform;
}

@media (max-width: 600px) {
  .diana-intcounter__digit-card {
    border-radius: 7px;
  }
}

/* ── LABELS ──────────────────────────────────────────────── */
.diana-intcounter__labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 720px;
}

.diana-intcounter__main-label {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
  width: 100%;
}

.diana-intcounter__main-label em {
  font-style: italic;
  color: var(--yellow);
}

.diana-intcounter__sub-label {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
  max-width: 600px;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
}

.diana-intcounter__sub-label strong {
  color: rgba(255,255,255,.95);
  font-weight: 700;
}

/* add a subtle yellow divider between scoreboard and text */
.diana-intcounter__labels::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  opacity: .5;
  margin-bottom: .25rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .diana-intcounter { padding: 3.5rem 5vw; }
  .diana-intcounter__icon { width: 52px; height: 52px; padding: 10px; }
  .diana-intcounter__icon svg { width: 30px; height: 30px; }
}

/* ══════════════════════════════════════════════════════
   NEWSLETTER  –  full restyle  (dnl = diana-newsletter)
══════════════════════════════════════════════════════ */

/* Section wrapper */
.dnl {
    position: relative;
    background: #2a0028;
    padding: 6rem 5vw 5rem;
    overflow: hidden;
    isolation: isolate;
}

/* Dot-grid texture */
.dnl::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,194,14,.09) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Decorative large envelope */
.dnl__deco {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: min(55vw, 680px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
.dnl__deco svg { width: 100%; height: auto; }

/* Glow blobs */
.dnl__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.dnl__blob--1 {
    width: 500px; height: 500px;
    top: -160px; left: -100px;
    background: radial-gradient(circle, rgba(56,0,54,.9) 0%, transparent 70%);
}
.dnl__blob--2 {
    width: 340px; height: 340px;
    bottom: -120px; right: 30%;
    background: radial-gradient(circle, rgba(255,194,14,.07) 0%, transparent 70%);
}

/* Yellow bottom accent bar */
.dnl__bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffc20e 0%, #ffd655 50%, #ffc20e 100%);
}

/* ── Layout ───────────────────────────────────────── */
.dnl__inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Left side ────────────────────────────────────── */
.dnl__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2a0028;
    background: #ffc20e;
    padding: .35rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.dnl__tag::before {
    content: '✉';
    font-size: .8rem;
}

.dnl__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 1.2rem;
}
/* Yellow highlight on last word */
.dnl__title em {
    font-style: normal;
    color: #ffc20e;
}

.dnl__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 380px;
}

/* Perks */
.dnl__perks {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 2.5rem;
}
.dnl__perk {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.dnl__perk-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #ffc20e;
    color: #380036;
    font-size: .65rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Stat pill */
.dnl__stat {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,194,14,.08);
    border: 1px solid rgba(255,194,14,.2);
    border-radius: 100px;
    padding: .6rem 1.25rem;
}
.dnl__stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffc20e;
    letter-spacing: -.02em;
    white-space: nowrap;  /* ← add this */
}
.dnl__stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

/* ── Right side: card ─────────────────────────────── */
.dnl__right {
    position: relative;
}

/* Decorative ring behind card */
.dnl__right::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 2px solid rgba(255,194,14,.15);
    border-radius: 1.5rem;
    pointer-events: none;
}

.dnl__card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 2.25rem;
    box-shadow:
        0 0 0 1px rgba(255,194,14,.15),
        0 30px 80px rgba(0,0,0,.4),
        0 10px 30px rgba(0,0,0,.2);
    position: relative;
    z-index: 1;
}

.dnl__card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #f0eaf0;
    font-size: .9rem;
    font-weight: 700;
    color: #380036;
}

/* Qomon field overrides */
.dnl__card input[type="text"],
.dnl__card input[type="email"],
.dnl__card input[type="tel"],
.dnl__card select,
.dnl__card textarea {
    border: 1.5px solid #e4dce4 !important;
    border-radius: .6rem !important;
    padding: .75rem 1rem !important;
    font-size: .95rem !important;
    font-family: 'Poppins', sans-serif !important;
    width: 100% !important;
    margin-bottom: .75rem !important;
    transition: border-color .2s, box-shadow .2s !important;
    box-shadow: none !important;
    outline: none !important;
    background: #faf8fa !important;
}
.dnl__card input:focus,
.dnl__card select:focus {
    border-color: #380036 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(56,0,54,.08) !important;
}
.dnl__card button[type="submit"],
.dnl__card input[type="submit"] {
    background: #380036 !important;
    color: #fff !important;
    border: none !important;
    border-radius: .6rem !important;
    padding: .9rem 1.75rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: .5rem !important;
    transition: background .2s, transform .15s !important;
    letter-spacing: .02em !important;
}
.dnl__card button[type="submit"]:hover,
.dnl__card input[type="submit"]:hover {
    background: #ffc20e !important;
    color: #380036 !important;
    transform: translateY(-1px) !important;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .dnl__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .dnl__deco { display: none; }
    .dnl__sub  { max-width: 100%; }
    .dnl__right::before { display: none; }
}

@media (max-width: 600px) {
    .dnl { padding: 4rem 5vw 4.5rem; }
    .dnl__title { font-size: 2rem; }
    .dnl__card  { padding: 1.75rem 1.25rem; }
}

.diana-footer__operator {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.diana-footer__operator-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .4rem;
}
.diana-footer__operator-name {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin: 0;
}
.diana-footer__operator-ico {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    margin-top: .25rem;
    font-variant-numeric: tabular-nums;
}

.diana-footer__operator-sep {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: .75rem;
    line-height: 1;
    margin: .2rem 0;
}

@media (max-width: 860px) {
  .vp-content ul li {
    display: block !important;
    padding-left: 2rem !important;
    position: relative !important;
  }

  .vp-content ul li::before {
    position: absolute !important;
    left: .75rem !important;
    top: .55rem !important;
    margin-top: 0 !important;
  }

  .vp-content ul li strong {
    display: inline !important;
    font-weight: 700;
  }
}

