/* ==================== Override the default style ==================== */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    text-align: center;
    z-index: 10;
    font-family:'Montserrat', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
} 

/* ==================== VARIABLES ==================== */

:root {
    /*blue color*/
    --color-bold-blue: rgb(132,196,195);
    /*pink colors*/
    --color-light-pink: rgb(245, 220, 214);
    --color-medium-pink: rgb(228,201,198);
    --color-bold-pink: rgb(228,180,172);
    /*text colors*/
    --color-white: rgb(248, 255, 255);
    --color-gray: rgb(99, 99, 99);
    --color-light-gray: rgb(116, 116, 116);
    /*transitions*/
    --transition: all 300ms linear;
    /*font-family*/
    --font-trebuchet: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    --font-great-wishes: 'great-wishes', var(--font-trebuchet);
    --font-montserrat: 'Montserrat', var(--font-trebuchet);
    /*margin*/
    --margin-between-p-and-h3: 1.3rem;
    /*box-shadows*/
    --box-shadow-bold: rgba(107, 107, 107, 0.521) 0px 3px 6px;
    --box-shadow-light: rgb(253, 246, 244) 0px 1px 6px 1px;
    --box-shadow-inset: rgba(107, 107, 107, 0.521) 2px 3px 6px 0px inset;
    /*border-radius*/
    --border-radius-light: 15px;
    --border-radius-medium: 25px;
    --border-radius-high: 50%;
    /*border*/
    --border-light-pink: 1px solid rgb(255, 239, 239);
    /*font-weight*/
    --font-weight-bold: 600;
    
}

/* FONT FAMILIES */
/* Handwrited font family of the logo */
@font-face {
    font-family: 'great-wishes';
    src: url('./fonts/Great-Wishes.otf') format('truetype');
}
/* Font family of the main text*/
@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
}

/* SCROLLBAR */
/*Chrome*/
body::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
    background: var(--color-light-pink) /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
    background-color: var(--color-medium-pink); /* color of the scroll thumb */
    border-radius: 5px; /* roundness of the scroll thumb */
}
/*Firefox*/
* {
    scrollbar-width: 12px;
    scrollbar-color:  var(--color-medium-pink) var(--color-light-pink);
}

/* GLOBAL*/
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--color-light-pink);
    z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--color-white);
    font-family: var(--font-trebuchet)
}
section h2 {
    font-size: 4rem;
    margin-bottom: 3rem; 
}
section h2 i {
    font-size: 4rem;    
}
h3 {
    font-family: var(--font-great-wishes);
    font-size: 1.5rem;
}
.bold {
    font-weight: var(--font-weight-bold);
}


/* Arrow to go to the head of the page*/
.uil-arrow-up {
    position: fixed;
    z-index: 35;
    font-size: 35px;
    color: var(--color-white);
    bottom: 1vh;
    right: 1vw;
    background-color: var(--color-bold-blue);
    border-radius: 50%;
    box-shadow: var(--box-shadow-bold);
    transition: var(--transition);
}

/* Buttons and cards style */
button, 
.care__card a,
.footer__social .uil-facebook-f,
.footer__social .uil-instagram,
.contact__socials a {
    border-radius: var(--border-radius-light);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    box-shadow: var(--box-shadow-bold);
    transition: var(--transition);
    color: var(--color-white);
    font-family: var(--font-Montserrat);
    background-color: var(--color-bold-blue);
}
button:hover,
.care__card a:hover,
.footer__social .uil-facebook-f:hover,
.footer__social .uil-instagram:hover,
.uil-arrow-up:hover,
.contact__socials a:hover {
    background-color: var(--color-medium-pink);
}
button:active,
.care__card a:active,
.footer__social .uil-facebook-f:active,
.footer__social .uil-instagram:active,
.uil-arrow-up:active,
.contact__socials a:active {
    box-shadow: var(--box-shadow-inset);
    background-color: var(--color-medium-pink);
}  

/* little circles with icons in the concept and about clem sections*/
.concept__benefit span i,
.about__values .value span i {
    font-size: 3rem;
    color: var(--color-white);
    background-color: var(--color-bold-pink);
    border-radius: 50%;
    padding: 0.2rem;
    box-shadow: var(--color-white) 0px 1px 6px 0px;
}
.concept__benefit span i:hover,
.about__values .value span i:hover {
    box-shadow: var(--color-white) 0px 1px 2px 2px;
}
.concept__benefit p,
.value p {
    padding-top: 0.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-light-gray);
}


