.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6, 10, 18, 0.6),
      rgba(6, 10, 18, 0.9)),
    url('assets/graphics/home-bg-art.png');

  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transform-origin: top center;
  opacity: 0.65;
  z-index: 0;
}

.hero>* {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-bg) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   BEST Company Day 2026 — styles.css (complet, reconstruit)
   ============================================================ */

/* ── 0. Font ─────────────────────────────────────────────── */
/* Dacă ai fontul "Edition" local în assets/fonts/, decomentează:
@font-face {
  font-family: "Edition";
  src: url('assets/fonts/Edition.woff2') format('woff2'),
       url('assets/fonts/Edition.woff')  format('woff');
  font-weight: normal;
  font-display: swap;
}
*/

/* ── 1. Custom Properties ────────────────────────────────── */
:root {
  --color-bg: #060a12;
  --color-surface: #0d1424;
  --color-text: #edf3ff;
  --color-muted: #8a9bbf;
  --color-primary: #1f4d97;
  --color-accent: #ece49a;
  --color-border: rgba(236, 228, 154, 0.15);

  --font-main: "Edition", "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, sans-serif;

  --radius-card: 1.25rem;
  --transition: 0.3s ease;

  --container-max: 1200px;
  --section-gap: 6rem;
  --navbar-height: 88px;
}

@media (max-width: 768px) {
  :root {
    --section-gap: 4.5rem;
    /* Ajustare pe telefoane pentru a evita prea mult spațiu gol */
  }
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--color-bg);
  background-image:
    url('assets/graphics/stone-texture.png'),
    radial-gradient(circle at 50% 0%, #1a2a4a 0%, #060a12 70%);
  background-blend-mode: overlay;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100vh;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── 3. Skip Link ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── 4. Layout helpers ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--section-gap);
  position: relative;
}

.section-alt {
  background-color: var(--color-surface);
  background-image: radial-gradient(circle at 80% 50%, rgba(31, 77, 151, 0.08) 0%, transparent 60%);
}

/* split layout (text | image side-by-side) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── 5. Typography ───────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-main);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 640px;
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* ── 6. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  border-radius: 0;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  margin-top: 2rem;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: scale(1.06) rotate(-1.5deg);
  background: #fff;
  outline: none;
}

/* ── 7. Glassmorphism Card ───────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

/* ── 8. Scroll Animations ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── 9. Header / Navbar ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 10, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.navbar {
  --nav-text-size: 1.15rem;
  --brand-text-scale: 1.45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  gap: 1.5rem;
}

/* Brand — minimal: logo + wordmark only */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.brand-logo {
  height: 76px;
  width: auto;
  display: block;
}

.brand-text {
  font-family: var(--font-main);
  font-size: calc(var(--nav-text-size) * var(--brand-text-scale));
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  padding: 0.55rem 1rem;
  font-size: var(--nav-text-size);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.nav-link.active {
  color: var(--color-accent);
  background: rgba(236, 228, 154, 0.07);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .navbar {
    --nav-text-size: 1.3rem;
    --brand-text-scale: 1.22;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow-y: auto;
    gap: 0.8rem;
    background: var(--color-bg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.85rem 1.4rem;
    display: block;
    width: 90%;
    max-width: 300px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
}

/* ── 10. Hero Section ────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-height) + 3rem);
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero-content {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Interogarea media a fost mutată mai jos pentru a respecta ordinea de CSS cascade */

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy h1 {
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.hero-colab {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-colab img {
  height: 32px;
  filter: brightness(0) invert(1);
}

/* Countdown */
.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  min-width: 72px;
}

.time-box span {
  font-family: var(--font-main);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.time-box small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

/* Hero Visual — linii discrete + „spotlight” în centru ca logo-ul BCD să citească pe negru */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 78% 72% at 50% 48%,
      rgba(6, 10, 18, 0.94) 0%,
      rgba(6, 10, 18, 0.55) 42%,
      transparent 68%);
}

.hero-logo {
  position: relative;
  z-index: 2;
  max-width: min(580px, 90vw);
  width: 100%;
  height: auto;
  margin-top: 40px;
  will-change: transform;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.65));
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.16;
  z-index: 0;
  will-change: transform;
}

@media (max-width: 900px) {
  .hero::before {
    background:
      linear-gradient(to bottom,
        rgba(6, 10, 18, 0.3),
        rgba(6, 10, 18, 0.7)),
      url('assets/graphics/lines-v3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
  }

  .hero {
    padding-top: calc(var(--navbar-height) + 1.5rem);
    padding-bottom: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }

  .hero-copy {
    align-items: center;
  }
  
  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 0.75rem;
  }

  .hero-meta {
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }

  .hero-colab {
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .hero-colab img {
    height: 24px;
  }

  .countdown {
    justify-content: center;
    gap: 0.6rem;
  }
  
  .time-box {
    min-width: 60px;
    padding: 0.5rem 0.8rem;
  }
  
  .time-box span {
    font-size: 1.8rem;
  }

  .hero-visual {
    height: auto;
    margin-top: 1rem;
  }

  .hero-logo {
    max-width: 240px;
    padding-bottom: 0px;
  }
}

/* ── 11. Ce este BCD ─────────────────────────────────────── */
#ce-este-bcd {
  position: relative;
}

/* gradient de „estompare” spre secțiunea Parteneri */
#ce-este-bcd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(to bottom,
      rgba(6, 10, 18, 0) 0%,
      /* fundal BCD (negru) */
      rgba(6, 10, 18, 0.6) 40%,
      rgba(13, 20, 36, 1) 100%
      /* fundal Parteneri (albastru închis) */
    );
}

