/* 
=========================
   RESET STYLES
=========================
*/

:root {
  --orange: #e76f51;
  --lightpink: #faf4f2;
  --darkpink: #f8e1db;
  --dark: #3b3735;
  --robotolight: "Roboto Light", sans-serif;
  --roboto: "Roboto", sans-serif;
  --Roboto-medium: "Roboto Medium", sans-serif;
  --archivo: "Archivo Black", sans-serif;
}

html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 1.6rem;
  font-family: var(--roboto);
  line-height: 1.6;
  background-color: var(--lightpink);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
}

input {
  border: none;
  outline: none;
}

/* 
=========================
   Component
=========================
*/

.btn {
  color: #fff;
  background-color: gray;
  padding: 1.2rem 5.5rem;
  border-radius: 10rem;
  font-family: var(--Roboto-medium);
}

/* 
=========================
   Header
=========================
*/

.header {
  background: linear-gradient(rgba(59, 55, 53, 0.3)),
    linear-gradient(rgba(59, 55, 53, 0.3)), url("../images/header-bg.jpg");
  min-height: 85vh;
  background-position: center;
  background-size: cover;
  border-bottom-left-radius: 12rem;
  border-bottom-right-radius: 12rem;
}

/* 
=========================
   Nav Section
=========================
*/

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

/* 
=========================
        Nav Logo
=========================
*/

.nav__logo-img {
  margin-right: 4rem;
  display: flex;
}

/* 
=========================
   Main Navigation Menu
=========================
*/

.nav__menu {
  display: none;
}

.nav__menu-item {
  margin-right: 2rem;
}

.nav__menu-link {
  color: #d2d2d2;
  position: relative;
  transition: all 0.3s;
}

.nav__menu-link--active {
  color: #fff;
}

.nav__menu-link:hover::before {
  content: " ";
  width: 100%;
  position: absolute;
  bottom: -4px;
  height: 0.2rem;
  border-radius: 10rem;
  background-color: var(--orange);
}

.nav__menu-link--active::before {
  content: " ";
  width: 100%;
  position: absolute;
  bottom: -4px;
  height: 0.2rem;
  border-radius: 10rem;
  background-color: var(--orange);
}

.nav__menu-link:hover {
  color: #fff;
}

/* 
=========================
   Action Buttons
=========================
*/

.nav__actions {
  display: none;
}

.nav__action {
  color: #fff;
  padding: 1rem 3rem;
  margin-left: 1rem;
  transition: all 0.3s;
  font-family: var(--Roboto-medium);
}

.nav__action--border {
  border: solid 1px #fff;
  border-radius: 10rem;
}

.nav__action--border:hover {
  background-color: #fff;
  color: #000;
}

/* 
==============================
   Mobile Hamburger Button
==============================
*/

.mobile-menu__toggle {
  width: 5rem;
  height: 5rem;
  border-radius: 2rem;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu__toggle-line {
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  background-color: var(--orange);
  position: relative;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}

.mobile-menu__toggle-line::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: var(--orange);
  position: absolute;
  top: 0.8rem;
  transition: all 0.3s ease;
}

.mobile-menu__toggle-line::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: var(--orange);
  position: absolute;
  top: -0.8rem;
  transition: all 0.3s ease;
}

.mobile-menu__toggle.is-open .mobile-menu__toggle-line {
  background-color: transparent;
}

.mobile-menu__toggle.is-open .mobile-menu__toggle-line::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu__toggle.is-open .mobile-menu__toggle-line::after {
  transform: rotate(-45deg);
  top: 0;
}

/* 
=============================
   Mobile Navigation Menu
=============================
*/

.mobile-menu {
  width: 25rem;
  position: fixed;
  background-color: rgb(41, 39, 39);
  top: 0;
  left: -25rem;
  bottom: 0;
  padding: 2rem;
  transition: 0.3s;
  z-index: 100;
}

.mobile-menu__title {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  font-family: var(--archivo);
  border-bottom: solid 1px #fff;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.mobile-menu__list {
  margin-bottom: 3.5rem;
}

