/* SETTING DEFAULTS */

@font-face {
    font-family: 'Blackmng';
    src: url('blackmng.woff2') format('woff2'), url('blackmng.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    src: url('montserrat.woff2') format('woff2'), url('montserrat.woff') format('woff');
}


/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Yeseva+One&display=swap'); */

* {
    --primary-color: #C0A51B;
    --secondary-color: #0A694F;
    --dark-color: #1C1C1C;
    --light-color: #FFFFFF;
    --layer-color: #00000054;
    --light-grey: #aaaaaa;
    --beige-color: #f6e3ba;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dark-text {
    color: var(--dark-color) !important;
    margin-top: 10px;
}

.info {
    font-size: .8rem;
    color: var(--light-grey) !important;
    margin-top: auto;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", serif;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Blackmng";
    color: var(--secondary-color);
}

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

body.plazmag * {
    color: var(--dark-color);
}

body.plazmag .treatment-steps .step {
    border-color: var(--dark-color);
}


/* NAVIGATION */

nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: var(--light-color);
    box-shadow: 0 0 5px var(--layer-color);
    color: var(--secondary-color);
    z-index: 10;
}

nav .nav-logo {
    width: auto;
    height: 100%;
    margin-left: 20px;
}

nav .nav-logo img {
    margin: calc((80px - ( 80px * 0.8)) / 2);
    height: 80%;
}

nav .nav-items {
    height: 100%;
    margin-right: 20px;
}

nav i {
    display: none !important;
    color: inherit;
}

nav .nav-list-items {
    display: flex;
    flex-direction: row;
    height: 100%;
    list-style-type: none;
}

nav .nav-list-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
}

nav .nav-list-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    padding: 0 20px;
}

nav .nav-list-item:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}


/* BODY */

body {
    max-width: 1920px;
    margin: auto;
}


/* HERO */

.hero-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--layer-color);
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-color);
    padding: 20px 40px;
    border-radius: 30px 0;
    border: 5px solid var(--primary-color);
    z-index: 3;
    white-space: nowrap;
}


/* SECTION DEFAULT */

section {
    padding: 60px 30px;
}

section .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

section.highlight .grid-2 .text-container>* {
    color: inherit;
}

section .grid-2 .text-container p {
    margin-bottom: 10px;
}

section .grid-2 .text-container p:last-of-type {
    margin-bottom: 30px;
}

section .grid-2 .image-container {
    max-height: 500px;
    max-width: 500px;
    margin: auto;
    aspect-ratio: 1 / 1;
}

section .grid-2 .image-container>* {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section h1 {
    margin-bottom: 20px;
}

.cta {
    color: inherit;
}


/* SECTION SPECIFIC */

section.highlight {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

section.highlight>* {
    color: inherit;
}

section.beige {
    background-color: var(--beige-color);
    color: var(--dark-color);
}

section.beige h1 {
    color: var(--dark-color);
}

section .grid-2 .image-container iframe {
    height: 100%;
    width: 100%;
}


/* TREATMENTS */

.treatments-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.treatments-container .treatment {
    padding: 20px 20px 5px;
    background-color: var(--light-color);
    border-radius: 20px 0;
    border: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.treatments-container .treatment h2 {
    text-align: center;
    margin-bottom: 0;
}

.treatments-container .treatment .treatment-description {
    margin: 20px 0;
    color: var(--dark-color);
}

.treatments-container .treatment ul {
    list-style-type: none;
    margin: 20px 0;
    margin-bottom: 20px;
}

.treatments-container .treatment ul li a {
    text-decoration: none;
    color: var(--secondary-color);
}

.treatments-container .treatment .treatment-info {
    color: var(--light-grey);
    text-align: center;
    margin-top: auto;
}

.info-container {
    margin-top: 40px !important;
}


/* OTHER */

a.text-like {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}

section.highlight .treatment-steps .steps-title,
section.highlight .treatment-steps>h3 {
    color: var(--light-color) !important;
}

section.highlight .treatment-steps .step {
    border-color: var(--light-color) !important;
}

.treatment-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto 0;
    max-width: 80%;
}

.treatment-steps .step {
    border-left: 2px solid var(--secondary-color);
    padding-left: 10px;
}

.treatment-steps .steps-title,
.treatment-steps .beauty-tip h2 {
    margin-bottom: 10px;
}

.treatment-steps .beauty-tip {
    margin-top: 20px;
}


/* bordered */

.bordered {
    padding: 20px 20px 5px;
    background-color: var(--light-color);
    border-radius: 20px 0;
    border: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}


/* RESPONSIVENESS */

@media only screen and (max-width: 1000px) {
    .treatment-steps {
        max-width: unset;
    }
}


/* RESPONSIVENESS */

@media only screen and (max-width: 1000px) and (min-width: 701px) {
    .hero-container {
        height: 500px;
    }
    section .grid-2 {
        grid-template-columns: 1fr;
        max-width: 70%;
        margin: 0 auto;
    }
    section .grid-2 .image-container {
        max-width: 400px;
        max-height: 400px;
    }
    .treatments-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 700px) {
    nav:has(.nav-items.responsive) {
        display: block;
        height: fit-content;
    }
    nav .nav-logo {
        width: auto;
        height: 100%;
        margin-left: 20px;
    }
    nav .nav-logo img {
        margin: calc((80px - 70px) / 2);
        height: 70px;
    }
    nav .nav-items {
        display: none;
        margin: none;
    }
    nav .nav-items.responsive {
        display: block;
    }
    nav .nav-items.responsive .nav-list-items {
        display: block;
        margin-top: 20px;
    }
    nav .nav-items.responsive .nav-list-items .nav-list-item {
        display: block;
        padding: 10px 0;
    }
    nav i {
        position: absolute;
        right: 10px;
        top: 15px;
        font-size: 50px;
        margin-right: 20px;
        display: block !important;
    }
    .hero-container {
        height: 400px;
    }
    .hero-title {
        text-wrap: balance;
        white-space: unset;
        text-align: center;
    }
    section .grid-2 {
        grid-template-columns: 1fr;
        margin: 0 auto;
        padding: 0 20px;
        width: fit-content;
    }
    .treatments-container {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 550px) {
    .hero-container {
        height: 350px;
    }
    .hero-title {
        text-wrap: balance;
        white-space: unset;
        text-align: center;
        font-size: 1.7rem;
        padding: 10px;
    }
}

@media only screen and (max-width: 500px) {
    section {
        padding: 60px 20px;
    }
    section .grid-2 {
        width: 100%;
    }
}