#ce-este-bcd::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(circle at center,
      rgba(31, 77, 151, 0.35),
      rgba(31, 77, 151, 0.15),
      transparent 60%);

  filter: blur(70px);
  opacity: 0.9;
}

.ce-este-bcd-inner p:last-of-type {
  margin-bottom: 0;
}

#ce-este-bcd .container {
  position: relative;
  z-index: 2;
}

.ce-este-bcd-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

/* text clar aliniat la stânga */
.ce-este-bcd-inner .bcd-text {
  text-align: left;
  justify-self: start;
}

/* asigurăm aliniere corectă pe paragrafe */
.ce-este-bcd-inner p {
  text-align: left;
}

.ce-este-bcd-inner::before {
  content: "";
  position: absolute;
  inset: -60px;

  background:
    radial-gradient(circle at 30% 40%, rgba(31, 77, 151, 0.4), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(31, 77, 151, 0.3), transparent 65%);

  filter: blur(70px);
  z-index: -1;
}

.bcd-text {
  position: relative;
  z-index: 2;
}

.about-silhouette {
  position: absolute;
  right: -80px;
  bottom: -110px;

  z-index: 0;
  pointer-events: none;
}

.about-silhouette img {
  width: 500px;
  max-width: 100%;
  opacity: 0.9;

  /* IMPORTANT: eliminăm efectul de fundal întunecat */
  filter: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .ce-este-bcd-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 360px;
  }

  .ce-este-bcd-inner .bcd-text,
  .ce-este-bcd-inner p {
    text-align: center;
    justify-self: center;
  }

  .about-silhouette {
    position: absolute;
    bottom: calc(-1 * var(--section-gap) - 0.25rem);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .about-silhouette img {
    width: 350px;
    height: auto;
  }
}

/* ── Freudenberg Section ───────────────────────────────────── */
.freudenberg-content {
  margin-top: 2rem;
}

.freudenberg-intro-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: stretch;
}

.freudenberg-image-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
}

.freudenberg-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.freudenberg-image-wrapper:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .freudenberg-intro-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--color-text);
}

.stat-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.quote-block {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.quote-block p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}

/* ── 12. Parteneri ───────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
  padding: 2rem 0;
}

/* All partners aligned at same level */
.partners-grid.featured-partner a {
  transform: translateY(0px);
}

.partners-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(31, 77, 151, 0.08) 100%);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: all var(--transition);
  position: relative;
  width: 100%;
  min-height: 150px;
}

.partners-grid a:hover,
.partners-grid a:focus-visible {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(31, 77, 151, 0.14) 100%);
  border-color: rgba(236, 228, 154, 0.5);
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 20px 40px rgba(236, 228, 154, 0.15),
    inset 0 1px 0 rgba(236, 228, 154, 0.2);
  outline: none;
}

.partners-grid img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
  opacity: 0.9;
  transition: all var(--transition);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.partners-grid a:hover img:not(.no-invert) {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(236, 228, 154, 0.4));
}

.partners-grid a:hover img.no-invert {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(236, 228, 154, 0.4));
}

.partners-grid a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

#parteneri {
  position: relative;
  overflow: hidden;
}

/* exact același tip de glow ca la BCD */
#parteneri::before {
  content: "";
  position: absolute;
  inset: -60px;

  background:
    radial-gradient(circle at 30% 40%, rgba(31, 77, 151, 0.4), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(31, 77, 151, 0.3), transparent 65%);

  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

/* conținut peste fundal */
#parteneri .container {
  position: relative;
  z-index: 2;
}

#ce-este-bcd {
  position: relative;
  background-color: var(--color-bg);
  /* negru */
}

