

:root {
  --primary: #e73d31;
  --primary-dark: #af231d;
  --secondary: #0f8d91;
  --secondary-dark: #075f63;
  --accent: #f4c84a;
  --cream: #f4fbff;
  --paper: #ffffff;
  --ink: #17212b;
  --muted: #52606d;
  --bg-dark: #101820;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(255, 255, 255, 0.96);
  --border-glass: rgba(23, 33, 43, 0.12);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --font-heading: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 8px;
  --shadow: 0 18px 48px rgba(23, 33, 43, 0.14);
  --shadow-glow: 0 18px 42px rgba(231, 61, 49, 0.22);
  --transition: 180ms ease;
  --navbar-h: 76px;
}


.volunteer-closed-hero::before,
.volunteer-closed-hero::after,
.cause-hero::before,
.cause-hero::after,
.gallery-hero::before,
.gallery-hero::after,
.contact-hero::before,
.contact-hero::after {
  background: none;
  display: none;
}

.volunteer-closed-hero__media,
.cause-hero__media,
.gallery-hero,
.contact-hero {
  filter: none;
}

html {
  background: var(--cream);
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 251, 255, 0.92), rgba(255, 255, 255, 0.98)),
    url("/static/images/background_desk.jpg") center top / cover fixed;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(231, 61, 49, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 141, 145, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 0, black 18%, black 70%, transparent 100%);
}

.scroll-progress {
  position: fixed;
  top: var(--navbar-h);
  right: 0;
  z-index: 1001;
  width: 6px;
  height: calc((100svh - var(--navbar-h)) * var(--scroll-progress, 0));
  max-height: calc(100svh - var(--navbar-h));
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  box-shadow: 0 0 18px rgba(231, 61, 49, 0.38);
  pointer-events: none;
}

@media (max-width: 900px) {
  .scroll-progress {
    right: 0;
    width: 4px;
  }
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

.wrapper {
  padding-top: var(--navbar-h);
}

section {
  position: relative;
}

h1,
h2,
h3,
h4,
h5 {
  color: inherit;
  letter-spacing: 0;
}

a {
  color: inherit;
}


header {
  height: var(--navbar-h);
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(23, 33, 43, 0.1);
  box-shadow: 0 12px 36px rgba(23, 33, 43, 0.08);
  color: var(--ink);
}

.logo img {
  height: 54px;
  filter: drop-shadow(0 8px 16px rgba(23, 33, 43, 0.12));
}

nav ul {
  gap: 2px;
}

nav ul li a {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

nav ul li a::after {
  display: none;
}

nav ul li a:hover {
  color: var(--paper);
  background: var(--ink);
}

.hamburger {
  color: var(--ink);
  border: 1px solid rgba(23, 33, 43, 0.18);
  background: rgba(255, 255, 255, 0.52);
  width: 44px;
  height: 44px;
  padding: 0;
}


.cta-button,
.contact-form button,
.cauze-section .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(231, 61, 49, 0.26);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.cta-button:hover,
.contact-form button:hover,
.cauze-section .cta-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 18px 34px rgba(231, 61, 49, 0.32);
  opacity: 1;
}

.pulse-button {
  animation: none;
}


.hero {
  min-height: calc(100svh - var(--navbar-h));
  height: auto;
  justify-content: flex-start;
  text-align: left;
  padding: clamp(72px, 12vw, 136px) clamp(20px, 8vw, 112px) clamp(72px, 9vw, 104px);
  isolation: isolate;
}

#background-video,
#background-video-artist {
  filter: none;
}

.hero > .overlay,
.artists > .overlay {
  background: none;
  display: none;
}

.hero::after {
  height: 150px;
  background: none;
}

.hero-content {
  max-width: 760px;
  padding: 0;
}

.hero-title {
  max-width: 11ch;
  margin: 0 0 20px;
  color: var(--paper);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.92;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.48);
}

.hero-title b {
  color: var(--accent);
  white-space: nowrap;
}

.hero-subtitle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--paper);
  font-size: clamp(0.96rem, 1.5vw, 1.12rem);
  backdrop-filter: blur(12px);
}

.hero-subtitle span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-subtitle span + span::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

#paper-plane-canvas {
  opacity: 0.52;
}


.about-section,
.highlight-section,
.news-media,
.organizers-section,
.program-container,
.inimo-artists-section,
.despre-inimo,
.cauze-section,
.contact-container,
.voluntariat-section,
.gallery-section,
.faq-section {
  padding-left: clamp(20px, 6vw, 88px);
  padding-right: clamp(20px, 6vw, 88px);
}

.about-section {
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding-top: clamp(70px, 10vw, 118px);
  padding-bottom: clamp(70px, 10vw, 118px);
  background: var(--cream);
}

.about-text h2,
.highlight-title,
.artists h2,
.news-media h2,
.organizers-section h2,
.program-container h2,
.inimo-section-header h2,
.despre-inimo .section-title,
.cauze-section h1,
.contact-container h2 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
}

.about-text h2 {
  max-width: 720px;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
}

.about-text p,
.highlight-box p,
.media-item p,
.cauze-section p,
.despre-inimo p,
.contact-card p {
  color: var(--muted);
}

.festival-info {
  width: min(100%, 530px);
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.12);
  box-shadow: var(--shadow);
  animation: none;
  backdrop-filter: none;
}

.festival-info p {
  color: var(--ink);
}

.festival-info span {
  color: var(--secondary-dark);
}

.about-image img {
  max-width: min(78%, 440px);
  border-radius: 8px;
  filter: drop-shadow(0 28px 32px rgba(23, 33, 43, 0.2));
  animation: float 7s ease-in-out infinite;
}


.highlight-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background: #f4fbff;
}

