/* ====== Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: Arial, sans-serif;
}



.offers-container {
  background: url('../assets/images/room-banner12.jpg') center/cover no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
}

.offer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  width: 320px;
  max-width: 100%;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.offer-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-card:hover img {
  transform: scale(1.05);
}

.offer-info {
  padding: 18px;
}

.offer-info h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.offer-info p {
  color: #555;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.validity {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 12px;
  background: linear-gradient(135deg, #007BFF, #00C6FF);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #0056b3, #0096d6);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}
