/* Index Page Styles */
/* Variables */
/* Mixins */
/* Media Query Breakpoints */
/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/h1.avif");
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/h1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 8rem;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__btn {
  padding: 1.5rem 3rem;
}

/* About Section */
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
}

.about__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__paragraph {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.about__paragraph:last-of-type {
  margin-bottom: 3rem;
}

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__img {
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Preferences Section */
.preferences__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.preference-card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.preference-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.preference-card__icon {
  font-size: 4rem;
  color: #c46e1c;
  margin-bottom: 2rem;
}

.preference-card__title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #343a40;
}

.preference-card__text {
  color: #6c757d;
}

/* Tours Section */
.tours__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.tours__cta {
  text-align: center;
}

.tour-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tour-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.tour-card:hover .tour-card__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.tour-card__image {
  height: 200px;
  overflow: hidden;
}

.tour-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.tour-card__content {
  padding: 2rem;
}

.tour-card__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #343a40;
}

.tour-card__duration {
  display: inline-block;
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.tour-card__duration i {
  margin-right: 0.5rem;
  color: #c46e1c;
}

.tour-card__description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #6c757d;
}

.tour-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.tour-card__price {
  font-weight: 700;
  color: #c46e1c;
}

/* Media Queries */
@media (max-width: 992px) {
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }
  .hero__title {
    font-size: 3.2rem;
  }
  .hero__subtitle {
    font-size: 1.8rem;
  }
  .preference-card {
    padding: 2rem;
  }
  .tours__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=index.css.map */