/* ===================== GLOBAL ===================== */

:root {
  --purpl-color: #380784;
  --gold-color: #E8A30A;
  --color-bg: #FDFBF9;
  --header-h: clamp(3.75rem, 13vw, 6.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
/*   padding: 0; */
}

body {
  font-family: 'Roboto';
  padding-top: var(--header-h);
}

.title {
  font-size: clamp(4em, 9vw, 8em);
  line-height: 1;
  color: var(--gold-color);
  font-family: 'Lobster';
}

.sub__title {
  font-size: clamp(1.5em, 5vw, 2.375em);
  color: var(--purpl-color);
}

.text {
  font-size: clamp(1em, 3vw, 1.625em);
  color: var(--purpl-color);
}

/* ===================== HEADER ===================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  background-color: #380784;
  height: var(--header-h);
  color: var(--gold-color);
}

.main-container {
  max-width: 1700px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-around;
  height: var(--header-h);
  align-items: center;
}

.list__left {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.75rem);
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: clamp(3.75rem, 13vw, 6.25rem);
  max-height: clamp(3.75rem, 13vw, 6.25rem);
}

.list__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__right-wrap {
  display: flex;
  align-items: center;
}

.list__right {
  display: flex;
  gap: clamp(1.25rem, 4vw, 3.75rem);
}

.lang-switcher {
  margin-right: 1rem;
  margin-left: 2rem;
}

.button__lang {
  border: none;
  background-color: var(--purpl-color);
  color: var(--gold-color);
  font-size: clamp(1em, 3vw, 1.2em);
}

/* ===================== MEDIA ===================== */

@media (min-width: 768px) {
  .header__menu {
    display: none;
    padding: 1rem;
  }

  .mobile__menu {
    display: none;
  }
}

@media (max-width: 767px) {

  .list__left,
  .list__right {
    display: none;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .header__menu {
    display: block;
  }

  .mobile__menu {
    position: fixed;
    left: 0;
    top: var(--header-h);
    height: calc(100dvh - var(--header-h));
    width: 100%;
    z-index: 3000;
    background-color: var(--purpl-color);
    color: var(--gold-color);
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
  }

  .mobile__menu.is-open {
    transform: translateX(0);
  }

  .list__item-moble {
    margin-bottom: 1.8rem;
  }
}

.mobile__list {
  text-align: center;
  padding-top: 2.5rem;
  font-size: 1.75em;
}

/* ===================== menu burger ===================== */

.header__menu {
  align-self: center;
  max-height: 30px;
  cursor: pointer;
  margin-left: 16px;
}

.menu__button {
  width: 30px;
  height: 30px;
  position: relative;
}

span {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--gold-color);
  transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out, opacity 0.2s ease-in-out 0.2s, left 0.2s ease-in-out;
  -webkit-transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out, opacity 0.2s ease-in-out 0.2s, left 0.2s ease-in-out;
  -moz-transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out, opacity 0.2s ease-in-out 0.2s, left 0.2s ease-in-out;
  -ms-transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out, opacity 0.2s ease-in-out 0.2s, left 0.2s ease-in-out;
}

.menu__button span:nth-child(1) {
  top: 0;
}

.menu__button span:nth-child(2) {
  top: 12px;
}

.menu__button span:nth-child(3) {
  top: 24px;
}

.colapse-spin .menu__button span {
  transition: top 0.2s ease-in-out, transform 0.4s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
  -webkit-transition: top 0.2s ease-in-out, transform 0.4s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
  -moz-transition: top 0.2s ease-in-out, transform 0.4s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
  -ms-transition: top 0.2s ease-in-out, transform 0.4s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
}

.colapse-spin .menu__button span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.colapse-spin .menu__button span:nth-child(2) {
  top: 18px;
  opacity: 0;
}

.colapse-spin .menu__button span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* end colapse-spin */

/* ===================== MAIN SCREEN ===================== */

.main-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--header-h));
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main-screen__img {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.main-screen__images {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background-color: rgba(0, 0, 0, 0.9);
}

.main-screen__content {
  text-align: center;
}

.main-screen__title {
  font-size: clamp(2.8em, 7vw, 6em);
  color: var(--gold-color);
  font-family: 'Lobster';
  margin: 0;
}

.main-screen__subtitle {
  font-size: clamp(2em, 5vw, 4em);
  color: var(--gold-color);
  font-family: 'Lobster';
  margin: 0;
}

/* ===================== ABOUT ===================== */

.about {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about__img {
  position: absolute;
  inset: 0;
  z-index: -10;
  object-position: center top;
}

.about__images {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  position: relative;
  max-width: 45rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__title {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.about-sub__title {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.about__text {
  text-align: center;
  line-height: 1.2;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.about__button {
  border: none;
  border-radius: 0.625rem;
  background-color: var(--purpl-color);
  color: var(--gold-color);
  padding: clamp(0.625rem, 5vw, 1.25rem) clamp(1.25rem, 5vw, 2.5rem);
  cursor: pointer;
}