/* ==================== NAVBAR ==================== */
.nav__container {
    background-color: var(--color-light-pink);
    position: fixed;
    top: 0;
    width: 100vw;
    height: 6rem;
    z-index: 20;
}
.nav__items {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
}
.nav__items .nav__logo {
    width: 110px;
    margin-top: -0.4rem;
}
.nav__items .nav__menu {
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 2rem;
}
.nav__menu  li  a {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-trebuchet)
}
.nav__menu  li  a:hover,
.menu-small-screens a:hover {
    text-shadow: 2px 3px 5px rgba(145, 145, 145, 0.5);
}
.nav__menu  li  a.active,
.menu-small-screens a.active {
    color: var(--color-bold-blue); 
}
.nav__items .reserve-button {
    width: 11rem;
    height: 2.1rem;
    font-size: 1rem;
    align-self: center;
    margin-right: 1.5rem;
    margin-left: 2rem;
    
}
/* hide the menu made for small screens*/
.nav__small-screens {
    display: none;
}


/* ==================== HEADER ==================== */
.header__bg-image {
    position: absolute;
    object-fit: cover;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
    /*by decreasing opacity we apply the light pink color background like a filter for the image */
    opacity: 0.3;
}
.header__container {
    height: calc(100vh + 6rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto;
    gap: 1rem;
    max-width: 1100px;
}
.logo__container .header__logo {
    width: 500px;
    height: 500px;
} 
.header__container .right__container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: var(--color-white);
    margin-right: 2rem;
    gap: 3rem;
}
.title__container h1 {
    font-size: 5.5rem;
    color: var(--color-white);
    line-height: 1;
}
.title__container p {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-great-wishes);
    line-height: 1.4;
}
.hours__container p {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-montserrat);
}
.hours__container #clock-icon {
    font-size: 3.5rem;
}
.header__container .right__container .reserve-button {
    width: 14.2rem;
    height: 2.2rem;
    font-size: 1.3rem;
}


/* ==================== CONCEPT ==================== */
section:nth-child(1) {
    position: relative;
    top: -3rem;
}
.concept__container {
    font-size: 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.left__container {
    margin-top: -2rem;
}
.concept__container h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
    margin-top: 1.3rem;
    font-family: var(--font-great-wishes);
}
.concept__container .left__container {
    margin-left: 2rem;
}
.concept__container .left__container p:nth-child(2) {
    max-width: 38rem;
    margin: 0 auto;
}
.concept__container p {
    color: var(--color-gray);
}
.concept__container .left__container h4 {
    color: var(--color-bold-pink);
    margin-bottom: 0.5rem;
    font-size: 1.7rem;
}
.concept__targets {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
}
.concept__target {
    max-width: 12rem;
    min-width: 9rem;
}
.concept__target h4 {
    margin-left: -2.2rem;
}
.concept__benefits {
    display: flex;
    max-width: 38rem;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
}
.concept__benefit {
    max-width: 8rem;
}
.concept__benefit p {
    padding-top: 0.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-light-gray);
}

.concept__container .right__container img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}
.concept__container .swiper {
    width: 400px;
    height: 600px;
    border-radius: var(--border-radius-medium);
    margin-right: 3.5rem;
    box-shadow: rgba(107, 107, 107, 0.521) 0px 3px 6px;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: var(--color-bold-blue);
    font-weight: var(--font-weight-bold);
    transition: var(--transition);
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
    color: var(--color-bold-pink);
}
.photo-button {
    position: relative;
    z-index: 12;
    top: -3.5rem;
    font-size: 1.1rem;
    width: 12.5rem;
    height: 2rem;
}

