/* Amenities Features Section */
.features-section {
  background-color: #fcfbf7;
  background-image: url('../assets/Images/patterns/experienceLeftPattern.webp');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 300px;
  padding: 3vw 40px 5vw 40px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  color: #c9a063;
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #2b221e;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
