* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: #fff;
  color: #282828;
}

/* ========================================================= */
/* === FIX: БЛОКУВАННЯ СКРОЛУ BODY ПРИ ВІДКРИТОМУ МЕНЮ (IOS JUMP FIX) === */
/* ========================================================= */
body.menu-open {
    overflow: hidden !important;
    /* Ці властивості запобігають стрибкам на iOS */
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Header */
.header {
  padding: 0 50px 100px 50px;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
}


/* Контейнер меню */
.menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto;
  gap: 20px;
  z-index: 10002;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #282828;
  transition: all 0.3s ease;
}


.hamburger:active span {
  background: #D8CDB8;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

/* Анімація перетворення на Х */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Мобільне меню --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 50px 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Контейнер для центрального контенту */
.mobile-menu-content {
  flex: 1; /* займає всю доступну висоту */
  display: flex;
  flex-direction: column;
  justify-content: center; /* ось воно! центрує вертикально */
  align-items: flex-start; /* по лівому краю */
  gap: 20px;
}


.mobile-menu-content a {
  font-size: 22px;
  color: #282828;
  text-decoration: none;
}


/* Нижня частина меню */
.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 0px;
}

.mobile-menu-bottom .socials {
  display: flex;
  gap: 20px;
}

/* --- Анімація елементів гамбургера --- */

.mobile-menu-content .mobile-link {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.mobile-menu.active .mobile-menu-content .mobile-link {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.mobile-menu-content .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu-content .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu-content .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}

/* Коли скидаємо — початковий стан */
.mobile-link.reset {
  opacity: 0 !important;
  transform: translateX(10px) !important;
  transition: none !important;
}



/* Кнопка закриття Х */
.close-menu {
  font-size: 36px;
  background: none;
  border: none;
  color: #282828;
  cursor: pointer;
  line-height: 1;
}


.mobile-logo {
  font-size: 22px;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  margin-bottom: 40px;
}

.mobile-link {
  font-size: 22px;
  color: #282828;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-link:active {
  opacity: 0.5;
  color: #D8CDB8; /* Додаємо підсвітку кольором */
  transition: all 0.1s ease;
}

.mobile-socials {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  margin-left: -5px;
}

.mobile-socials img {
  width: 36px;
  height: 36px;
  transition: opacity 0.3s ease;
}


.mobile-copy {
  width: 224px;
  color: #282828;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.6;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  width: 100%;
  height: 110px; /* стартова висота */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  justify-content: center;
}

.menu.scrolled {
  height: 80px; /* висота при скролі */
}


.menu-right {
  margin-left: auto; /* відсуває все вправо */
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
}

.showreel-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 52px;
  border-radius: 64px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: #282828;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Відео поверх кнопки */
.showreel-btn video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 64px;
  opacity: 0;
  pointer-events: none; /* щоб відео не блокувало ховер/клік */
  transition: opacity 0.3s ease;
}

/* 4. Кнопка Showreel (складна кнопка в меню) */
.showreel-btn:active video {
  opacity: 0.5;
  transition: opacity 0.1s ease;
}

/* Текст та SVG завжди поверх відео */
.showreel-btn span,
.showreel-btn svg {
  position: relative;
  z-index: 1;
}