/* ==================== CARE ==================== */
.care__background {
    position: absolute;
    object-fit: cover;
    left: 0;
    width: 100%;
    height: 1320px;
    z-index: 3;
    /*by decreasing opacity we apply the light pink color background like a filter for the image */
    opacity: 0.2;
}
.care__container {
    display: grid;
}
.care__container h2 {
    margin-top: 2rem;
}
.care__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    column-gap: 8rem;
    row-gap: 5rem;
}
.care__card {
    width: 21rem;
    height: 32rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--border-radius-medium);
    background-color: var(--color-light-pink);
    box-shadow: var(--box-shadow-bold);
}
.care__card:hover {
    border: 1px solid var(--color-light-pink);
    box-shadow: var(--color-light-pink) 0px 3px 3px 0px;
}
.card__image {
    height: 50%;
    overflow: hidden;
}
.card__image > img {
    object-fit: contain;
    width: 21rem;
}
.care__card a {
    height: 1.5rem;
    width: 9.50rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}
.care__card h3 {
    font-family: var(--font-great-wishes);
    font-size: 1.5rem;
}
.care__card p:nth-child(4) {
    color: var(--color-gray);
}
.care__card p:nth-child(3) {
    margin-top: -0.5rem;
}
.care__card p:nth-child(3),
.care__card p:nth-child(5) {
    color: var(--color-bold-pink);
    font-weight: var(--font-weight-bold);
}

/* ==================== ABOUT CLEM ==================== */
section:nth-child(3) h2 {
    margin-top: 6rem;
    margin-bottom: 4rem;
}
.about__container {
    display: grid;
    max-width: 1400px;
    grid-template-columns: 60% 40%;
    align-items: center;

    color: var(--color-gray);
    margin: 0 auto;
}
.about__container .left__container .about__presentation p:nth-child(2) {
    max-width: 36rem;
    margin: 0 auto;
}
.about__container h3 {
    margin-bottom: var(--margin-between-p-and-h3);
    margin-top: var(--margin-between-p-and-h3); 
}
.about__container h4 {
    color: var(--color-light-gray);
    font-size: 1.2rem;
}
.about__diplomas .diplomas {
    max-width: 36rem;  
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.diplomas .diploma {
    display: flex;
    align-items: center;
}
.diploma span i {
    color: var(--color-bold-pink);
    font-size: 2.4rem;
}
.diploma p {
    justify-self: left;
    text-align: left;
}
.about__container .left__container .about__values .values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 37.5rem;
    margin: 0 auto;
    gap: 1.5rem;
}
.about__values {
    margin-bottom: 4rem;
}
.about__container .right__container {
    margin-right: 1rem;
}
.about__container .right__container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-medium);
}
.about__container .swiper {
    max-width: 500px;
    height: 400px;
    box-shadow: var(--box-shadow-bold);
    border-radius: var(--border-radius-medium);
    margin-right: 0 auto  
}
.about__container .right__container button {
    position: relative;
    top: -55px;
    font-size: 1.2rem;
    width: 12.5rem;
    height: 1.7rem;
}

