:root {
  --blue-grey: #C5CFDA;
  --green: #39413E;
 --merusault: meursault-variable, 'Maursault', serif; 
 --franklin: franklin-gothic-atf, 'Franklin', serif; 
 font-size: 16px;
  background: #f0f0f0;
  height: 100vh;
}

@font-face {
    font-family: 'Maursault';
    src: url('src/assets/fonts/Meursault VF Ultra Condensed Thin.ttf');
}

@font-face {
    font-family: 'Franklin';
    src: url('src/assets/fonts/FranklinGothic URW Book.ttf');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

ul {
  list-style: none;
}

html {
  font-size: 16px;
}

body {
  /* min-height: 100vh; */
  /* overflow: hidden; */
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

#root {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--blue-grey);
  box-sizing: border-box;
  position: relative;
  /* height: 100vh; */
  /* width: 100%; */
  /* height: 1920px;
  width: 1080px; */
  /* max-width: 1080px;
  max-height: 1920px; */
}

.content {
  /* width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative; */
  background: var(--blue-grey);
  height: 100%;
    display: flex;
    flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.banner {
  width: 100%;
  flex: 1 1 60%;
}

.image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--blue-grey);
  /* background: linear-gradient(0deg, var(--green, #39413E) 0%, var(--green, #39413E) 100%), lightgray 229.15px 260px / 91.895% 89.146% no-repeat; */
  /* background-blend-mode: color, normal; */
  -webkit-mask-image: linear-gradient(
    to bottom,
    var(--blue-grey) 0%,
    var(--blue-grey) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    var(--blue-grey) 0%,
    var(--blue-grey) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.segregation {
  background: var(--green);
  color: #fff;
  /* -webkit-mask-image: linear-gradient(
    to bottom,
    var(--green) 0%,
    var(--green) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    var(--green) 0%,
    var(--green) 60%,
    rgba(0, 0, 0, 0) 100%
  ); */
}

.segregation .nav-arrow {
  filter: invert(100%);
}

@media screen and (orientation: landscape) {
  /* body {
  transform: scale(0.8);
  transform-origin: 0 0;
  } */



}
.attract-text {
  padding: 4.5rem;
  width: 100%;
  flex: 1 1 40%;
  box-sizing: border-box;
  /* height: 40vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--franklin);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.attract-text h1 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 4.8rem */
  text-transform: uppercase;
  font-variant: all-small-caps;
  color: var(--green);
  font-family: meursault-variable, serif;
  margin: 1rem;
  text-align: center;
}

.attract-text h2 {
  font-family: meursault-variable, serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 193%;
  color: var(--green);
  margin: 1rem;
  margin-bottom: 4.5rem;
  text-wrap: pretty;
  text-align: center;
}

.divider {
  width: 38rem;
  height: 1px;
  border: 1px solid var(--green);
}

.attract-desc {
  font-size: 1.5rem;
font-style: normal;
font-weight: 400;
line-height: 120%; 
font-family: var(--franklin);
width: 100%;
padding: 0 4rem;
}

.select-options {
  width: 100%;
  /* display: flex;
  justify-content: center;
  align-items: flex-start; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4.5rem 0;
}

.select-box {
  background: var(--green);
  color: #fff;
  font-family: var(--merusault);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 4rem;
  box-sizing: border-box;
  border-radius: 2rem;
  text-align: center;
  /* width: calc(50% - 2rem); */
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  /* position: absolute;
  bottom: 0px;
  left: 0px; */
  padding: 4rem;
  font-family: var(--merusault);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  z-index: 1;
  box-sizing: border-box;
}

.menu-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
  width: auto;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 4rem;
  font-family: var(--merusault);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  z-index: 3;
  box-sizing: border-box;
}

.enabled,
.disabled {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  line-height: 120%;
}

.disabled {
  opacity: 0.6;
}

.nav-arrow {
  height: 100%;
  width: auto;
}

.back {
  transform: scaleX(-1);
}
.display-text {
  flex: 1 1 40%;
  padding: 4.5rem 10rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-start;
  font-family: var(--franklin);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* margin-bottom: 150px; */
}

.display-text h1 {
  font-family: var(--merusault);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
