:root {
    --primary-font: "Roboto";
    --primary-font-md: "Roboto Medium";
    --secondray-font: "Archivo Black";
    --white: #fff;
    --orange: #e76f51;
    --orenge-light: #f8e1db;
    --app-bg: #faf4f2;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto";
    font-size: 1.6rem;
    line-height: 1.6;
    background-color: var(--app-bg);
}

/* header */

.header {
    min-height: 85vh;
    border-bottom-left-radius: 12.8rem;
    border-bottom-right-radius: 12.8rem;
    padding-top: 3.2rem;
    background: linear-gradient(0deg, rgba(59, 55, 53, 0.5), rgba(59, 55, 53, 0.5)), url("../images/header-bg.jpg");
    background-position: center;
    background-size: cover;
}
.header-content {
}
.header-content__top {
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__wrapper {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.app-logo {
}
.app-logo__img {
}

.menu {
    display: none;
    align-items: center;
    gap: 2.4rem;
    color: var(--white);
}
.menu__item {
}
.menu__link {
}

.auth {
    display: none;
}
.auth__link {
    padding: 0.8rem 1.6rem;
    color: var(--white);
}
.auth__link--border {
    border: 0.1rem solid var(--white);
    border-radius: 1.6rem;
}

.nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 1.6rem;
    background-color: var(--white);
    cursor: pointer;
}
.nav__btn-line {
    display: block;
    position: relative;
    width: 2.4rem;
    height: 0.2rem;
    border-radius: 1.6rem;
    background-color: var(--orange);
    transition: all 150ms ease-in-out;
}
.nav__btn-line::before,
.nav__btn-line::after {
    content: "";
    display: block;
    position: absolute;
    width: 2.4rem;
    height: 0.2rem;
    border-radius: 1.6rem;
    background-color: var(--orange);
    transition: all 250ms ease-in-out;
}
.nav__btn-line::before {
    top: -0.8rem;
}
.nav__btn-line::after {
    top: 0.8rem;
}
.nav__btn--open .nav__btn-line {
    background-color: transparent;
}
.nav__btn--open .nav__btn-line::before {
    transform: translateY(0.8rem) rotate(45deg);
}
.nav__btn--open .nav__btn-line::after {
    transform: translateY(-0.8rem) rotate(-45deg);
}

.mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -25rem;
    z-index: 9;
    width: 25rem;
    padding: 1.6rem;
    background-color: rgba(59, 55, 53, 1);
    color: var(--white);
    transition: all 250ms ease-in-out;
}
.mobile--open {
    left: 0;
}
.mobile__title {
    margin-bottom: 2.4rem;
}
.mobile-menu {
}
.mobile-menu__item {
}

.mobile-menu__link {
    position: relative;
    transition: all 250ms ease-in-out 50ms;
}
.mobile-auth {
    display: flex;
    justify-content: space-around;
    margin-top: 1.6rem;
}
.mobile-auth__link {
    display: block;
    border: 0.1rem solid var(--white);
    border-radius: 0.8rem;
    padding: 0.8rem 2.4rem;
}
.mobile-menu__link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.2rem;
    margin: auto;
    border-radius: 6.4rem;
    background-color: var(--orange);
    transition: all 250ms ease-in-out 50ms;
}
.mobile-menu__link:hover {
    padding-left: 1.4rem;
}
.mobile-menu__link:hover.mobile-menu__link::before {
    width: 1.2rem;
}

.header-content__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6.4rem;
    text-align: center;
    color: var(--white);
}
.header-content__title {
    max-width: 24rem;
    margin-bottom: 3.2rem;
    font-family: "Archivo Black";
    line-height: 1.4;
}
.header-content__caption {
    max-width: 26.5rem;
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
}
.header-content__link {
    display: block;
    border-radius: 2.4rem;
    padding: 0.8rem 3.2rem;
    font-size: 1.4rem;
    background-color: var(--orange);
}

/* 

============
    main
============

*/

.main {
}

/* 

================
    services
================
*/

.services {
    margin-top: -8rem;
}
.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
}
.services-content__item {
    flex-grow: 1;
    width: 30rem;
    height: 20rem;
    border-radius: 1.6rem;
    padding: 2.4rem 0.6rem;
    text-align: center;
    background-color: var(--white);
}
.services-content__img {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.6rem;
}
.services-content__title {
    font-family: var(--primary-font-md);
    font-size: 1.6rem;
    margin: 1.6rem 0 0.8rem 0;
}
.services-content__caption {
    padding: 0 3rem;
    font-size: 1.4rem;
}
.services-content__caption--padding {
    padding: 0 2.4rem;
}