/* ==================== FAQ ==================== */
section:nth-child(4) h2 {
    margin-top: 3rem;
}
.faq__background {
    position: absolute;
    object-fit: cover;
    left: 0;
    width: 100%;
    z-index: 3;
    /*by decreasing opacity we apply the light pink color background like a filter for the image */
    opacity: 0.2;
    height: 1150px;
}
.faq__container {
    display: grid;
}
.faq__container .faqs {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin: 0 auto;
}
.faq {
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: fit-content;
    background: var(--color-bold-pink);
    box-shadow: var(--box-shadow-bold);
    border-radius: var(--border-radius-medium);
    
}
.faq:hover {
    box-shadow: var(--color-white) 0px 1px 6px 0px;
    cursor: pointer;
}
.faq h4 {
    font-family: 'Montserrat';
    line-height: 1.5;
    font-size: 1rem;
    text-align: left;
}
.faq__icon {
    align-self: flex-start;
}
.faq i {
    color: var(--color-white);
    font-size: 2rem;
}
.faq p {
    margin-top: 0.8rem;
    display: none;
    color: var(--color-gray);;
    text-align: left;
}
.faq__container .more__faq {
    margin-top: 4rem; 
}
.more__faq button {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    width: 12rem;
    height: 2.2rem
}
/*target all the elements with a <p> class under elements with classes .faq AND .open*/
.faq.open p {
    display: block;
}
/* ==================== FOOTER ==================== */
footer {
    position: relative;
    top: 4.5rem;
    background-color: var(--color-light-pink);
}
.footer__container {
    display: flex;
    align-items: center;
    height: 520px;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
}
.footer__container h4 {
    font-size: 1.1rem;
    font-family: var(--font-trebuchet);
    margin-bottom: 0.3rem;
    color: var(--color-bold-pink);
}
.footer__container p {
    font-size: 0.85rem;
}
.footer__container button {
    width: 9.5rem;
    height: 1.4rem;
    margin-top: 0.4rem;
}
.footer__container .gift__button {
    height: 2.2rem;
    margin-top: 0.8rem;
}
.footer__columns {
    display: flex;
    gap: 6rem;
    align-items: center;
    color: var(--color-gray);
}
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer__logo {
    width: 370px;
}
.footer__column:nth-child(2) {
    text-align: center;
    max-width: 230px;
    margin-left: -1.6rem;
}
.footer__column:nth-child(2) div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}
.footer__column:nth-child(3) {
    max-width: 230px;
    gap: 3rem;
}
.footer__hours p {
    text-align: left;
}
.footer__address address p {
    text-align: left;
    font-style: normal;
}
.footer__contact address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__contact a {
    color: var(--color-gray);
    font-style: normal;
    font-size: 0.85rem;
}
.footer__social h4 {
    margin-bottom: 0.8rem;
}
.footer__social .uil-facebook-f {
    margin-left: 1.5rem;
}
.footer__social .uil-facebook-f,
.footer__social .uil-instagram {
    color: var(--color-white);
    font-size: 1.5rem;
    background-color: var(--color-bold-blue);
    border-radius: var(--border-radius-high);
    padding: 0.3rem;
    margin-right: 1rem;
    box-shadow: var(--box-shadow-bold);
}

.footer__legality {
    color: var(--color-bold-pink);
    font-weight: 800;
    padding: 1rem 0;
    font-size: 0.8rem;
    border-top: var(--border-light-pink);
}
.footer__legality a {
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.9rem;
}
.footer__legality p {
    margin-top: 0.3rem;
}


