/* ===============================
   PACKAGES HERO
================================ */


.experiences-hero {
  position: relative;
  z-index: 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.experiences-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.experiences-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  
}

.experiences-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}


.experiences-hero .container {
  position: relative;
  z-index: 1;
}
.experiences-hero .container {
  position: relative;
  z-index: 1;
}


/* ===============================
   FILTER BAR
================================ */

/* FILTER BAR */
.filter-bar {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 60px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

/* GROUP */
.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

/* LABEL */
.filter-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 10px;
}

/* SELECT & INPUT */
.filter-select,
#search-input {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

/* REMOVE DEFAULT SELECT STYLE */
.filter-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
}

/* HOVER */
.filter-select:hover,
#search-input:hover {
  border-color: rgba(0,0,0,0.15);
}

/* FOCUS (Luxury Gold Accent) */
.filter-select:focus,
#search-input:focus {
  border-color: #C6A76E;
  box-shadow: 0 0 0 3px rgba(198,167,110,0.15);
}

/* SEARCH WIDER */
.search-group {
  flex: 1;
}

#search-input {
  width: 100%;
}

.filter-bar::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(0,0,0,0.05);
}


/* ===============================
   PACKAGES GRID
================================ */

.experiences-list {
  margin-bottom: 120px;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 48px;
  justify-content: center;
}

/* ===============================
   PACKAGE CARD
================================ */

.package-card {
  background: #e5e5e698;
  overflow: hidden;
  transition: 0.4s ease;
  border-radius: 6px;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-image {
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s ease;
}

.package-card:hover img {
  transform: scale(1.05);
}

.package-content {
  padding: 28px;
}

.package-highlight {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.package-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.package-price {
  font-weight: 600;
  margin: 16px 0 20px;
  font-size: 1rem;
  color: var(--navy-dark);
}



@media (max-width: 768px) {

  .experiences-hero {
    padding: 120px 20px 80px;
  }

  .experiences-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .experiences-filter select,
  .experiences-filter input {
    width: 100%;
  }

  .experiences-grid {
    gap: 32px;
  }

}



@media (max-width: 1024px) {

  .filter-bar {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }

  .filter-group {
    flex: 1 1 calc(50% - 15px);
    min-width: unset;
  }

  .search-group {
    flex: 1 1 100%;
  }

}

@media (max-width: 768px) {

  .filter-bar {
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-group label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .filter-select,
  #search-input {
    padding: 16px;
    font-size: 15px;
    border-radius: 12px;
  }

}