#parteneri {
  position: relative;
  background-color: var(--color-surface);
  /* albastru închis */
}

/* estompare lină între ele */
#ce-este-bcd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;

  background: linear-gradient(to bottom,
      rgba(6, 10, 18, 0) 0%,
      rgba(6, 10, 18, 0.4) 40%,
      rgba(13, 20, 36, 1) 100%);

  pointer-events: none;
  z-index: 2;
}

#parteneri {
  position: relative;
  overflow: visible;
}

/* ── 13. Program (Premium Glassmorphism & Neon Theme) ───────────────── */
.program-wrapper {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 4rem;
  /* Variabile locale pentru tema dark/premium */
  --theme-bg: #0B1221;
  /* Albastru foarte închis */
  --theme-gold: #D4AF37;
  /* Auriu elegant */
  --theme-gold-glow: rgba(212, 175, 55, 0.4);
  --theme-neon: #3A86FF;
  /* Albastru neon pentru workshop */
  --theme-neon-glow: rgba(58, 134, 255, 0.3);
  --text-main: #FFFFFF;
  --text-muted: #A0ABC0;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

.brutalist-title {
  font-family: var(--font-main), sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 8px;
  /* Spațiere mai mare pentru un look tech/aerisit */

  /* Efectul de "fuzionare" cu fundalul */
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.5);
  /* Contur fin auriu, semi-transparent */

  /* Glow-ul este acum foarte difuz, ca o aură rece */
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);

  /* Un gradient subtil care îl face să dispară ușor spre bază */
  background: linear-gradient(to bottom,
      rgba(212, 175, 55, 0.8) 0%,
      rgba(212, 175, 55, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;

  opacity: 0.6;
  /* Îl face să pară parte din fundal, nu deasupra lui */
  transition: opacity 0.5s ease;
}

/* Efect la hover: se aprinde subtil când treci cu mouse-ul în zonă */
.program-wrapper:hover~.brutalist-title,
.brutalist-title:hover {
  opacity: 0.9;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

/* Linia vertebrală - transformată într-un fascicul de lumină aurie */
.program-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  /* Linie subțire și fină */
  background: linear-gradient(to bottom, transparent, var(--theme-gold), var(--theme-gold), transparent);
  box-shadow: 0 0 15px var(--theme-gold-glow);
  transform: translateX(-50%);
  z-index: 1;
}

/* Ascundem imaginea veche de background a liniei, dacă nu o mai folosești */
.program-spine img {
  display: none;
}

.program-events {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  width: 100%;
}

.event-time {
  font-family: var(--font-main), sans-serif;
  font-size: 1.8rem;
  color: var(--theme-gold);
  text-align: right;
  padding-right: 2rem;
  font-weight: 800;
  text-shadow: 0 0 15px var(--theme-gold-glow);
  letter-spacing: 1px;
}

/* Punctele de pe timeline - Inele aurii/luminoase */
.event-dot {
  width: 16px;
  height: 16px;
  background: var(--theme-bg);
  border: 3px solid var(--theme-gold);
  border-radius: 50%;
  justify-self: center;
  box-shadow: 0 0 12px var(--theme-gold-glow), inset 0 0 5px var(--theme-gold-glow);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.event-dot.accent {
  background: var(--theme-gold);
  box-shadow: 0 0 20px var(--theme-gold);
}

/* Glassmorphism Cards */
.event-content {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-left: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: var(--text-main);
}

.event-content:hover {
  transform: translateY(-3px) translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.event-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.event-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Alternare asimetrică pe desktop */
.event-row:nth-child(even) .event-time {
  grid-column: 3;
  text-align: left;
  padding-left: 2rem;
  padding-right: 0;
}

.event-row:nth-child(even) .event-content {
  grid-column: 1;
  grid-row: 1;
  margin-left: 0;
  margin-right: 2rem;
  text-align: right;
}

.event-row:nth-child(even) .event-content:hover {
  transform: translateY(-3px) translateX(-5px);
}

/* 🌟 Highlight Workshop (Neon Blue Edition) */
.event-row.highlight .event-dot {
  border-color: var(--theme-neon);
  box-shadow: 0 0 15px var(--theme-neon-glow);
}

.event-row.highlight .event-content {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--theme-neon);
  box-shadow: 0 0 25px var(--theme-neon-glow), inset 0 0 15px rgba(58, 134, 255, 0.05);
}

.event-row.highlight .event-content:hover {
  box-shadow: 0 0 35px rgba(58, 134, 255, 0.4), inset 0 0 20px rgba(58, 134, 255, 0.1);
  border-color: #6EB2FF;
}

/* Grafica tip Val pentru Workshop */
.event-label-img {
  max-width: 120px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 12px var(--theme-neon-glow));
  opacity: 0.9;
}

.duration {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--theme-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive program - Mobil */
@media (max-width: 768px) {
  .event-row {
    grid-template-columns: 30px 1fr;
    gap: 1.5rem;
  }

  .program-spine {
    left: 15px;
    /* Aliniat la centrul dot-ului */
  }

  .event-time {
    grid-column: 2;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .event-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    /* Se întinde pe ambele rânduri (oră + card) */
    align-self: start;
    margin-top: 0.4rem;
  }

  .event-content {
    grid-column: 2;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  /* Anulează alternarea pe mobile */
  .event-row:nth-child(even) .event-time {
    grid-column: 2;
  }

  .event-row:nth-child(even) .event-content {
    grid-column: 2;
    grid-row: unset;
  }

  .event-row:nth-child(even) .event-content:hover {
    transform: translateY(-3px) translateX(0);
  }

  .event-content:hover {
    transform: translateY(-3px) translateX(0);
  }
}

/* ── 14. Locație ─────────────────────────────────────────── */
#locatie .location-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Agenda zilei / Eyebrow dispare */
#locatie .location-header .eyebrow {
  display: none;
}

/* Titlul stilizat "stealth" - una cu fundalul */
#locatie .location-header h2 {
  font-family: var(--font-main), sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  /* Dimensiune optimizată pentru text lung */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-top: 0;

  /* Efectul de fuziune (ca la Program/Parteneri) */
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.5);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);

  background: linear-gradient(to bottom,
      rgba(212, 175, 55, 0.8) 0%,
      rgba(212, 175, 55, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;

  opacity: 0.6;
}

/* --- Containerul hărții (NEMODIFICAT conform cerinței) --- */
#locatie .location-map-wrapper.floating-layout {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: var(--radius-card, 16px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Harta (NEMODIFICAT conform cerinței) --- */
#locatie .location-map {
  position: absolute;
  top: -110px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 120px);
  border: none;
  z-index: 1;
}

