body.art-page {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

body.art-page .art-video-section {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

body.art-page #art-video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/* Inside video wrapper */

.inside-video-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.inside-video-wrapper video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .inside-video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.services-arrow-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;      /* centrează orizontal */
    justify-content: center;  /* opțional, dacă vrei și vertical */
    margin: 60px auto;        /* îl aduce în centru */
    text-align: center;       /* centrează textul */
}

.press-link {
  text-decoration: none;
  font-family: var(--fm);
  font-size: .52rem;
  color: var(--dim);
  letter-spacing: .35em;
  text-transform: uppercase;
  padding: 4px 6px;
  transition: transform 160ms ease, color 160ms ease;
  cursor: pointer;
  display: inline-block;
}

.press-line {
  display: block;
  width: 2px;
  height: 110px;
  margin-top: 6px;
  background:  linear-gradient(to bottom, #f91010, transparent 40%);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(112, 56, 3, 0.497), inset 0 0 8px rgba(125, 21, 21, 0.305);
  transform-origin: top;
  animation: sdrop 2.2s ease-in-out infinite;
  opacity: 0.95;
}

/* animația "curgere" */
@keyframes sdrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* Tranziție cinematică tip "curtain" între index.html și art.html */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  pointer-events: none;
}

.page-transition__panel {
  flex: 1;
  background: #0b0303;
  border-left: 1px solid rgba(255, 60, 60, 0.15);
  transform: scaleY(0);
  transform-origin: bottom;
}

.page-transition__panel:first-child {
  border-left: none;
}

/* pe art.html panourile pornesc acoperind tot ecranul, apoi se retrag la load */
body.art-page .page-transition__panel {
  transform: scaleY(1);
}