/* ==================== MEDIA QUERIES ==================== */
@media only screen and (max-width: 1100px) and (max-height: 800px) {
    /* HEADER */
    .header__container .right__container {
        gap: 1.5rem;
    }
    .logo__container .header__logo {
        width: 450px;
        height: 450px;
    }
    .title__container h1 {
        font-size: 4.5rem;
    }
    .title__container p {
        font-size: 1.5rem;
    }
    .hours__container #clock-icon {
        font-size: 3rem;
    }
    .hours__container p {
        font-size: 1.3rem;
    }
    .header__container .right__container .reserve-button {
        width: 14.8rem;
        height: 2.5rem;
    } 
}
@media only screen and (max-width: 1000px) and (min-height: 800px) {
    /* HEADER */
    .header__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100vh   
    }
    .logo__container {
        margin-top: 2rem;
    }
    .logo__container .header__logo {
        width: 400px;
        height: 400px;  
    }
    .header__container .right__container {
        margin-right: 0;
    }
    .title__container h1 {
        font-size: 4rem;
    }
    .title__container p {
        font-size: 1.5rem;
    } 
}
@media only screen and (min-width: 380px) and (max-width: 930px) and (max-height: 860px)  {
    /* HEADER */
    .header__container .header__logo {
        width: 330px;
        height: 330px;
    }
    .header__container .right__container .title__container h1 {
        font-size: 3.8rem;
    }
    .header__container .right__container .title__container p {
        font-size: 1.2rem;
    }
    .hours__container #clock-icon {
        font-size: 2.5rem;
    }
    .hours__container p {
        font-size: 1.1rem;
    }
    .header__container .right__container .reserve-button {
        height: 2rem;
        width: 13rem;
        font-size: 1.1rem;
    }  
}
@media only screen and (min-width: 700px) and (max-width: 1200px) and (min-height: 1000px) {
    /* HEADER */
    .header__container .header__logo {
        width: 520px;
        height: 520px;
    }
    .header__container .right__container .title__container h1 {
        font-size: 5.5rem;
    }
    .header__container .right__container .title__container p {
        font-size: 1.8rem;
    }
    .hours__container #clock-icon {
        font-size: 3.5rem;
    }
    .hours__container p {
        font-size: 1.6rem;
    }
    .header__container .right__container .reserve-button {
        height: 3rem;
        width: 17.5rem;
        font-size: 1.6rem;
    }
}
@media only screen and (min-width: 1150px) {
    /*CARE*/
    .care__cards {
        column-gap: 10.5rem;
    }
}
@media only screen and (max-width: 1150px) {
    /*ABOUT CLEM */ 
    .about__container {
        grid-template-columns: 55% 45%;
    }
    .about__container .left__container {
        max-width: 29rem;
        justify-self: center;
    }
    /*FAQ*/
    .faq__container .faqs {
        max-width: 950px;
    }
    /*FOOTER*/
    .footer__columns {
        gap: 3.2rem;
    }
}
@media only screen and (max-width: 1000px) {
    /* CONCEPT */
    section:nth-child(1) {
        position: relative;
        top: 1.5rem;
    }
    .concept__container {
        grid-template-columns: 5fr 2fr;
    }
    .concept__targets {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        justify-content: center;
    }
    .concept__target {
        max-width: 9rem;
    }
    .concept__container .swiper {
        width: 300px;
        height: 550px;
        margin-right: 2rem;
    }
    /*CARE*/
    section:nth-child(2) {
        position: relative;
        top: 4rem;
    }
    /* ABOUT CLEM */
    section:nth-child(3) {
        position: relative;
        top: 4rem;
    }
    .about__container .swiper {
        margin-right: 1rem;
    }
    /*FAQ*/
    section:nth-child(4) {
        position: relative;
        top: 4rem;
    }
    section:nth-child(4) h2 {
        margin-top: 2rem;
    }
    .faq__container .faqs {
        max-width: 870px;
        gap: 3rem;
    }
    .faq {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    .faq__container .more__faq {
        margin-top: 3rem;
    }
    .more__faq button {
        font-size: 1.2rem;
        width: 12rem;
        height: 2rem;
    }
    /*FOOTER*/ 
    footer {
        top: 8rem;
    }
    .footer__columns {
        gap: 2.8rem;
    }
}
@media only screen and (max-width: 900px) {
    /* CONCEPT */
    .concept__container {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }
    .concept__container .left__container {
        margin: 0 auto;
        margin-top: -2.55rem;
    }
    .concept__target {
        min-width: 0;
    }
    .concept__container .right__container {
        justify-self: center;
    }
    .concept__container .swiper {
        width: 500px;
        height: 450px;
        margin-top: 2rem;
        margin-right: -0.4rem;
    }
    /*CARE*/
    .care__cards {
        column-gap: 5rem;
    }
    .care__card {
        width: 18rem;
    }
    /*ABOUT CLEM*/
    .about__container {
        grid-template-columns: 1fr;
    }
    section:nth-child(3) h2 {
        margin-bottom: 2.5rem;
    }
    .about__container .left__container {
        max-width: 38rem;
    }
    .about__container .right__container {
        max-width: 33rem;
        margin: 0 auto;
    }
    .about__container .swiper {
        margin: 0 auto;
    }
    /*FAQ*/
    section:nth-child(4) {
        position: relative;
        top: 6rem;
    }
    .faq__background {
        height: 1300px;
    }
    .faq__container .faqs {
        max-width: 700px;
        column-gap: 4rem;
    }
    /*FOOTER*/ 
    footer {
        top: 10rem;
    }
    .footer__columns {
        gap: 1.3rem;
    }
    .footer__logo {
        width: 320px;
    }
    .footer__column:nth-child(2) {
        margin-left: -0.4rem;
    }
}
@media only screen and (max-width: 800px) {
    /* NAVBAR */
    .nav__container {
        height: 3.3rem;
    }
    .nav__items {
        grid-template-columns: 4fr 1fr;
        height: 100%;
    }
    .nav__items .nav__menu {
        justify-content: space-evenly;
        gap: 0;
    }
    .nav__items .nav__logo {
        display: none;
    }
    .nav__menu  li  a {
        font-size: 1.1rem;
    }
    .nav__items .reserve-button {
        margin-left: 0.2rem;
        width: 10.6rem;
        height: 1.6rem;
        margin-right: 1.5rem;
    }
    /* HEADER */
    .header__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100vh;
        gap: 0;
    }
    .header__container .right__container {
        margin-right: 0;
    }
    .header__logo {
        width: 360px;
        height: 320px;
    }
    /*CARE*/
    .care__cards {
        column-gap: 3.5rem;
    }
    .care__card {
        width: 17rem;
    }
    /*FAQ*/
    .faq__container .faqs {
        grid-template-columns: 1fr;
    }
    .faq__background {
        height: 1500px;
    }
    .faq {
        max-width: 575px;
    }
    .faq__container .faqs {
        column-gap: 4rem;
    }
    /*FOOTER*/
    footer {
        margin-top: 1.2rem;
        top: 9rem;
        overflow: hidden;
    }
    .footer__container {
        height: 1000px; 
    }
    .footer__columns {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 5rem;
    }
    .footer__column:nth-child(1) {
        order: 3;
        text-align: center;
        margin: 0 auto;
    }
    .footer__logo {
        width: 400px;
    }
    .footer__column:nth-child(2) div {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0 auto;
        justify-content: center;
    }
    .footer__address address p {
        text-align: center;
    }
    .footer__hours p {
        text-align: center;
    }
    .footer__contact address {
        align-items: center;
    }
    .footer__contact button {
        justify-self: center;
    }
    .footer__column:nth-child(3) {
        margin-top: 1rem;
        gap: 2rem;
    }
    .footer__column:nth-child(2) {
        max-width: 250px;
    }

}
@media only screen and (max-width: 660px) {
    /*NAVBAR*/
    .nav__items .reserve-button {
        width: 11.5rem;
    }
    /*HEADER*/
    .header__container .right__container .reserve-button {
        width: 15rem;
    }
    /* CONCEPT */
    .concept__container .left__container p:nth-child(2) {
        max-width: 29rem;
    }
    /*CARE*/
    .care__background {
        height: 2350px;
    }
    .care__cards {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }
    .care__card {
        width: 21rem;
    }
    /* ABOUT CLEM */
    section:nth-child(3) h2 {
        margin-top: 3rem
    }
    .about__container .left__container {
        max-width: 32rem;
    }
    .about__container .right__container {
        max-width: 31rem;
    }
    /*FAQ*/
    .faq {
        max-width: 490px;
    }
    .faq__container .faqs {
        gap: 2rem;
    }
    .more__faq button {
        font-size: 1.2rem;
        width: 11.3rem;
        height: 1.8rem;
    }
}
@media only screen and (max-width: 550px) {
    /* NAVBAR: DISPLAY THE NAV MENU FOR SMALL SCREENS ONLY*/ 
    .nav__container {
        height: 3.5rem;
    }
    .nav__items {
        display: none;
    }
    .nav__small-screens {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav__small-screens .menu-btn {
        background-color: var(--color-bold-pink);
        margin-left: 1rem;
        height: 2rem;
        width: 3.3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }    
    .nav__small-screens .menu-btn:hover {
        background-color: var(--color-medium-pink);
        box-shadow: rgba(107, 107, 107, 0.521) 0px 3px 6px 0px;
    }
    .menu-btn .menu-icon {
        color: var(--color-white);
        font-size: 1.8rem;
        z-index: 30;
    }
    .menu-btn.open-btn {
        display: block;
    }
    .menu-btn.close-btn {
        display: none;
    }
    .nav__small-screens .reserve-button {
        margin-right: 1rem;
        height: 2rem;
        width: 11.8rem;
        font-size: 1rem;
    }
    .nav__menu-small-screens {
        position: absolute;
        top: 3.5rem;
        width: 100vw;
        background-color: var(--color-light-pink);
        display: none;
    }
    .menu-small-screens {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .menu-small-screens a {
        color: rgb(139, 139, 139);
        font-size: 1.4rem;
        font-weight: 800;
        font-family: var(--font-trebuchet);
    }
    /*change navbar background opacity style when scrolling down using JS*/
    .window-scroll {
        background: rgba(245, 220, 214, 0.800);
    }
    /*HEADER*/
    .header__container .right__container .reserve-button {
        width: 14.6rem;
    }
    /* CONCEPT */
    section h2,
    section h2 i {
        font-size: 2.6rem;
    }
    .concept__container .left__container p:nth-child(2) {
        max-width: 21rem
    }
    .concept__container h3 {
        font-size: 1.3rem;
    }
    .left__container .concept__targets {
        flex-direction: column;
        align-items: center;
    }
    .left__container .concept__target {
        max-width: 22rem;
    }
    .left__container .concept__benefits {
        max-width: 22rem;
    }
    .concept__container .swiper {
        width: 320px;
        height: 480px;
        margin-top: 0.5rem;
    }
    /* ABOUT CLEM */
    section:nth-child(3) h2 {
        margin-top: 5rem
    }
    .about__container .left__container {
        max-width: 24rem;
    }
    .about__container .right__container {
        max-width: 28rem;
    }
    .about__container .left__container .about__values .values {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__container .swiper {
        max-width: 480px;
    }
    /*FAQ*/
    section:nth-child(4) h2 {
        margin-bottom: 2rem;
    }
    .faq {
        max-width: 390px;
    }
    .faq__background {
        height: 1700px;
    }
    .more__faq button {
        font-size: 1.2rem;
        width: 12.5rem;
        height: 1.7rem;
        margin-top: 1rem;
    }
    .faq__container .more__faq {
        margin-top: 2rem;
    }
    .more__faq h3 {
        font-size: 1.3rem;
    }
    /*FOOTER*/
    .footer__container {
        margin-top: -1.8rem;
        height: 1050px;
    }
}
@media only screen and (max-width: 485px) {
    /*ABOUT CLEM*/
    .about__container .swiper {
        max-width: 395px;
    }
}
@media only screen and (max-width: 400px) {
    /*HEADER*/
    .header__container .right__container .reserve-button {
        margin-top: 0.8rem;
    }
    /*CARE*/
    .care__card {
        width: 19rem;
    } 
    /* ABOUT CLEM */
    .about__container .left__container {
        max-width: 20rem;
    }
    .about__container .right__container {
        max-width: 21rem;
    }
    .about__container .swiper {
        max-width: 365px;
    }
    /*FAQ*/
    .faq {
        max-width: 355px;
        gap: 1rem;
    }
    .faq__background {
        height: 1800px;
    }
    /* FOOTER */
    .footer__container {
        margin-top: -1.8rem;
        height: 1050px;
    }
}
@media only screen and (max-width: 360px) {
    /*GLOBAL*/
    section h2,
    section h2 i {
        font-size: 2.2rem;
    }
    /*HEADER*/
    .header__container .right__container .reserve-button {
        font-size: 1.2rem;
        width: 13rem;
    }
    /*CONCEPT*/
    .concept__container .swiper {
        width: 260px;
        height: 420px;
        margin-right: 0.29rem;
    }
    /*CARE*/
    .care__card {
        width: 16rem;
    }
    /* ABOUT CLEM */
    .about__container .left__container {
        max-width: 17.5rem;
    }
    .about__container .right__container {
        max-width: 21rem;
    }
    .about__container .swiper {
        max-width: 280px;
    }
    /*FAQ*/
    .faq {
        max-width: 275px;
    }
    .faq__background {
        height: 2150px;
    }
    .faq__container .faqs {
        gap: 1.4rem;
    }
    .faq {
        gap: 0.5rem
    }
    .more__faq button {
        font-size: 1.1rem;
    }
    .more__faq h3 {
        max-width: 250px;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 390px) and (max-height: 800px) {
    /* HEADER */
    .header__container {
        max-width: 300px;
        overflow: hidden;
    }
    .header__container .header__logo {
        width: 295px;
        height: 295px;
        margin-top: 1.5rem;
    }
    .header__container .right__container .title__container h1 {
        font-size: 2rem;
    }
    .header__container .right__container .title__container p {
        font-size: 1.2rem;
    }
    .hours__container #clock-icon {
        font-size: 2.5rem;
    }
    .hours__container p {
        font-size: 1.1rem;
    }
    .header__container .right__container .reserve-button {
        height: 2rem;
        width: 13rem;
        font-size: 1.1rem;
    }
    /*FOOTER*/
    .footer__column:nth-child(3) {
        margin-top: 1rem;
        gap: 1.5rem;
    }
}






