/* Hero video — autoplay MP4 (GSAP yok) */

.arta-scroll-video {
  position: relative;
  height: 100dvh;
  height: 100svh;
  min-height: 100vh;
  background: #0a0a0a;
  margin: 0;
}

.arta-scroll-video__pin {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.arta-scroll-video__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: center;
}

.arta-scroll-video__media video,
.arta-scroll-video__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

.arta-scroll-video__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.35) 100%);
}

/* CSS Eurorepar şerit — videonun üstünde, header’ın hemen altında */
.arta-euro-css {
  --arta-euro-orange: #e95109;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(clamp(64px, 8.5vw, 84px) + 23px);
  z-index: 4;
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 0.95fr;
  width: 100%;
  height: clamp(88px, 11vw, 132px);
  transform: none;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.arta-euro-css__seg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  padding: 0 clamp(0.75rem, 2.2vw, 2rem);
}

.arta-euro-css__seg--white {
  background: #fff;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  justify-content: flex-start;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  z-index: 3;
}

.arta-euro-css__seg--orange {
  background: var(--arta-euro-orange);
  margin-left: -28px;
  padding-left: calc(28px + clamp(0.75rem, 2vw, 1.5rem));
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  z-index: 2;
}

.arta-euro-css__seg--black {
  background: #111;
  margin-left: -28px;
  padding-left: calc(28px + clamp(0.75rem, 2vw, 1.5rem));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.arta-euro-css__logo {
  display: block;
  max-height: clamp(28px, 4.2vw, 48px);
  width: auto;
  max-width: min(220px, 100%);
  object-fit: contain;
}

.arta-euro-css__mid,
.arta-euro-css__name {
  margin: 0;
  font-family: Montserrat, 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
}

.arta-euro-css__mid {
  color: #fff;
  font-size: clamp(0.72rem, 1.45vw, 1.15rem);
}

.arta-euro-css__name {
  color: #fff;
  font-size: clamp(0.85rem, 1.7vw, 1.35rem);
  letter-spacing: 0.06em;
}

.arta-scroll-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 clamp(4rem, 10vh, 5.5rem);
  pointer-events: none;
  text-align: center;
}

.arta-scroll-video__overlay .container {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.arta-scroll-video__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 44rem;
  margin: 0 auto;
}

.arta-scroll-video__brand {
  margin: 0 0 0.35rem;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.arta-scroll-video__tag {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.arta-scroll-video__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.arta-scroll-video__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.arta-scroll-video__cta--primary {
  background: #e95109;
  color: #fff;
  border: 1px solid #e95109;
}

.arta-scroll-video__cta--primary:hover {
  background: #d44708;
  border-color: #d44708;
  color: #fff;
  text-decoration: none;
}

.arta-scroll-video__cta--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.arta-scroll-video__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.arta-scroll-video__hint {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.arta-scroll-video__hint span {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), transparent);
  animation: arta-scroll-hint 1.6s ease-in-out infinite;
}

@keyframes arta-scroll-hint {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 767.98px) {
  .arta-scroll-video {
    min-height: 100svh;
  }

  .arta-euro-css {
    top: 66px; /* masaüstüne göre daha yukarı */
    height: 78px;
    grid-template-columns: 1fr 1.05fr 0.9fr;
  }

  .arta-euro-css__seg--white,
  .arta-euro-css__seg--orange {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  }

  .arta-euro-css__seg--orange,
  .arta-euro-css__seg--black {
    margin-left: -16px;
    padding-left: calc(16px + 0.55rem);
  }

  .arta-euro-css__mid {
    font-size: 0.58rem;
  }

  .arta-euro-css__name {
    font-size: 0.62rem;
  }

  .arta-scroll-video__overlay {
    padding-bottom: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arta-scroll-video {
    height: min(100vh, 720px);
    min-height: 0;
  }

  .arta-scroll-video__hint,
  .arta-scroll-video__hint span {
    animation: none;
    display: none;
  }
}