/* Пульсуюча обводка та світіння при ховері */
.showreel-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 64px;
  padding: 2px; /* товщина обводки */
  background: linear-gradient(270deg, #282828, #A2EE40, #282828);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude; /* для сучасних браузерів */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 4. Кнопка Showreel (складна кнопка в меню) */
.showreel-btn:active video {
  opacity: 0.5;
  transition: opacity 0.1s ease;
}

.showreel-btn:active::before {
  opacity: 1;
  /* Тут прибираємо пульсацію, залишаємо просто світіння */
  transition: opacity 0.1s ease;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

/* Вказуємо, що SVG можна анімувати */
.showreel-btn svg {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* плавний bounce ефект */
}

.showreel-btn:active svg {
  color: #A2EE40;
  transform: scale(0.9); /* Зменшуємо */
  transition: all 0.1s ease;
}

.showreel-btn span {
  transition: color 0.3s ease; /* плавна зміна кольору */
}

.showreel-btn:active span {
  color: #A2EE40;
  transition: color 0.1s ease;
}

.menu-link {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  text-decoration: none;
  transition: opacity 0.15s ease-out;
}


/* Стан при натисканні (працює на всіх пристроях, включаючи мобільні) */
.menu-link:active {
  opacity: 0.5;
  transition: opacity 0.1s ease;
}

.socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.socials img {
  width: 33px;
  height: 33px;
  display: block;
}

/* 3. Соцмережі (в хедері та мобільному меню) */
.mobile-socials img:active,
.socials img:active {
  opacity: 0.5;
  transform: scale(0.9); /* Ефект натискання */
  transition: all 0.1s ease;
}

/* Hero Block */
#showreel {
  scroll-margin-top: 90px; /* або висота твого меню */
}

.hero-block {
  position: relative;
  width: 100%;
  max-width: 1340px;
  height: 776px;       /* фіксована висота з макета */
  margin: 0 auto;      /* центрування */
  margin-top: 110px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2; /* поверх градієнта */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px;
}

.hero-title-mobile {
  display: none;
}

.hero-watch-showreel {
  display: none;
}

.hero-title {
  position: absolute;
  top: 45%;
  left: 40px;   /* той самий відступ, що й padding */
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #A2EE40;
}

.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-description {
  font-size: 32px;
  font-weight: 300;
  line-height: 42px;
  color: #fff;
  margin-bottom: 30px;
  max-width: 750px;
}

.tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tags-mobile {
  display: none;
}

.tag {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;  /* було 20px */
  height: 52px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.tag.green {
  background: #A2EE40;
  color: #282828;
}

.tag.white {
  background: #fff;
  color: #282828;
}

.tag.black-mobile {
  background: #282828;
  color: #fff;
}

.tag.beige {
  background: #D8CDB8;
  color: #282828;
}

.hash {
  opacity: 0.25;
  left: 20px;
  margin-right: 2px; /* трохи відступу після # */
  margin-left: -4px;
}

.bottom-row {
  display: flex;
  align-items: center;       /* KEY: centers tags and local-time vertically */
  justify-content: space-between;
  gap: 0px;
  width: 100%;
}

.hero-right {
  display: flex;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column; /* keep description on top */
  gap: 10px; /* space between description and tags */
  width: 100%;
}

.hero-left .tags-wrapper {
  height: 52px; /* same as tag height */
  display: flex;
  align-items: center;
}

.local-time {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #A2EE40;
  white-space: nowrap; /* щоб завжди був в 1 рядок */
}

.video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.about-block {
  width: 100%;
  background: #0F0F0F;
  border-radius: 20px;
  padding: 0 50px;
}

.about-inner {
  width: 100%;
  padding: 90px 0 90px 0; /* зверху/знизу padding */
  box-sizing: border-box;
}

/* Контейнер для тексту */
.about-text-container {
  max-width: 1340px;  /* як video-container */
  width: 100%;
  margin: 0 auto;     /* центр по ширині */
}

.about-text-left {
  padding-left: 40px; /* вирівнювання як hero-left */
  padding-right: 40px;
}

.about-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  color: #fff;
  margin: 0;
}

.about-title .about-subtitle {
  color: #5A5A5A;
}

/* Контейнер для Showreel */
.about-video-container {
  max-width: 1340px;          /* ширина як video-container */
  margin: 40px auto 0 auto;   /* відступ зверху + центр по ширині */
}

.showreel-block {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}

.showreel-video-container,
.yt-wrapper,
.yt-frame-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.yt-thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115px;
  height: 115px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt-play-btn svg {
  width: 100%;
  height: 100%;
}

.yt-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Текст поверх thumbnail/відео */
.showreel-label {
  position: absolute;
  top: 50%;
  left: 40px; /* той самий відступ що у hero-title */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  z-index: 1; /* поверх thumbnail, але під кнопкою play */
  /* pointer-events: none; /* щоб не заважав клікам */
}

.showreel-label .bracket {
  color: #5A5A5A;
}

.showreel-label .showreel-text {
  color: #A2EE40;
  margin: 0 5px;
}

.showreel-label-mobile {
  display: none;
}

/* коли відео запущене — ховаємо */
.showreel-block.playing .showreel-label {
  display: none;
}

#info {
  scroll-margin-top: 120px; /* або висота твого меню */
}

