@import url("https://use.typekit.net/fzu8edr.css");

:root {
  --font-color: #1b1a1a;
  --font-family: "Termina", sans-serif;
  --base-font-size: 16px;
  --base-mobile-font-size: 10px;
  --white-color: #fcfcfc;
  --lightGrey-color: #8a8784;
  --darkGrey-color: #585653;
}

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

* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  hanging-punctuation: first last;
  font-size: var(--base-font-size);
}
@media (max-width: 900px) {
  html {
    font-size: var(--base-mobile-font-size);
  }
}

input,
textarea,
button,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

body {
  min-height: 100vh;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
  background-color: var(--white-color);
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
  }
}

/**********
LAYOUT WARSTWA STUDIO
**********/
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1110px) {
  .desktop-br {
    display: none;
  }
}

.index {
  vertical-align: super;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lightGrey-color);
}

.container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1126px) {
  .container {
    padding: 0 0;
  }
}
.language-switch {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white-color);
  padding: 1rem;
  z-index: 9999;
}

.language-switch a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.65rem;
}
@media (min-width: 900px) {
  .language-switch a {
    font-size: 1rem;
  }
}

.hamburger {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--white-color);
  border: none;
  z-index: 10000;
  cursor: pointer;
  padding: 1rem;
}

.hamburger span {
  display: block;
  width: 2rem;
  height: 0.2rem;
  margin: 0.4rem 0;
  background-color: #000;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: var(--white-color);
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 9999;
  padding: 1rem;
  padding-top: 5rem;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar .mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 2rem;
}

.mobile-sidebar .mobile-menu-list li {
  margin-bottom: 1rem;
}

.desktop-menu {
  display: none;
}

@media (min-width: 900px) {
  .hamburger,
  .mobile-sidebar {
    display: none;
  }

  .desktop-menu {
    display: block;
    background-color: var(--white-color);
  }

  .desktop-menu .desktop-menu-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
  }

  .desktop-menu .desktop-menu-list li {
    margin: 0;
    padding: 0 1rem;
  }

  .desktop-menu .desktop-menu-list li:first-child {
    padding-left: 0;
  }

  .desktop-menu .desktop-menu-list li:last-child {
    padding-right: 0;
  }
}

/**********
SECTION: HERO
**********/
.hero {
  width: 100%;
  height: auto;
  margin-top: 15rem;
  margin-bottom: 15rem;
}
@media (min-width: 900px) {
  .hero {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }
}

/**********
SECTION: INTRO
**********/
.intro {
  margin-bottom: 8rem;
}
@media (min-width: 900px) {
  .intro {
    margin-bottom: 15rem;
  }
}

/**********
SECTION: ABOUT
**********/
.about {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 900px) {
  .about {
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 15rem;
  }
}

.about-image-wrapper {
  position: relative;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media (min-width: 900px) {
  .about-image-wrapper {
    width: 60%;
    margin: 0;
    margin-left: 12%;
    margin-bottom: 0;
  }
}

.about-image {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .about-image {
    height: 100%;
    object-fit: cover;
  }
}

.about-stamp-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 19%;
  aspect-ratio: 1;
  transform: translate(-50%, 45%);
}

.about-stamp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 50%;
  filter: sepia(100%) hue-rotate(10deg) saturate(300%) brightness(105%);
}

.about-stamp-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  clip-path: inset(0 0 45% 50%);
}

.about-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin-bottom: 8rem;
}
@media (min-width: 900px) {
  .about-text-wrapper {
    width: 50%;
    margin-bottom: 0;
    margin-right: 12%;
  }
}

.about-glyph {
  width: 74px;
}
@media (min-width: 900px) {
  .about-glyph {
    width: 140px;
  }
}

/**********
SECTION: SWIPER
**********/

/**********
SECTION: OFFER
**********/
.offer {
  margin-bottom: 8rem;
}
@media (min-width: 900px) {
  .offer {
    margin-bottom: 15rem;
  }
}

.offer-title {
  margin-bottom: 3.3rem;
}

.offer-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .offer-wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}

.offer-left {
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .offer-left {
    width: 54%;
    margin-bottom: 0;
  }
}

@media (min-width: 900px) {
  .offer-right {
    width: 46%;
  }
}

.offer-left-item,
.offer-right-item {
  margin-bottom: 2rem;
}

/**********
SECTION: ENVIRA GALLERY
**********/
.envira-gallery-wrap {
  margin-bottom: 8rem !important;
}
@media (min-width: 900px) {
  .envira-gallery-wrap {
    margin-bottom: 15rem !important;
  }
}

/**********
SECTION: FOOTER
**********/
.footer {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.footer-left {
  width: 100%;
  margin-bottom: 2rem;
}

.footer-right {
  width: 100%;
  color: var(--white-color);
  margin-bottom: 2rem;
}

.footer-text {
  color: var(--white-color);
}

.footer-social {
  display: flex;
  justify-content: end;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: nowrap;
}

.social-image {
  width: 50px;
  height: 50px;
}
