/* ===========================================
   PACKAGE PAGE STYLES
   Prefix: pk-
   ===========================================*/

body {
  background: #f9f9f9;
  font-family: "Inter", sans-serif;
  color: #212529;
}

/* -------------------------------------------
   CATEGORY FILTER BUTTONS
------------------------------------------- */
.pk-category-filter {
  gap: 1rem;
  flex-wrap: wrap;
}

.pk-filter-btn {
  background: #e8f5ef;
  /* color: #145c52; */
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pk-filter-btn.active,
.pk-filter-btn:hover {
  background: #145c52;
  color: #fff;
}

/* -------------------------------------------
   PACKAGE CARD
------------------------------------------- */
.pk-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px; /* fixed height for alignment */
}

.pk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Image */
.pk-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* -------------------------------------------
   TAG (Top Label)
------------------------------------------- */
.pk-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #145c52;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

/* -------------------------------------------
   CARD BODY
------------------------------------------- */
.pk-card-body {
  background: #f6f9f7;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.pk-card-body h5 {
  color: #212529;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pk-card-body p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* Duration Row */
.pk-duration {
  color: #145c52;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.pk-duration i {
  font-size: 1rem;
}

/* -------------------------------------------
   VIEW DETAILS BUTTON
------------------------------------------- */
.pk-btn {
  background: linear-gradient(90deg, #145c52 0%, #1e9d67 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.25),
    0 2px 6px rgba(20, 92, 82, 0.25);
  align-self: center;
  width: 100%;
}

.pk-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.25),
    0 3px 10px rgba(20, 92, 82, 0.35);
  opacity: 0.95;
}

/* -------------------------------------------
   CARD GRID ALIGNMENT
------------------------------------------- */
.pk-package-wrapper .row > div {
  display: flex;
}

.pk-card {
  width: 100%;
  max-width: 370px; /* keeps all cards consistent width */
  margin: 0 auto;
}

/* === Hero Section === */
.pk-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/Slider1.webp') center center / cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.pk-hero-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    margin: 10rem 0rem 1rem 0rem;
}

.pk-hero-section p {
  font-size: 1.2rem;
  /* max-width: 600px; */
  margin: 0 auto;
}


/* -------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------- */
@media (max-width: 991.98px) {
  .pk-card-img img {
    height: 200px;
  }
  .pk-card {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .pk-card-img img {
    height: 180px;
  }

  .pk-card-body {
    padding: 1rem;
  }

  .pk-card-body h5 {
    font-size: 1rem;
  }

  .pk-filter-btn {
    font-size: 0.9rem;
    padding: 6px 14px;
  }

  .pk-btn {
    padding: 8px 22px;
    font-size: 0.9rem;
  }
}

/* -------------------------------------------
   TRANSITIONS & POLISH
------------------------------------------- */
.pk-card,
.pk-btn,
.pk-filter-btn {
  transition: all 0.3s ease;
}

.pk-card:hover .pk-tag {
  background: #145c52;
  color:#000000;
}
