.hotels-section {
  background: #EDEAE3;
  padding: 100px 0;
}

.hotel-list {
  max-width: 1500px;
  margin: 0 auto;
}

.hotel-item {
  margin-bottom: 80px;
}

.blog-header {
  margin-bottom: 40px;
}

.hotel-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  transition: .35s ease;
}

.hotel-item img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.hotel-meta {
  margin-top: 22px;
  text-align: center;
}

.hotel-meta h3 {
  font-size: 22px;
  font-weight: 600;
  color: #3F5C4B;
  margin-bottom: 6px;
}

.hotel-meta .rating {
  font-size: 18px;
  color: #D4A62A;
}

@media (max-width: 768px) {

  .hotel-item {
    margin-bottom: 60px;
  }

  .hotel-item img {
    height: 300px;
    border-radius: 0px;
  }

  .hotel-meta h3 {
    font-size: 18px;
  }

  .hotel-meta .rating {
    font-size: 16px;
  }
}

/* =========================
   HOTEL CTA BUTTON
========================= */

.hotel-cta {
  margin-top: 60px;
  text-align: center;
}

.hotel-main-btn {
  display: inline-block;
  background: #3F5C4B;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(63, 92, 75, 0.35);
}

.hotel-main-btn:hover {
  color: #EDEAE3;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(63, 92, 75, 0.45);
}

/* Mobile finomítás */
@media (max-width: 768px) {
  .hotel-main-btn {
    padding: 14px 30px;
    font-size: 14px;
  }
}



