@font-face {
    font-family: 'Primary';
    src: url(./assets/fonts/PPMori-Regular.otf);
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root{
    --primary: #161616;
    --secondary: #f7f7f7;
    --alternate: #f0edba;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: max(100vw/ 1920 * 10);
}

body{
    font-family: 'Primary';
    background-color: var(--primary);
    color: var(--secondary);
    /* overflow: hidden; */
}

h1{
    font-size: 64rem;
    text-transform: uppercase;
    line-height: 1;
}
p,
a{
    font-size: 3.2rem;
    text-transform: uppercase;
    color:var(--secondary);
}

/* Lenis CSS Settings */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero_wrapper{
    width: inherit;
    height: inherit;
}
.hero_text{
    position: fixed;
    left: 0;
    top: 0;
    padding: 1rem;
    display: inline-flex;
    width: max-content;
    color: var(--alternate);
}

/* Gallery Section */
.hero_gallery{
    position: relative;
    width: 100%;
    height: 100%;
}
.hero_gallery_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: inherit;

    gap: 50rem;
    padding-top: 50rem;
    padding-bottom: 2rem;
}
.hero_gallery_figure{
    position: relative;
    width: 80rem;
    height: 80rem;
    object-fit: cover;
}
.hero_gallery_image{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_gallery_info{
    text-align: left;
    padding: 0.32rem;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
.hero_gallery_info_action{
    margin-top: 2rem;
    cursor: pointer;
    color: var(--alternate);
    text-shadow: 0px 0px 20px #f0edba;
}

.extra {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 2rem;
    width: 100%;

    display: flex;
    justify-content: space-between;
    z-index: -1;
}

