/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Poppins:wght@400;500&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --title-color: hsl(0, 0%, 95%);
  --text-color: hsl(0, 0%, 70%);
  --text-color-light: hsl(0, 0%, 60%);
  --body-color: hsl(0, 0%, 0%);
  --container-color: hsl(0, 0%, 8%);
  --red-price-color: hsl(0, 90%, 48%);
  --green-button-color: hsl(120, 70%, 40%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

body {
  background-color: var(--body-color);
}

button,
input {
  outline: none;
  border: none;
}
 h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo{
  columns: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  font-size: 1.5rem;
}

.nav__toggle,
.nav__close{
  display: flex;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Navigation for mobile devices */
@media (max-width: 1023px) {
  .nav__menu{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: hsla(0, 0%, 0%, .3);
    padding-block: 4rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: top .4s;
    }
  
}

.nav__list{
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__title{
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
}

.nav__link{
  position: relative;
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
}

.nav__link::after{
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0%;
  width: 0%;
  height: 2px;
  background-color: var(--title-color);
  transition: width .4s;
}

.nav__link:hover::after{
  width: 70%;
}
.nav__close{
  top:1.5rem;
  position: absolute;
  right: 1.5rem;
}

/* Show menu */
.show-menu{
  top: 0;
}

/* Add blur to header */
.blur-header::after{
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, .3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active link */
.active-link::after{
  width: 70%;
}

/*=============== HOME ===============*/
.home{
  position: relative;
}

.home__slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  overflow: hidden;
  z-index: -1;
}

.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home__bg.active {
  opacity: 1;
  z-index: 1;
}

.home__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* or a fixed height like 100vh */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.home__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: background 0.3s;
  cursor: pointer;
}

.dot.active {
  background: rgba(255, 255, 255, 0.9);
}



.home__shadow{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background: linear-gradient(180deg,
              hsla(0, 0%, 0%, 0) 58%,
              hsla(0, 0%, 0%, 0) 78%
  );
}

.home__container{
  position: relative;
  padding-top: 3rem;
  row-gap: 3rem;
  justify-content: start;
}

.home__data{
  text-align: left;
    max-width:700px;
}

.home__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: 5rem;
}

.home__title{
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
}

.home__descritption{
  margin-bottom: 2rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.text-light {
  color: white;
}
.text-dark {
  color: black;
}

.text-dark h1,
.text-dark p,
.text-dark a {
  color: black !important;
}

.text-light h1,
.text-light p,
.text-light a {
  color: white !important;
}


.home__cards{
  grid-template-columns: 240px;
  justify-content: center;
  margin-top: 5rem;
  padding-bottom: 2rem;
}

.home__card{
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-left: 6rem;
}

.home__card-img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.home__card-shadow{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 1;
}

.home__card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.home__card-title{

  bottom: 2rem;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.home__card-tours {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #eee;
}

.home__card-button {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s ease;
  text-decoration: none;
  font-family: var(--h2-font-size);
}

.home__card-button i {
  font-size: 1rem;
}

.destination__description{
  text-align: center;
}

.home__card-button:hover {
  opacity: 0.7;
}

.home__card:hover .home__card-img{
  transform: scale(1.2);
}

.button,
.button-transparent {
  display: block; 
  text-align: center;
  width: 100%; 
  padding: 1.25rem 1.5rem; 
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  margin-top: 1rem; 
}

.button {
  background-color: hsla(0, 90%, 48%, 0.925); /* Original button color */
}

.button-transparent {
  background-color: transparent; /* Transparent background */
  border: 2px solid var(--title-color); /* Optional: add a border */
}

.button i{
  font-size: 1.25rem;
  transition: transform .4s;
  font-weight: initial;
}

.button:hover{
  transform: translateX(.25rem);
  background-color: hsla(0, 90%, 38%, 0.925);
}
.button-transparent:hover{
  transform: translateX(.25rem);
}
 
/*=============== FORM ===============*/
.form__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-block: 3rem;
  margin-top: 10rem;
}

.form__content {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}


.form__group {
  display: flex;
  flex-direction: column; /* Stack label and input vertically */
}


.form__label {
  margin-bottom: 0.5rem; 
  color: var(--title-color); 
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  text-align: left;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  background-color: var(--container-color);
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border-radius: 0.5rem;
  resize: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-color-light);
}

.form__input:focus,
.form__textarea:focus {
  outline: 2px solid hsla(0, 90%, 48%, 0.8); /* optional focus effect */
}

/*=============== BUTTON ===============*/


/*=============== ABOUT ===============*/
.about__container{
  row-gap: 3rem;
}

.about__data{
  text-align: center;
}

.about__description{
  margin-bottom: 2rem;
}

.about__image{
  position: relative;
  justify-self: center;
  overflow: hidden;
}

.about__img{
  width: 300px;
  transition: transform .4s;
}

.about__shadow{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: linear-gradient(180deg,
                    hsla(0,0%,0%,0)50%,
                    hsla(0,0%,0%)125%);
}

.about__image:hover .about__img{
  transform: scale(1.2);
}
/*=============== POPULAR ===============*/
.popular__container{
  padding-top: 1.5rem;
  grid-template-columns: 240px;
  justify-content: center;
  row-gap: 2.5rem;
}

.popular__image{
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.popular__img{
  transition: transform .4s;
  width: 100%;
  height: 380px;
}

.popular__best-seller {
  position: absolute;
  top: 1rem; 
  right: 1rem; /* Adjust position from right */
  background-color: hsl(45, 100%, 50%); /* Golden background color */
  color: var(--body-color); /* Dark text color for contrast */
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  padding: 0.3rem 0.7rem;
  border-radius: 2rem; /* Rounded shape */
  border: 1px solid hsl(45, 100%, 30%); /* Darker golden border */
  z-index: 10; /* Ensure it's above the image and shadow */
}

.popular__shadow{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: linear-gradient(180deg,
                  hsla(0,0%,0%,0)50%,
                  hsla(0,0%,0%)125%);
}

.popular__details-wrapper {
  padding-top: 1rem;
  display: flex;  
  flex-direction: column;
}

.popular__title{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.popular__ratings {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  color: hsl(45, 100%, 50%); /* Golden color for stars */
  font-size: var(--small-font-size);
  margin-bottom: 0.5rem;
}

.popular__ratings i {
  font-size: 1rem; /* Size of star icons */
}

.popular__location,
.popular__duration {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-size: var(--small-font-size);
  font-family: var(--second-font);
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.popular__location i,
.popular__duration i{
  font-size: 1rem;
}

.popular__price-actions {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.popular__price {
  font-size: var(--normal-font-size);
  color: var(--text-color); 
}

.popular__price-amount {
  color: var(--red-price-color); /* Red color for the price amount */
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size); /* Make the price amount slightly larger */
}

.popular__view-details {
  background-color: var(--green-button-color); /* Green button color */
  color: var(--title-color);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  transition: background-color .3s, transform .4s;
  width: auto;
  line-height: 1.2; 
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  white-space: nowrap;
}


.popular__price-actions {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: left;
  margin-top: 1rem;
  column-gap: 50rem;
}


.popular__view-details:hover {
  background-color: hsl(120, 70%, 30%); /* Darker green on hover */
}

.popular__image:hover .popular__img{
  transform: scale(1.2);
}

.popular__view-all-wrapper {
  text-align: center; 
  margin-top: 2.5rem; 
  padding-bottom: 2rem; 
}

.popular__view-all-button {
  display: inline-block; 
  width: auto;       
  height: 60px;      
  padding: 0.75rem 2rem; 
  white-space: nowrap;   
  margin-top: 0;         
}


/*=============== RATINGS ===============*/
.ratings__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 3rem;
}

.ratings__header {
  text-align: center;
  margin-bottom: 3rem;
}

.ratings__subtitle {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.ratings__slider {
  position: relative;
  justify-self: center;
}


.ratings__card {
  text-align: left;
  max-width: 600px;
  padding: 2.5rem;
  background-color: var(--container-color);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
  animation: fadeIn 0.5s ease;
}


.ratings__card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ratings__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.ratings__dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.ratings__dots .dot.active {
  background: var(--title-color);
}

.ratings__image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ratings__img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--first-color);
}

.ratings__stars {
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
  font-size: 1.5rem;
  color: hsl(45, 100%, 50%);
  margin-bottom: 1rem;
}

.ratings__quote {
  font-size: 1.1rem;
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ratings__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ratings__name {
  font-size: 1rem;
  color: var(--title-color);
  font-weight: var(--font-bold);
}

.ratings__location {
  font-size: 0.95rem;
  color: var(--text-color-light);
}

/* === Newsletter Section === */
.newsletter {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}

.newsletter__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.newsletter__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.newsletter__description {
  font-size: 1rem;
  margin: 1rem 0 2rem;
  color: #fff;
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.newsletter__input {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter__button {
  background-color: hsl(45, 100%, 50%); /* golden */
  color: #000;
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter__button:hover {
  background-color: hsl(45, 100%, 40%);
}

.newsletter__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}


/*=============== FOOTER ===============*/
.footer{
  padding-block: 2.5rem;
  background-color: var(--container-color);
}

.footer__content{
  row-gap: 3.5rem;
}

.footer__description {
  margin-bottom: 1.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

.footer__logo{
  display: inline-block;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.footer__logo-highlight {
  color: #e82f0f;
}

.footer__data{
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 3.5rem;
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links{
  display: grid;
  row-gap: .75rem;
}

.footer__link{
  color: var(--text-color);
  transition: color .4s;
}

.footer__link:hover{
  color: var(--title-color);
}

.footer__group,
.footer__social{
  display: flex;
}

.footer__group{
  margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
  justify-content: center;
  margin-inline: auto;
}

.footer__social{
  margin-top: 0.5rem;
  column-gap: 1.5rem;
  display: flex;
}

.footer__social-link{
  color: var(--text-color);
  font-size: 1.25rem;
  transition: color .4s, transform .4s;
}

.footer__social-link:hover{
  color: var(--title-color);
  transform: translateY(-.25rem);
}

.footer__links li {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--text-color);
}

.footer__links li i {
  font-size: 1.1rem;
  color: var(--first-color, #e82f0f);
}

.footer__copy{
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-align: center; 
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background-color: hsla(0, 0%, 10%);
}

::-webkit-scrollbar-thumb{
  border-radius: .5rem;
  background-color: hsla(0, 0%, 20%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsla(0, 0%, 30%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  bottom: -50%;
  right: 1rem;
  color: var(--title-color);
  padding: 6px;
  display: inline-flex;
  font-size: 1.25rem;
  border-radius: 50%;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
  }
  .scrollup:hover{
    transform: translateY(-.25rem);
  }

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container{
    margin-inline: 1rem;
  }

  .footer__data{
    grid-template-columns: max-content;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .home__container,
  .about__container,
  .explore__content,
  .join__container{
    grid-template-columns: 380px;
    justify-content: center;
  }

  .footer__data{
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 768px) {
  .home__cards{
    grid-template-columns: repeat(2, 240px);
  }

  .about__container,
  .join__container{
    grid-template-columns: repeat(2, 350px);
    align-items: center;
  }

  .about__data,
  .about__data .section__title,
  .join__data,
  .join__data .section__title{
    text-align: initial;
  }

  .popular__container{
    grid-template-columns: repeat(2, 1fr);
  }

  .explore__img{
    width: 100vw;
  }

  .join__image{
    order: -1;
  }

  .footer__content{
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }

  .footer__group{
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .nav__close,
  .nav__toggle{
    display: none;
  }

  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }

  .popular__container{
    grid-template-columns: repeat(240px);
  }

  .footer__data{
    grid-template-columns: repeat(4, max-content);
    column-gap: 4.5rem;
  }
}

@media screen and (min-width: 1152px) {
  .container{
    margin-inline: auto;
  }

  .section{
    padding-block: 7rem 2rem;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .blur-header::after{
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .home__container{
    grid-template-columns: initial;
    justify-content: initial;
    row-gap: 4rem;
    padding-top: 6.5rem;
  }

  .home__shadow{
    height: 980px;
  }

  .home__data{
    text-align: initial;
    width: 480px;
  }

  .home__subtitle{
    font-size: var(--h2-font-size);
  }

  .home__descritption{
    margin-bottom: 2.5rem;
  }

  .home__cards{
    grid-template-columns: 1fr;
  }

  .home__card-img{
    display: block; 
    object-fit: cover; 
    height: 380px;
    width: 80%;
  }

  .home__card-title{
    left: 1.5rem;
    bottom: 2rem;
  }

  .button{
    column-gap: 1.5rem;
  }

  .about__container{
    grid-template-columns: 400px 460px;
    column-gap: 8.5rem;

  }

  .about__description{
    margin-bottom: 2.5rem;
  }

  .about__img{
    width: 460px;
  }

  .popular__container{
    grid-template-columns: 1fr;
    column-gap: 3rem;
    padding-top: 4rem;
  }

  .popular__img {
    display: block; 
    object-fit: cover; 
    height: 380px;
  }

  .popular__title{
    font-size: var(--h2-font-size);
  }

  .popular__location{
    font-size: var(--normal-font-size);
  }

  .explore__img{
    height: 600px;
  }

  .explore__content{
    padding-top: 28rem;
    grid-template-columns: 670px 1fr;
  }

  .explore__data,
  .explore__data .section__title{
    text-align: initial;
  }

  .explore__user{
    justify-content: flex-end;
    align-self: flex-end;
    margin-bottom: 1.25rem;
  }

  .join__container{
    grid-template-columns: 460px 340px;
    column-gap: 8.5rem;
    padding-block: 1rem 5rem;
  }

  .join__img{
    width: 460px;
  }

  .join__description{
    margin-bottom: 3rem;
  }

  .footer{
    padding-block: 5rem 3rem;
  }

  .footer__title{
    margin-bottom: 1.5rem;
  }

  .footer__group{
    margin-top: 7rem;
  }

  .footer__social{
    column-gap: 2rem;
  }

  .footer__social-link{
    font-size: 1.5rem;
  }
}
