
/* Подключение кастомного шрифта */
@font-face {
  font-family: 'GiuGiuSans';
  src: url('../fonts/GiuGiuSans-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Занимаем всю площадь экрана */
html,
body {
  width: 100%;
  height: 100%;
}

/* Фон страницы */
body {
  font-family: 'GiuGiuSans', sans-serif;
  background: #fefefe;
  color: #222;
  position: relative;
}

/* Логотип */
.logo {
  position: absolute;
  top: 20px;
  right: 210px;
  width: 122px;
  transform: rotate(180deg);
}
.logo img {
  width: 100%;
  display: block;
}

/* Контейнер */
.container {
  display: flex;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Левая колонка (видео) */
.left {
  flex: 0 0 60%;
  position: relative;
  overflow: hidden;
}

/* Видео */
.left-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Обёртка для видео и кнопки */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Кнопка переключения звука */
#muteToggleBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgb(0 0 0 / 0%);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

#muteToggleBtn:hover {
  opacity: 0.8;
}
#muteToggleBtn img {
  width: 20px;
  height: 20px;
}

/* Правая колонка (контент) */
.right {
  flex: 0 0 40%;
  padding-left: 80px;
  position: relative;
}

/* Обёртка контента справа */
.right__inner {
  max-width: 450px;
  padding: 170px 0 20px;
  flex-direction: column;
  justify-content: center;
}

/* Заголовок и параграфы */
.right__inner h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.right__inner p {
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: -10px;

}

/* Иконки */
.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 32px 0;
}
.icons a {
  width: 27px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icons svg,
.icons img {
  width: 180% !important;
  height: 50px;
  margin-top:-90px;
}

/* Кнопка */
.btn {
  display: row;
  flex-direction: column;
  padding: 12px 24px;
  margin-top: 20px;
  background: #222;
  color: #fff;
  text-transform: uppercase;
  font-family: 'GiuGiuSans', sans-serif;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left {
    height: auto;
    overflow: visible;
    order: -1;
  }

  .left-video {
    position: static !important;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .right {
    flex: 0 0 40%;
    padding-left: 0;
  }

  .logo {
    display: none;
  }
  .myButton {
  background-color: #000000; /* цвет фона */
  color: white;              /* цвет текста */
  border: none;              /* убрать рамку */
  padding: 20px 20px;        /* отступы */
  font-size: 16px;           /* размер текста */
  border-radius: 8px;        /* скруглённые углы */
  cursor: pointer;           /* курсор в виде руки */
  transition: background 0.3s;
}
.myButton {
  display: block;
  margin: 10px 0; /* сверху и снизу отступ */
}
.myButton:hover {
  background-color: #0e0e0e; /* цвет при наведении */
}

  .right__inner {
    max-width: 450px;
    padding: 17px 16px 60px 16px;
  }
  .right__inner .mail-link,
.right__inner .mail-link:visited { color:#111; text-decoration-color:#111; }
.right__inner .mail-link:hover    { color:#000; text-decoration-color:#000; }
.right__inner .mail-link:active   { color:#000; }
}
/* === Inline icons row override === */
.right .icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}
.right .icons a { 
  display: inline-flex;
}
.right .icons img,
.right .icons svg {
  width: 50px !important;
  height: 50px;
  margin-top: 0 !important;
  object-fit: contain;
}

@media (max-width: 480px) {
  .right .icons img,
  .right .icons svg { width: 36px !important; height: 36px; }
}
/* Цвет только для ссылки sales@giugiu.world */
.right__inner .mail-link,
.right__inner .mail-link:visited {
  color: oklch(85.967% 0.18343 133.656) !important;          /* любой цвет, например #FF5A00 */
  text-decoration-color: oklch(85.967% 0.18343 133.656);      /* цвет подчёркивания в Safari/Chrome */
}

.right__inner .mail-link:hover {
  color: #000 !important;
  text-decoration-color: #000;
}