/* --- Cardul Estetic Plutitor (NEMODIFICAT conform cerinței) --- */
#locatie .floating-card {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  z-index: 2;
  width: 340px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  #locatie .location-header h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    word-break: break-word;
    white-space: normal;
  }

  #locatie .location-map-wrapper.floating-layout {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  #locatie .location-map {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
  }

  #locatie .floating-card {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ── 15. Despre noi (Optimized & Cleaned) ──────────────────── */

#despre-noi {
  position: relative;
  overflow: hidden;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Revenim la proporții egale */
  gap: 10rem;
  /* Aici e secretul: am dublat distanța dintre text și poză (era 4rem) */
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: right;
  /* Ține poza lipită de marginea din dreapta */
}

.about-image img {
  max-width: 100%;
  /* O facem un pic mai mică decât spațiul alocat */
  width: 760px;
  /* Am redus-o de la 760px ca să nu mai arate uriașă */
  height: auto;
  opacity: 0.95;
  transform: translateY(30px);
}

/* ──── RESPONSIVE BREAKPOINT ────────────────── */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
    /* Ajustare distanță */
  }

  .about-image {
    /* Correct alignment for centered content on mobile */
    justify-content: center;
    margin-top: 1rem;
  }

  .about-image img {
    transform: none;
    width: 100%;
    max-width: 380px;
  }
}

/* ──── DECORATIONS (Floating Dots) ───────────── */
#despre-noi::before,
#despre-noi::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: floatDots 8s ease-in-out infinite;
}

#despre-noi::before {
  width: 220px;
  height: 220px;
  top: 40px;
  left: -80px;
  background: rgba(236, 228, 154, 0.18);
  /* Galben transparent */
  filter: blur(2px);
}

#despre-noi::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -100px;
  background: rgba(236, 228, 154, 0.12);
  filter: blur(4px);
}

@keyframes floatDots {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0px);
  }
}


.about-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-logo {
  height: 100px;
  width: auto;
  display: block;
}

.about-media {
  margin-top: 3rem;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  opacity: 0.85;
}

───────────────────────────────────────────── */

/* ── 16. Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 100px;
  width: auto;
  display: block;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.social-links a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition);
}

.social-links .social-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: block;
}

.social-links a.social-link:hover,
.social-links a.social-link:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.site-footer p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

/* ── 17. Misc / Utilities ────────────────────────────────── */
.floating-art {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 20px rgba(31, 77, 151, 0.3));
}

/* Highlight border utility for event */
.highlight-border {
  border-color: var(--color-primary) !important;
}

/* Focus visible global */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Scrollbar subtil */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.highlight-bcd {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .site-footer {
    padding-block: 5rem;
  }
}