/*
 * Copyright 2025 Marek Kobida
 * Last Updated: 25.06.2025
 */

.ContactPage,
.IndexPage,
.ProductListPage,
.ShowroomPage {
  -moz-user-select: none;
  -webkit-user-select: none;

  height: 100dvh;
  overflow-y: auto;
  position: relative; /* KVÔLI HLAVIČKE */
  user-select: none;

  .Header {
    --Header-color: var(--body-background-color);
  }

  .Page {
    position: relative;

    video {
      object-fit: cover;
      position: absolute;
    }
  }

  .VerticalSplitPage {
    --border-color: currentColor;

    text-align: center;

    &::before {
      background-image: linear-gradient(
        hsla(0, 0%, 0%, 0.5),
        hsla(0, 0%, 0%, 0.25)
      );
      content: "";
      inset: 0;
      pointer-events: none;
      position: absolute;
      z-index: 1;
    }

    > div {
      position: relative;
      z-index: 2;
    }
  }
}
