/* HERO SECTION */
.hero {
  height: 95vh;
  background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511') no-repeat center/cover;
  position: relative;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.search-box {
  max-width: 900px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}


/* Featured Stays Card Enhancement */
.stay-card.upgraded {
  border-radius: 15px;
  transition: 0.3s ease;
  background: white;
}

.stay-card.upgraded:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 25px rgba(0,0,0,0.15) !important;
}

/* Image hover zoom */
.stay-card .image-wrapper {
  overflow: hidden;
}

.stay-card .image-wrapper img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.stay-card:hover .image-wrapper img {
  transform: scale(1.08);
}

/* Price styling */
.stay-card .text-primary {
  font-size: 1rem;
  font-weight: 600;
}

/* ========================= CATEGORY MODERN CARD ========================= */
.category-modern-card {
  background: #ffffff;
  border-radius: 18px;
  transition: 0.35s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.category-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.15);
}

/* Icon Circle */
.category-modern-card .icon-wrap {
  width: 85px;
  height: 85px;
  margin: auto;
  background: linear-gradient(135deg, #f5f9ff, #eef3ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.category-modern-card:hover .icon-wrap {
  transform: scale(1.08);
  box-shadow: inset 0 0 25px rgba(0,0,0,0.10), 0 5px 20px rgba(0,0,0,0.1);
}

.category-modern-card img {
  opacity: 0.85;
  transition: 0.3s ease;
}

.category-modern-card:hover img {
  opacity: 1;
}

/* Typography */
.category-modern-card h6 {
  font-size: 1.05rem;
}

.category-modern-card p {
  font-size: 0.85rem;
}

/* ========================= IMAGE AREA ========================= */

.ts-image-card {
  width: 78%;
  border-radius: 0 0 25px 25px;
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.ts-image-card img {
  width: 100%;
  height: auto;
  border-radius: 0 0 25px 25px;
  object-fit: cover;
}

/* Back card */
.ts-back-card {
  position: absolute;
  top: -15px;
  left: 40px;
  width: 78%;
  height: 90%;
  border: 2px solid #e9e9e9;
  border-radius: 15px;
  background: #ffffff;
  z-index: 1;
}

/* ========================= TEXT SIDE ========================= */

.ts-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1c1d36;
  margin-bottom: 8px;
}

.ts-stars {
  font-size: 1.25rem;
  color: #ffc107;
}

.ts-text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #2b2d42;
  max-width: 460px;
}

.ts-author {
  font-size: 0.9rem;
  color: #8c8f9a;
}

/* ========================= BUTTON ========================= */

.ts-btn {
  background: linear-gradient(135deg, #3056ff, #6b8bff);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(48, 86, 255, 0.25);
  transition: 0.3s;
}

.ts-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(48, 86, 255, 0.35);
}
