:root {
  --page-width: 100vw;
  --page-height: 100vh;
  --max-width: 1920px;
  --text-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Caveat Brush", cursive;
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: var(--text-color);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

/* Глобальний фон (зім’ятий папір) */
.global-bg {
  position: fixed;
  inset: 0;
  background: url("images/bg-paper.png") center/cover no-repeat;
  z-index: -1;
  filter: grayscale(1);
}

/* Сторінки */
.page {
  width: var(--page-width);
  height: var(--page-height);
  min-height: 600px;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-inner {
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  padding: 40px 60px;
  position: relative;
}

/* ===== HERO PAGE (1) ===== */

.editable-hero {
  position: absolute;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Головна фотка */
.hero-portrait {
  left: 0px;
  bottom: 0px;
  width: 620px;
  max-width: 40vw;
  animation: floatSlow 6s ease-in-out infinite;
}

/* Текст CHADJAK по центру */
.hero-title {
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(0,0,0,0.7);
}

/* Стрілка – трошки пульсує */
.hero-arrow {
  width: 120px;
  right: 850px;
  bottom: 50px;
  cursor: pointer;
  animation: arrowBounce 1.8s ease-in-out infinite;
}

/* Соц кнопки */
.hero-social img {
  width: 68px;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.7));
  transition: transform 0.2s ease;
}

.hero-social:hover img {
  transform: scale(1.1);
}

.hero-social-tg {
  right: 140px;
  bottom: 60px;
  position: absolute;
}

.hero-social-x {
  right: 60px;
  bottom: 60px;
  position: absolute;
}

/* ===== ABOUT PAGE (2) ===== */

.about-grid {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-row-gap: 40px;
  align-items: flex-start;
}

/* Все ключові елементи about робимо editable для зручності */
.editable-about {
  position: relative;
}

/* about: */
.about-label {
  font-size: 48px;
  margin-bottom: 10px;
}

/* Ряд з обличчями */
.about-row {
  display: flex;
  align-items: center;
  gap: 32px;
  left: 90%; 
  font-size: 64px;
  transform: translateX(-50%) scale(1.2);
}

/* Кожне лице окремо можна міняти в CSS */
.about-face {
  width: 160px;
  max-width: 22vw;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.7));
  animation: floatTiny 5s ease-in-out infinite;
}

.about-wojak {
  animation-delay: 0s;
}

.about-giga {
  animation-delay: 0.7s;
}

.about-chadjak {
  animation-delay: 1.3s;
}

/* + і = */
.about-op {
  display: inline-block;
  transform: translateY(-10px);
}

/* chart: */
.chart-label {
  font-size: 48px;
}

/* Блок під графік */
.chart-frame {
  width: 100%;
  max-width: 1200px;
  height: 420px;
  left: 20%;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(0,0,0,0.7);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Анімації ===== */

@keyframes floatSlow {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes floatTiny {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-3deg); }
}

/* ===== АДАПТИВ ДЛЯ МОБІЛКИ ===== */

@media (max-width: 900px) {
  body {
    scroll-snap-type: none; /* щоб не бісило скрол на мобілці */
  }

  .page-inner {
    padding: 24px 18px;
  }

  .hero-portrait {
    position: relative;
    left: 50%;
    bottom: auto;
    top: 110px;
    transform: translateX(-50%);
    width: 260px;
  }

  .hero-title {
    top: 32px;
    font-size: 52px;
  }

  .hero-arrow {
    right: 50%;
    transform: translateX(50%);
    bottom: 130px;
    width: 90px;
  }

  .hero-social-tg,
  .hero-social-x {
    bottom: 40px;
  }

  .hero-social-tg {
    right: 96px;
  }

  .hero-social-x {
    right: 24px;
  }

  .about-grid {
    grid-row-gap: 24px;
  }

  .about-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 40px;
  }

  .about-face {
    width: 120px;
  }

  .chart-frame {
    height: 260px;
  }
}