/* Новий текст праворуч */
.showreel-description {
  position: absolute;
  top: 50%;            /* по центру по вертикалі відносно відео */
  right: 40px;          /* відступ праворуч (симетрично до left: 40px у showreel-label) */
  transform: translateY(-50%); /* вирівнюємо по центру по вертикалі */
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.6;
  z-index: 1;           /* поверх thumbnail, під кнопкою play */
/* pointer-events: none; /* не заважати клікам */
  text-align: left;    /* текст вирівняний по правому краю */
  max-width: 232px;
}

/* Ховати при відтворенні відео, як і лівий блок */
.showreel-block.playing ~ .showreel-description {
  display: none;
}


.text-info-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 100px auto 100px auto;
  max-width: 1340px; /* твоя рамка */
  padding: 0;
  box-sizing: border-box;
}

.text-info-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Заголовок */
.text-info-title {
  flex: 0 0 30%;
  min-width: 150px;
  margin-left: 40px;
  color: #FFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Опис */
.text-info-description {
  flex: 1;
  max-width: 800px;       /* як у дизайні */
  margin-right: 40px;     /* додає «зону» справа */
  color: #5A5A5A;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.text-info-description .underline {
  text-decoration: underline;
}

/* ---------- Connect Card (виправлений) ---------- */
#contact {
  scroll-margin-top: 120px; /* або висота твого меню */
}

.connect-card {
  max-width: 1340px;
  background: #fff;
  border-radius: 20px;
  margin: 40px auto 0 auto; /* менше відстані зверху */
  padding: 40px 0;
  box-sizing: border-box;
}

.connect-item {
  display: flex;
  align-items: flex-start;
  max-width: 1340px;
  margin: 0 auto;
}

