/* =========================================================
   zazrivska-inverzia — main.css  v1.2
   ========================================================= */

/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

a {
  color: #ffffff;
  text-decoration: none;
}

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

/* =========================================================
   Full-page gradient overlay
   ========================================================= */
.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom left, #ffc957 0%, transparent 100%);
  mix-blend-mode: multiply;
}

/* =========================================================
   Site wrapper
   ========================================================= */
.site-main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* =========================================================
   1. Festival title
   ========================================================= */
.section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.festival-title {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* =========================================================
   2. Program columns
   ========================================================= */
.section-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.program-heading {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.program-content {
  color: #ffffff;
  line-height: 1.7;
}

/* WYSIWYG typography inside program columns */
.program-content p,
.program-content li {
  color: #ffffff;
  font-weight: 400;
}

.program-content strong,
.program-content b {
  font-weight: 700;
  color: #ffffff;
}

/* =========================================================
   3. Frontpage WYSIWYG content
   ========================================================= */
.section-content {
  margin-bottom: 80px;
  color: #ffffff;
  line-height: 1.7;
}

.section-content * {
  color: #ffffff;
}

.section-content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4,
.section-content h5,
.section-content h6 {
  margin-bottom: 12px;
  color: #ffffff;
}

.section-content p {
  margin-bottom: 16px;
}

/* =========================================================
   4. Social icons footer
   ========================================================= */
.section-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.section-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.section-social svg {
  display: block;
}

/* =========================================================
   Mobile — single column layout
   ========================================================= */
@media (max-width: 1023px) {
  .site-main {
    padding: 48px 20px;
  }

  .section-title {
    margin-bottom: 48px;
  }

  .section-program {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .section-content {
    margin-bottom: 48px;
  }
}
