@charset "UTF-8";
/* =========================================
   VARIABLES
   ========================================= */
/* Colors */
/* Typography */
/* Spacing */
/* Breakpoints */
/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* =========================================
   COMPONENTS
   ========================================= */
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--outline {
  background: transparent;
  border: 1px solid #cf5c5c;
  color: #333333;
  font-size: 0.8rem;
}
.btn--outline:hover {
  background: #cf5c5c;
  color: #ffffff;
}
.btn-link {
  color: #333333;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #cf5c5c;
  padding-bottom: 2px;
  letter-spacing: 0.05em;
}

/* Section Titles */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #333333;
}

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

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  /* Jagged Edge Effect */
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 97%, 90% 95%, 85% 97%, 80% 95%, 75% 97%, 70% 95%, 65% 97%, 60% 95%, 55% 97%, 50% 95%, 45% 97%, 40% 95%, 35% 97%, 30% 95%, 25% 97%, 20% 95%, 15% 97%, 10% 95%, 5% 97%, 0 95%);
  /* Desktop Override */
}
@media (min-width: 1024px) {
  .hero {
    height: 80vh;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }
}
.hero__content {
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__subtitle {
  font-family: "Caveat", cursive;
  font-size: 1.8rem;
  opacity: 0.9;
  transform: rotate(-2deg);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 1001;
}
.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar__logo {
  color: #ffffff;
  width: 40px;
  height: 40px;
}
.navbar__menu {
  display: none;
}
@media (min-width: 1024px) {
  .navbar__menu {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .navbar__menu a {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  .navbar__menu a:hover {
    opacity: 1;
  }
}
.navbar__contact {
  display: none;
}
@media (min-width: 1024px) {
  .navbar__contact {
    display: block;
  }
  .navbar__contact a {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
  }
}
.navbar__toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1002;
}
.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 6px;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .navbar__toggle {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav__list {
  text-align: center;
}
.mobile-nav__list li {
  margin-bottom: 2rem;
}
.mobile-nav__list a {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

/* =========================================
   VARIABLES
   ========================================= */
/* Colors */
/* Typography */
/* Spacing */
/* Breakpoints */
/* =========================================
   FILTER SECTION
   ========================================= */
.filter {
  padding: 4rem 0;
}
.filter__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .filter__form {
    flex-direction: row;
    align-items: flex-end;
    max-width: 1000px;
    justify-content: center;
    gap: 4rem;
  }
}
.filter__group {
  position: relative;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .filter__group {
    width: 200px;
  }
}
.filter__group {
  /* Custom arrow */
}
.filter__group::after {
  content: "▼";
  font-size: 0.6rem;
  color: #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.filter__select {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #666666;
  appearance: none;
  cursor: pointer;
}
.filter__select:focus {
  outline: none;
}

/* =========================================
   TOURS SECTION (Cards)
   ========================================= */
.tours {
  padding-bottom: 6rem;
  overflow: hidden;
}

.tour-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
  position: relative;
  /* Desktop Zig-Zag Layout */
}
@media (min-width: 1024px) {
  .tour-card {
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
  }
}
.tour-card__image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  /* Jagged edges - Mobile */
  clip-path: polygon(0 5%, 5% 0, 10% 5%, 15% 0, 20% 5%, 25% 0, 30% 5%, 35% 0, 40% 5%, 45% 0, 50% 5%, 55% 0, 60% 5%, 65% 0, 70% 5%, 75% 0, 80% 5%, 85% 0, 90% 5%, 95% 0, 100% 5%, 100% 95%, 95% 100%, 90% 95%, 85% 100%, 80% 95%, 75% 100%, 70% 95%, 65% 100%, 60% 95%, 55% 100%, 50% 95%, 45% 100%, 40% 95%, 35% 100%, 30% 95%, 25% 100%, 20% 95%, 15% 100%, 10% 95%, 5% 100%, 0 95%);
}
@media (min-width: 1024px) {
  .tour-card__image-wrapper {
    width: 55%;
    height: 500px;
    /* Desktop clip */
    clip-path: polygon(5% 5%, 100% 0, 95% 95%, 0 100%);
  }
}
.tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card__img {
  transform: scale(1.05);
}
.tour-card__content {
  padding: 2rem;
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .tour-card__content {
    width: 45%;
    text-align: left;
    padding-left: 6rem;
  }
}
.tour-card__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
  font-style: italic;
}
@media (min-width: 1024px) {
  .tour-card__number {
    left: 0;
    top: 50%;
    transform: translate(-20%, -50%);
    font-size: 12rem;
  }
}
.tour-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.tour-card__details {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 2rem;
}
.tour-card__details li {
  margin-bottom: 5px;
}
.tour-card {
  /* Reverse Modifier for Desktop */
}
@media (min-width: 1024px) {
  .tour-card--reverse {
    flex-direction: row-reverse;
  }
  .tour-card--reverse .tour-card__content {
    padding-left: 0;
    padding-right: 6rem;
    text-align: right;
  }
  .tour-card--reverse .tour-card__number {
    left: auto;
    right: 0;
    transform: translate(20%, -50%);
  }
  .tour-card--reverse .tour-card__image-wrapper {
    clip-path: polygon(0 0, 95% 5%, 100% 100%, 5% 95%);
  }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
  padding: 6rem 0;
  background-color: #f9f9f9; /* Light grey to contrast with Tours (white) */
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.about__content {
  order: 2; /* Text below image on mobile */
}
@media (min-width: 1024px) {
  .about__content {
    order: 1; /* Text left on desktop */
  }
}
.about__subtitle {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  color: #cf5c5c;
  margin-bottom: 1rem;
  margin-top: -1rem; /* Pull closer to title */
}
.about__text {
  font-family: "Montserrat", sans-serif;
  color: #666666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.about {
  /* Stats Row */
}
.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.about .stat-item {
  display: flex;
  flex-direction: column;
}
.about .stat-item__number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  line-height: 1;
}
.about .stat-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #666666;
  margin-top: 5px;
  letter-spacing: 1px;
}
.about {
  /* Images Composition */
}
.about__images {
  position: relative;
  height: 400px;
  order: 1;
}
@media (min-width: 1024px) {
  .about__images {
    order: 2;
    height: 500px;
  }
}
.about__img-main {
  width: 85%;
  height: 85%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Jagged edge mask */
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 95%, 90% 92%, 85% 95%, 80% 92%, 75% 95%, 70% 92%, 65% 95%, 60% 92%, 55% 95%, 50% 92%, 45% 95%, 40% 92%, 35% 95%, 30% 92%, 25% 95%, 20% 92%, 15% 95%, 10% 92%, 5% 95%, 0 90%);
}
.about__img-small {
  width: 50%;
  height: 50%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 5px solid #f9f9f9; /* Create a "border" using bg color */
  box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
  padding: 6rem 0;
  background-color: #f9f9f9; /* Light grey bg */
  position: relative;
}
.contact__text {
  color: #666666;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
}
.contact__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__group-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact__group-row {
    flex-direction: row;
  }
}
.contact__input, .contact__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  border-color: #cf5c5c;
}
.contact__textarea {
  resize: vertical;
}