.connect-title {
  flex: 0 0 30%;
  min-width: 150px;
  margin-left: 40px;
  color: #0F0F0F;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}

.connect-links {
  flex: 1;
  max-width: 900px;
  margin-right: 40px;
  color: #5A5A5A;
  font-family: "Space Grotesk", sans-serif;
  display: flex;
  flex-direction: column;
}

.connect-link.main-link {
  color: #0F0F0F;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 40px;
}

/* 8. Connect посилання (Footer) */
.connect-link.main-link:active {
  opacity: 0.5;
  transition: opacity 0.1s ease;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.connect-link {
  color: #5A5A5A;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.connect-link:active {
  color: #0F0F0F;
  transition: all 0.1s ease;
}

.footer {
  background: #fff;
  padding: 60px 40px 60px 40px;
}

.footer-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-top {
  width: 105px;
  color: #282828;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s;
}

/* 9. Back to top */
.back-to-top:active {
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.1s ease;
}

.footer-copy {
  width: 224px;
  color: #282828;
  text-align: right;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* Початковий стан — невидимі */
.back-to-top,
.footer-copy {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Клас для появи */
.footer-visible {
  opacity: 1;

}

.plain-link {
  color: inherit;          /* використовує колір батьківського елемента */
  text-decoration: none;   /* прибирає підкреслення */
  cursor: pointer;         /* курсор у вигляді руки при наведенні */
  transition: color 0.3s;  /* плавна зміна кольору */
}

/* 10. Plain links (звичайні посилання в тексті) */
.plain-link:active {
  color: #ffffff;
  transition: all 0.1s ease;
}


/*   -----------------------------------------------------------------------   */

/* ---- 1040px ---- */
@media (max-width: 1040px) {
  .local-time {
    display: none;
  }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .hero-title {
    top: 5%;
    transform: none;
  }

  .local-time {
    display: none;
  }

  .about-title {
    max-width: 600px;
  }

  .tags {
    flex-wrap: wrap;
  }

  .yt-play-btn {
    width: 100px;
    height: 100px;
  }

.showreel-description {
  max-width: 193px;
  font-size: 10px;
}

  .text-info-description{
    margin-right: 30px;
  }

  .text-info-title {
    flex: 0 0 25%;
  }

  .connect-title{
    flex: 0 0 25%;
  }
}

.footer-inner {
  padding: 0 50px;
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  .menu-link, .showreel-btn span {
    font-size: 14px;
  }

  .logo {
    font-size: 22px;
  }

  .hero-title {
      font-size: 28px;
    }

    .hero-description {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    max-width: 750px;
  }

  .tags {
    flex-wrap: wrap;
  }

  .tag {
    padding: 0 20px;  /* було 30px — забагато */
    text-align: center;
  }

  .about-subtitle {
    display: block;   /* переносить у новий рядок */
  }

  .showreel-btn {
    padding: 0 12px;
    height: 44px;
  }

  .showreel-btn svg {
    width: 20px; /* було 26px — тепер вдвічі менше */
    height: 20px;
  }

  .menu-inner {
    padding: 0 50px;
    gap: 16px;
  }

  .menu-right {
    gap: 18px;
  }

  .socials img {
    width: 28px; /* було 33px */
    height: 28px;
  }

  .socials {
    gap: 18px; /* було 24px */
  }

  .about-title {
    max-width: 600px;
  }

  .yt-play-btn {
    width: 86px; /* 115 * 0.75 */
    height: 86px;
  }

  .showreel-description {
    max-width: 141px;
  }

  .text-info-description {
    margin-right: 10px;
  }

  .text-info-title {
    flex: 0 0 20%;
    min-width: 120px;
    margin-left: 40px;
  }

  .connect-title {
    flex: 0 0 20%;
    min-width: 120px;
    margin-left: 40px;
  }

  .footer {
    padding: 40px;
  }

}

  /* --- Адаптив --- */
  @media (max-width: 640px) {
    .menu {
      height: 80px !important;
    }
    .menu.scrolled {
      height: 80px !important;
    }

  .menu-right .menu-link,
  .menu-right .socials {
    display: none;
  }
  .menu-inner {
    padding: 0 40px;
  }

  .hamburger {
    display: flex;
  }

  .header {
    padding: 0 40px 80px 40px;
  }

  .mobile-menu {
    padding: 100px 40px 40px;
    display: flex; /* Активація Flexbox */
    flex-direction: column; /* Вертикальне розташування вмісту */
  }

  .hero-block {
    height: 700px;
    margin-top: 80px;
  }

  .about-inner {
    padding: 80px 0 80px 0;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.3;
    }

  .about-text-left {
    padding: 0 30px 0 30px;
  }

  .showreel-label {
    left: 30px;
  }

  .showreel-btn {
     display: none;
   }

  .showreel-description {
    position: static;      /* прибираємо absolute */
    transform: none;       /* прибираємо translateY */
    margin:  10px 30px 0px 30px;     /* відступ зліва */
    text-align: left;      /* вирівнювання по лівому краю */
    max-width: none;
    color: #5A5A5A;
    opacity: 0.8;
  }

  .showreel-block.playing ~ .showreel-description {
    display: block;
  }

   .text-info-title {
     margin-left: 30px;
   }

   .connect-title {
     margin-left: 30px;
   }

   .footer {
     padding: 40px 30px 40px 30px;
   }

  }



@media (max-width: 480px) {
.header {
  padding: 0px 20px 0px 20px; /* зверху маленький відступ */
  height: 100vh;
  /* Тепер наша фіксована висота */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  margin: 0 auto;
}

.mobile-menu {
  padding: 100px 20px 100px;
  display: flex; /* Активація Flexbox */
  flex-direction: column; /* Вертикальне розташування вмісту */
}

.menu-inner {
  padding: 0 20px;
}

.hero-block {
  position: relative;
  width: 100%;
  /* Фоллбек */
  height: 100vh;
  /* Фіксована висота */
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.hero-video-container,
.hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;       /* відступ зверху */
  bottom: 40px;    /* відступ знизу */
  width: 100%;
  height: auto;
}

/* Відео тягнеться на всю видиму зону */
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px; /* для дублювання радіуса */
}

/* Градієнт */
.hero-video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 20px; /* щоб теж повторював округлення */
}

/* Контент поверх відео */
.hero-inner {
  top: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}


.hero-title {
  display: none;
}

.hero-title-mobile {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #FFF;
  padding-bottom: 5px;
}

.subtext {
  font-weight: 400; /* тонший текст */
  opacity: .85;
}

.highlight {
  color: #A2EE40; /* зелений колір */
}

.cursor {
  display: inline-block;
  width: 5px;      /* товщина курсора */
  height: 1.2em;     /* висота як у тексту */
  background-color: #A2EE40;
  vertical-align: bottom;
  animation: blink 1.2s steps(1) infinite;
  margin-left: 1px;
  transform: translateY(-2px);
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.hero-watch-showreel {
  display: inline-flex;              /* як у тегів .tag */
  align-items: center;
  justify-content: center;
  padding: 0 30px;                   /* як у .tag */
  height: 52px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  background: #A2EE40;               /* як у .tag.green */
  color: #282828;
  text-decoration: none;
  cursor: pointer;

  transition: background 0.3s ease, color 0.3s ease;
}

/* 6. Кнопка "Watch Showreel" (Hero блок) - БУЛО ПРОПУЩЕНО */
.hero-watch-showreel:active {
  background: #fff; /* Стає білою */
  color: #282828;   /* Текст стає темним, якщо треба */
  transition: all 0.1s ease;
}


/* ефект для тексту */
.hero-watch-showreel span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.hero-watch-showreel:active span {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

  .hero-bottom {
    bottom: 30px;
    left: 20px;
  }

  .hero-left {
    gap: 0;
  }

  .hero-description {
    display: none;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 0px;
  }

.tags {
      display: none;
  }

.tags-mobile {
  position: relative;
  height: 20px; /* висота контейнера */
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  margin-bottom: 10px;
}

.static-hash {
  font-size: 16px;
  font-weight: 700;
  color: #5A5A5A;
  flex-shrink: 0;
}

.tag-mobile {
  position: absolute;
  /* text-transform: uppercase; */
  font-size: 16px;
  font-weight: 700;
  color: #A2EE40;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 6s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* Задаємо затримку для кожного тегу, щоб стартував після попереднього */
.tag-mobile:nth-child(1) { animation-delay: 0s; }
.tag-mobile:nth-child(2) { animation-delay: 1s; }
.tag-mobile:nth-child(3) { animation-delay: 2s; }
.tag-mobile:nth-child(4) { animation-delay: 3s; }
.tag-mobile:nth-child(5) { animation-delay: 4s; }
.tag-mobile:nth-child(6) { animation-delay: 5s; }

/* Анімація: знизу -> на місці -> вгору -> прозоро */
@keyframes slideUp {
  0%, 5% {
    transform: translateY(100%);
    opacity: 0;
  }
  10%, 20% {
    transform: translateY(0);
    opacity: 1;
  }
  30%, 100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}



  .about-block {
    padding: 0 20px;
  }

  .about-inner {
    padding: 50px 0 50px 0; /* зверху/знизу padding */
  }

  .about-title {
    font-size: 28px;
    line-height: 1.3;
  }


  .about-text-left {
    padding: 0 20px 0 20px;
  }

  .about-subtitle {
    display: block;   /* переносить у новий рядок */
  }

  .showreel-label {
    display: none;
  }

  .showreel-label-mobile {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #A2EE40;
    margin: 10px 20px 15px 20px; /* відступ над відео */
    text-transform: uppercase;
    }

  .about-video-container {
    padding: 0px;
  }

  .yt-play-btn {
    width: 68px;
    height: 68px;
  }

  /* 7. Кнопка Play (YouTube) */
  .yt-play-btn:active {
    /* На мобільному краще зменшувати (вдавлювати), ніж збільшувати */
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
    transition: all 0.1s ease;
  }

  .showreel-description {
    margin:  10px 20px 0px 20px;
  }

  .text-info-block {
    margin: 60px auto 50px auto;
  }

  .text-info-item {
    flex-direction: column;
  }

  .text-info-title {
    margin: 0px 20px 0px 20px;
    margin-bottom: 10px;
  }

  .text-info-title br {
    display: none;
  }

  .text-info-description {
    margin: 0 20px 0 20px;
  }

  .connect-card {
    padding: 30px 0;
  }

  .connect-item {
    flex-direction: column;
  }

  .connect-title {
    margin: 0 20px 0 20px;
    margin-bottom: 20px;
  }

  .connect-links {
    margin: 0 20px 0 20px;
    max-width: 80%;
  }

  .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .connect-link.main-link {
    margin-bottom: 20px;
  }

  .footer {
    padding: 40px;
  }

  .footer-inner {
    padding: 0px;
  }

  .back-to-top {
    font-size: 12px;
    margin-right: 20px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* Анімація */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-card.visible {
  transform: translateY(0);
}


/* ========================================================= */
/* === FIX: HOVER ТІЛЬКИ ДЛЯ ПРИСТРОЇВ З МИШКОЮ (DESKTOP) === */
/* ========================================================= */
@media (hover: hover) and (pointer: fine) {

  .hamburger:hover span {
      background: #D8CDB8; /* змінюємо колір ліній при ховері */
    }

    .mobile-link:hover {
      opacity: 0.5;
    }

    .mobile-socials img:hover {
      opacity: 0.6;
    }

    .showreel-btn:hover video {
      opacity: 0.5; /* прозорість відео на hover */
    }

    .showreel-btn:hover::before {
      opacity: 1;
      animation: pulseGlow 1s ease infinite;
    }

    /* Анімація при наведені на кнопку */
    .showreel-btn:hover svg {
      color: #A2EE40; /* зелений колір при ховері */
      transform: scale(0.9); /* трохи збільшуємо іконку */
    }

    .showreel-btn:hover span {
      color: #A2EE40; /* зелений колір при ховері */
    }

    .menu-link:hover {
      opacity: 0.5;
    }

    .hero-watch-showreel:hover {
      background: #fff;
    }

    .hero-watch-showreel:hover span {
      transform: scale(0.95);
    }

    .socials img:hover {
      opacity: 0.5;
    }

    .yt-play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 0.9;
    }

    .connect-link.main-link:hover {
      opacity: 0.5;
    }

    .connect-link:hover {
      color: #0F0F0F;
    }

    .back-to-top:hover {
      opacity: 0.5;
    }

    .plain-link:hover {
      color: #ffffff;          /* колір при наведенні */
    }
}

/* ========================================================= */
/* === 1. МИТТЄВА РЕАКЦІЯ НА ДОТИК (ВКЛ) === */
/* ========================================================= */

/* Всі :active елементи мають вмикатися миттєво, щоб виглядати швидкими на дотик. */
/* Стилі самого :active (колір, трансформація) мають бути прописані окремо! */

.mobile-link:active,
.mobile-socials img:active,
.socials img:active,
.showreel-btn:active video,
.showreel-btn:active::before,
.showreel-btn:active svg,
.showreel-btn:active span,
.menu-link:active,
.hero-watch-showreel:active,
.hero-watch-showreel:active span,
.yt-play-btn:active,
.connect-link:active,
.back-to-top:active,
.plain-link:active {
  transition: all 0s !important;
}

/* ========================================================= */
/* === 2. ПОВІЛЬНЕ ЗГАСАННЯ (ТІЛЬКИ МОБІЛЬНІ / TABLET) === */
/* ========================================================= */
@media (pointer: coarse) {

  /* Меню (Info, Contact) */
  .menu-link {
    transition: opacity 0.6s ease-out;
  }

  /* Гамбургер */
  .hamburger span {
    transition: all 0.3s ease-out;
  }

  /* Мобільне меню */
  .mobile-link {
    transition: all 0.6s ease-out;
  }

  /* Кнопка Showreel (відео, іконка, текст) */
  .showreel-btn video,
  .showreel-btn::before,
  .showreel-btn svg,
  .showreel-btn span {
    transition: all 0.8s ease-out;
  }

  /* Зелена кнопка Hero */
  .hero-watch-showreel,
  .hero-watch-showreel span {
    transition: all 0.6s ease-out;
  }

  /* Соцмережі */
  .socials img,
  .mobile-socials img {
    transition: all 0.6s ease-out;
  }

  /* YouTube Play Button */
  .yt-play-btn {
    transition: all 0.6s ease-out;
  }

  /* Footer Links */
  .connect-link,
  .connect-link.main-link,
  .plain-link,
  .back-to-top {
    transition: all 0.6s ease-out;
  }
}