.mobile-menu__item {
  margin-bottom: 1.8rem;
}

.mobile-menu__link {
  color: #d2d2d2;
  position: relative;
  transition: 0.3s;
}

.mobile-menu__link::before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  width: 0;
  height: 0.3rem;
  background-color: var(--orange);
  transition: 0.3s;
  border-radius: 5rem;
}

.mobile-menu__link:hover {
  padding-left: 2rem;
  color: #fff;
}

.mobile-menu__link:hover::before {
  width: 1.5rem;
}

.mobile-menu__link--active {
  padding-left: 2rem;
  color: #fff;
}

.mobile-menu__link--active::before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  width: 1.5rem;
  height: 0.3rem;
  background-color: var(--orange);
  transition: 0.3s;
  border-radius: 5rem;
}
/* 
=========================
   Mobile Action Button
=========================
*/

.mobile-menu__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.mobile-menu__action {
  color: #fff;
  background-color: var(--orange);
  padding: 1rem 2.4rem;
}

/* 
=========================
   Mobile Menu Social
=========================
*/

.mobile-social {
  margin-top: 13.5rem;
  display: flex;
  justify-content: space-evenly;
}

.mobile-social__link {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #393939;
  position: relative;
  transition: 0.3s;
}

.mobile-social__link:hover {
  background-color: var(--orange);
}

.mobile-social__img {
  width: 60%;
  position: absolute;
  top: 9px;
  left: 10px;
}

/* 
=========================
   Header (Content)
=========================
*/

.header-content {
  color: #fff;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
}
.header-content__title {
  max-width: 31rem;
  font-family: var(--archivo);
  font-size: 3.6rem;
  line-height: 1.3;
  margin: 0 auto 2.2rem auto;
}
.header-content__caption {
  max-width: 30rem;
  margin: 0 auto 3rem auto;
}
.header-content__link {
  background-color: var(--orange);
}

/* 
=========================
  Main (offers)
=========================
*/

/* .main {
} */

.services {
  display: flex;
  flex-wrap: wrap;
  margin: -8rem -1rem 0 -1rem;
}

.service {
  width: 32rem;
  height: 26rem;
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  padding: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 2rem;
}

.service__title {
  font-family: var(--archivo);
  margin: 2rem 0 0.6rem;
}

.service__caption {
  max-width: 29rem;
}

/* 
=========================
  Main (Destination)
=========================
*/

.destinations {
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.destinations::before,
.destinations::after {
  content: "";
  position: absolute;
  width: 65rem;
  height: 65rem;
  background-size: contain;
  z-index: -1;
}

.destinations::before {
  background-image: url("../images/svgs/shape1.svg");
  right: -19rem;
  top: -5rem;
}

.destinations::after {
  background-image: url("../images/svgs/shape2.svg");
  left: -19rem;
  bottom: 40rem;
}

.destinations__logo {
  margin-bottom: 3rem;
}
.destinations__title {
  max-width: 28rem;
  margin: 0 auto;
  font-size: 2.5rem;
  font-family: var(--archivo);
  margin-bottom: 3rem;
  color: var(--dark);
}

.destinations__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 3rem 0;
}

/* 
=========================
  Main (Place)
=========================
*/

.place {
  width: 32rem;
  background-color: #fff;
  padding: 3rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  flex-grow: 1;
  transition: 0.3s;
}

.place:hover {
  transform: scale(1.04);
}

.place__banner {
  margin: 0 auto;
  position: relative;
}
.place__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.place__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: #fff;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.place__like {
  stroke-width: 1.5px;
  fill: #fff;
  stroke: #e76f51;
  height: 3.5rem;
  transition: 0.3s;
  cursor: pointer;
}

.place__like:hover {
  fill: #e76f51;
}

.place__like--active {
  fill: #e76f51;
}
.place__offer {
  width: 13rem;
  color: var(--orange);
  font-family: var(--Roboto-medium);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  padding: 1rem 3rem;
  border-radius: 1rem;
  margin: 0 auto;
}