/* 

====================
    destinations
====================

*/

.destinations {
    padding: 6.4rem 0;
    text-align: center;
}
.destinations__header {
    margin-bottom: 3.2rem;
}
.destinations__header-img {
    width: 5rem;
    height: 5rem;
    margin-left: auto;
    margin-right: auto;
}
.destinations__header-title {
    margin-top: 2.4rem;
    font-family: var(--secondray-font);
    font-size: 2.4rem;
}
.destinations__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    margin: 0 auto 3.2rem;
}
.place {
    flex-grow: 1;
    width: 30rem;
    height: 38rem;
    border-radius: 1.6rem;
    padding: 1.6rem;
    background-color: var(--white);
}
.place__banner {
    position: relative;
    max-width: 26rem;
    max-height: 16rem;
    margin: 0 auto;
}
.place__img {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
}
.place__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    width: 4rem;
    height: 4rem;
    border-radius: 1.6rem;
    background-color: var(--white);
    cursor: pointer;
}
.place__icon-like {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    fill: none;
    stroke-width: 1.5;
    stroke: var(--orange);
}
.place__price {
    position: absolute;
    bottom: -2.4rem;
    left: 0;
    right: 0;
    width: 12rem;
    margin: 0 auto;
    border-radius: 1.6rem;
    padding: 0.8rem 1.6rem;
    background-color: var(--white);
    color: var(--orange);
}
.place__title {
    margin-top: 3.2rem;
    font-family: var(--secondray-font);
    font-size: 1.6rem;
}
.place__caption {
    padding: 1.6rem 0;
}
.place__link {
    display: block;
    width: 16rem;
    margin: 0 auto;
    border-radius: 1.6rem;
    padding: 0.8rem 0;
    background-color: #e5e7eb;
    color: #6a7282;
}
.destination__link {
    display: inline-block;
    border: 0.1rem solid var(--orange);
    border-radius: 1.6rem;
    padding: 0.8rem 4.8rem;
    background-color: transparent;
    color: var(--orange);
    transition: all 100ms ease-in-out;
}
.destination__link:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* 

==================
    newsletter
==================

*/

.newsletter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6.4rem;
    border-radius: 1.6rem;
    padding: 2.4rem 1.6rem;
    background-color: var(--orenge-light);
}
.newsletter__banner {
    margin: 0 auto;
}
.newsletter__img {
}

.newsletter__form {
    text-align: center;
}
.newsletter__title {
    width: 15rem;
    margin: 2.4rem auto;
    font-family: var(--secondray-font);
    line-height: 1.4;
}
.newsletter__caption {
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
}

.newsletter__wrapper {
    display: flex;
    align-items: center;
    border-radius: 1.6rem;
    padding: 0.8rem;
    background-color: var(--white);
}
.newsletter__email-icon {
    flex-shrink: 0;
}
.newsletter__item {
    width: 100%;
    padding: 0 0.8rem;
    background-color: #fff;
}
.newsletter__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 1.6rem;
    background-color: var(--orange);
    cursor: pointer;
}

/* 

==============
    footer
==============

*/

.footer {
    border-top-left-radius: 8rem;
    border-top-right-radius: 8rem;
    background-color: var(--orenge-light);
}
.footer-content {
    position: relative;
    padding: 8rem 0 2.4rem;
}
.footer-content__icon {
    position: absolute;
    top: -2.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    border-radius: 1.6rem;
    background-color: var(--white);
}

.footer-content__wrapper {
    display: flex;
    flex-direction: column;
}
.footer-content__left {
    max-width: 60rem;
    margin-bottom: 2.4rem;
}
.footer-content__title {
    margin-bottom: 0.8rem;
    font-family: var(--secondray-font);
    font-size: 1.8rem;
}
.footer-content__discription {
}

.footer-content__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
}
.footer-content__list {
    max-width: 16rem;
}
.footer-menu {
}
.footer-menu__item {
}
.footer-menu__link {
}

.footer-content__app {
    margin-top: 2.4rem;
}
.footer-content__app-wrapper {
    display: flex;
    gap: 1.2rem;
}
.footer-content__link {
    display: block;
}
.footer-content__img {
    width: auto;
    height: 3.2rem;
}

.footer__copy-right {
    margin-top: 3.2rem;
    font-size: 1.2rem;
    text-align: center;
}