/* Button Variant: Solid Primary */
.btn--primary {
  background-color: #cf5c5c;
  color: #ffffff;
  border: 1px solid #cf5c5c;
  margin-top: 1rem;
  min-width: 200px;
}
.btn--primary:hover {
  background-color: rgb(191.5829383886, 56.4170616114, 56.4170616114);
  border-color: rgb(191.5829383886, 56.4170616114, 56.4170616114);
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews {
  padding: 6rem 0;
  background-color: #ffffff;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  /* 3 Columns on Desktop */
}
@media (min-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.review-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.review-card {
  /* Decorative Quote Mark */
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 1;
  color: #cf5c5c;
  opacity: 0.1;
  pointer-events: none;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f9f9f9;
}
.review-card__info {
  display: flex;
  flex-direction: column;
}
.review-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #333333;
  font-weight: 700;
}
.review-card__tour {
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.review-card__rating {
  color: #cf5c5c;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.review-card__text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  font-style: italic;
}

/* =========================================
   VARIABLES
   ========================================= */
/* Colors */
/* Typography */
/* Spacing */
/* Breakpoints */
/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
  background-color: #333333;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 6rem;
  position: relative;
  /* Torn paper effect at the top of the footer */
  clip-path: polygon(0 5%, 2% 0, 4% 5%, 6% 0, 8% 5%, 10% 0, 12% 5%, 14% 0, 16% 5%, 18% 0, 20% 5%, 22% 0, 24% 5%, 26% 0, 28% 5%, 30% 0, 32% 5%, 34% 0, 36% 5%, 38% 0, 40% 5%, 42% 0, 44% 5%, 46% 0, 48% 5%, 50% 0, 52% 5%, 54% 0, 56% 5%, 58% 0, 60% 5%, 62% 0, 64% 5%, 66% 0, 68% 5%, 70% 0, 72% 5%, 74% 0, 76% 5%, 78% 0, 80% 5%, 82% 0, 84% 5%, 86% 0, 88% 5%, 90% 0, 92% 5%, 94% 0, 96% 5%, 98% 0, 100% 5%, 100% 100%, 0 100%);
  /* Adjust padding to account for the jagged top */
  margin-top: -2rem;
  padding-top: 5rem;
}
.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer__logo svg {
  width: 30px;
  height: 30px;
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer__title {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer__links, .footer__contact-info {
  font-size: 0.9rem;
}
.footer__links li, .footer__contact-info li {
  margin-bottom: 10px;
}
.footer__links a, .footer__contact-info a {
  transition: color 0.3s;
}
.footer__links a:hover, .footer__contact-info a:hover {
  color: #cf5c5c;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s;
}
.footer__socials a:hover {
  background-color: #cf5c5c;
  border-color: #cf5c5c;
  color: #ffffff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.8rem;
  opacity: 0.6;
}

/*# sourceMappingURL=output.css.map */