/* .place__offer-text {
} */

.place__title {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-family: var(--archivo);
}
.place__caption {
  max-width: 27rem;
  margin: 0 auto 3rem auto;
}
.place__link {
  margin-top: 2rem;
  color: #8d8d8d;
  background-color: #e6e5e5;
  transition: all 0.3s;
}

.place__link:hover {
  background-color: var(--orange);
  color: var(--lightpink);
}

.destination__action {
  background-color: transparent;
  border: solid 1px var(--orange);
  color: var(--orange);
  transition: all 0.3s;
}

.destination__action:hover {
  background-color: var(--orange);
  color: var(--lightpink);
}

/* 
=========================
  Main (Newsletter)
=========================
*/

.newsletter {
  background-color: var(--darkpink);
  border-radius: 2rem;
  margin: 5rem 0;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.newsletter::before {
  content: "";
  position: absolute;
  background: url("../images/svgs/shape3.svg");
  background-repeat: no-repeat;
  width: 50rem;
  height: 50rem;
  background-size: contain;
  left: -16.5rem;
  bottom: -6rem;
  z-index: -1;
}

/* 
=========================
  Newsletter Banner
=========================
*/

/* .newsletter-banner {
} */

.newsletter-banner__img {
  width: 100%;
}

/* 
=========================
  Newsletter Content
=========================
*/

.newsletter-content {
  text-align: center;
}

.newsletter-content__title {
  color: var(--dark);
  font-family: var(--archivo);
  font-size: 3.5rem;
  margin: 0 auto;
  line-height: 1.4;
  margin-top: 3rem;
}

.newsletter-content__caption {
  margin: 0.5rem auto 2.5rem auto;
  font-family: var(--Roboto-medium);
}

.newsletter-form {
  position: relative;
}

.newsletter-form__email {
  width: 100%;
  height: 7rem;
  border-radius: 2rem;
  padding: 0 7.3rem 0 6rem;
  font-size: 1.4rem;
}

.newsletter-form__img1 {
  position: absolute;
  top: 25px;
  left: 24px;
}

.newsletter-form__submit {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 10px;
  right: 17px;
  background-color: var(--orange);
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px var(--lightpink);
}

/* .newsletter-form__img2 {

} */

/* 
=========================
        Footer
=========================
*/

.footer {
  background-color: var(--darkpink);
  border-top-left-radius: 12rem;
  border-top-right-radius: 12rem;
  color: var(--dark);
  text-align: center;
  padding-bottom: 4rem;
}

.footer > .container {
  padding-top: 10rem;
}

/* .footer-wrapper{

} */

/* 
=========================
    Footer Scroll
=========================
*/

.footer-scroll {
  width: 5rem;
  height: 5rem;
  border-radius: 2rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 0 10px #3b373533;
  transition: 0.3s;
}

.footer-scroll:hover {
  transform: scale(1.05);
}

/* 
=========================
    Footer Description
=========================
*/

/* .footer-description{

} */

.footer-description__title {
  font-family: var(--archivo);
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.footer-description__caption {
  margin-bottom: 3rem;
}

/* 
=========================
    Footer Pages
=========================
*/

.footer-pages {
  margin-bottom: 3rem;
}

.footer-page {
  margin-bottom: 1.5rem;
}

.footer-page__title {
  font-family: var(--archivo);
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

/* .footer-list{
} */

/* .footer-list__item{

} */

.footer-list__link {
  color: var(--dark);
}

.footer-list__link:hover {
  text-decoration: underline;
}

/* 
=========================
    Footer App
=========================
*/

.footer-app {
  margin-bottom: 3rem;
}

.footer-app__title {
  font-family: var(--archivo);
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

/* .footer-app__link{

} */

/* .footer-app__img{

} */

/* 
=========================
    Footer Copyright
=========================
*/

/* .footer-copyright{

} */
