@font-face {
    font-family: 'Arial Cond Light';
    src: url('fonts/arial-nova-cond-light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}  

:root {
    --main-font: 'Arial Cond Light', Arial, Helvetica, sans-serif;
    --max-width: 1400px;
    --padding: 50px;
    --font-size: 20px;
    --color-pink: #FF51D3;
    --color-orange: #FFC000;
    --color-lightOrange: #FFF6DC;
    --border-radius: 15px;
    --text-gap: 25px;
    --sect-gap: 150px;
}

*,
*::before,
*::after,
input, textarea {
    position: relative;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    background: none;
    font-family: var(--main-font);
    list-style: inherit;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-size: var(--font-size);
}

header, section {
    margin-bottom: var(--sect-gap);
}

footer {
    z-index: 0 !important;
}

nav {
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px 0;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 5px 15px 0 #77777755;
    z-index: 999;
}
nav .content.flexbox, #menu .content {
    gap: var(--text-gap);
}
nav li:first-child img {
    height: 65px;
    padding-right: 5px;
    border-radius: 0;
}
nav li:first-child span {
    font-size: 1.3em;
    text-transform: uppercase;
    text-align: right;
}
nav li:last-child {
    display: none;
    cursor: pointer;
}

#menu {
    position: fixed;
    top: 0;
    left: 100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 998;
    padding-top: calc(var(--sect-gap)*2);
    padding-bottom: calc(var(--sect-gap)/2);
    transition: all 300ms ease-in-out;
}
#menu.active {
    left: 0;
}

.content {
    width: min(var(--max-width), 100%);
    padding: 0 var(--padding);
    margin: 0 auto;
}
.content.grid {
    gap: calc(var(--text-gap)*2);
}

header {
    height: 600px;
    height: min(100vh, 1000px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header .content {
    height: inherit;
}
header .title {
    position: absolute;
    bottom: 100px;
}

h1 {
    font-size: 2.22em;
    font-weight: 900;
}

h2 {
    width: 100%;
}
.overline {
    position: absolute;
    right: -10px;
    height: calc(100% + 20px);
    top: -10px;
    background-color: var(--color-orange);
    /* border-radius: var(--border-radius); */
    z-index: -1;
}
.flexbox.reverse .overline{
    left: -10px;
    right: unset;
}

h3 {
    font-size: 1em;
    color: #888;
}

p {
    text-align: justify;
}

a:hover {
    color: var(--color-pink);
    transition: all 150ms ease-in-out;
}

.card {
    padding: 50px 50px;
    background-color: var(--color-lightOrange);
    width: min(450px, 100%);
    border-radius: var(--border-radius);
}

img, iframe {
    border-radius: var(--border-radius);
}

img {
    object-fit: cover;
    object-position: center;
}

.content > img {
    width: 700px;
    height: 400px;
}

.text {
    width: min(489px, 100%);
}

.title {
    display: grid;
    gap: 15px;
}

.fullpage {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00) 51%, rgba(0, 0, 0, 0.75) 100%), url(Images/bg_salon.jpeg);
}
.fullpage .content {
    min-height: 600px;
}
.fullpage .card {
    position: absolute;
    bottom: 100px;
    width: 420px;
}
.fullpage.reverse .card {
    right: var(--padding);
}

.background {
    background-color: var(--color-lightOrange);
    padding: calc(var(--sect-gap)/2) 0;
    z-index: -1;
}
.background.disable {
    background-color: transparent;
}

input, textarea {
    width: 100%;
    font-size: 1em;
    padding: 10px 15px;
    box-shadow: inset 0 -2px 0 0 #888;
    transition: all 150ms ease-in-out;
}
input:focus, textarea:focus {
    box-shadow: inset 0 -2px 0 0 var(--color-pink);
}
textarea {
    resize: vertical;
}



/* <===== CLASSES =====> */

.grid, .text {
    display: grid;
    gap: var(--text-gap);
}
.grid.center {
    place-items: center;
    text-align: center;
}

.flexbox {
    display: flex;
    gap: 50px;
}
.flexbox.column {
    flex-direction: column;
}
.flexbox.align {
    align-items: center;
}
.flexbox.between {
    justify-content: space-between;
}
.flexbox.reverse {
    flex-direction: row-reverse;
}
.flexbox.center {
    justify-content: center;
}

.bold, .btn {
    font-weight: bold;
}

.btn {
    padding: 10px 25px;
    box-shadow: inset 0 0 0 2px var(--color-pink);
    border-radius: var(--border-radius);
    color: var(--color-pink);
    transition: all 150ms ease-in-out;
    width: fit-content;
    text-align: center;
}
.btn:hover {
    color: #fff;
    background-color: var(--color-pink);
}

.shadow {
    box-shadow: 10px 10px 0px 0px var(--color-orange);
}

.no-sect-gap {
    margin-bottom: 0;
}


@media  (max-width: 1100px) {
    .content > img {
        width: 600px;
    }
}

@media  (max-width: 1000px) {
    .content.flexbox.between {
        flex-direction: column;
    }
    .content.flexbox.between > * {
        width: 100%;
    }

    .title, h2 {
        width: fit-content;
    }

    .flexbox.reverse .overline{
        right: -10px;
        left: initial;
    }
}

@media  (max-width: 830px) {
    :root {
        --font-size: 18px;
    }

    nav li:first-child img {
        height: 60px;    
    }
}

@media  (max-width: 770px) {
    nav li:nth-child(2), nav li:nth-child(3), nav li:nth-child(4) {
        display: none;
    }

    nav li:last-child {
        display: unset;
    }
}

@media  (max-width: 550px) {
    :root {
        --sect-gap: 100px;
        --padding: 25px;
    }

    .btn, iframe {
        width: 100%;
    }

    .fullpage .card, header .title {
        left: var(--padding);
        width: calc(100% - 2*var(--padding));
    }

    footer .flexbox.center:first-child {
        flex-direction: column;
    }
    footer .flexbox.center:first-child > * {
        width: 100% !important;
    } 
}