/* Imports */
@font-face {
    font-family: 'Neue_Haas_Display';
    src: url('../assets/fonts/Neue_Haas_Display/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IM_Fell_French_Canon';
    src: url('../assets/fonts/IM_Fell_French_Canon/IMFellFrenchCanon-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

html {
    font-size: 16px;
}

/* Body base */
body {
    width: 100%;
    font-family: 'Neue_Haas_Display';
    font-size: 1rem;
    color: #000;
    background-color: #000;
}


/* Selectors */

h1,
h2,
h3,
h4,
h6 {
    font-family: 'Neue_Haas_Display';
    font-weight: 400;
    color: #fff;
}

h5 {
    font-family: 'IM_Fell_French_Canon';
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

h1 {
    font-size: 7rem;
    line-height: 1.3;
}

h2 {
    font-size: 4rem;
    line-height: 1.8;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.5;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #FF5F15;
    text-transform: uppercase;
}

h5 {
    font-size: 10rem;
    line-height: 1.5;
}

h6 {
    font-size: 8rem;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-transform: normal;
}


/* Section Hero */
.section-hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-hero h4 {
    font-size: 1.2rem;
}

/* Section menu */
.section-menu {
    background-color: #000;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 0.5em;
}

.menu__item {
    width: max-content;
    position: relative;
}

.menu__item-image_wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu__item-image_inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.menu__item-image_inner .menu__item-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* TEXTO */
.menu__item-text {
    position: relative;
    font-family: 'Neue_Haas_Display';
    font-weight: 400;
    text-transform: uppercase;
    font-size: 4rem;
    line-height: 1;
    color: #fff;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.menu__item:hover .menu__item-text {
    color: #FF5F15;
}

.menu__item:hover .menu__item-image_wrapper {
    z-index: -2;
}