/* بارگذاری فونت و اجباری کردن آن برای محتوای هتل */
/*@import url('fonts/peyda.css');*/

/* عنوان‌ها و لینک‌ها هم از فونت ارث می‌برند */
.hotel-content h1,
.hotel-content h2,
.hotel-content h3,
.hotel-content h4,
.hotel-content h5,
.hotel-content h6 {
  font-family: inherit !important;
  font-weight: 600 !important; /* اگر فونت‌ات bold است */
}

/* لینک‌ها: فونت را تغییر نمیده، فقط استایل لینک را مشخص کن */
.hotel-content a {
  font-family: inherit !important;
  color: #f97a00; /* یا رنگ دلخواه */
  /* text-decoration: underline; /* یا none */
}

.hotel-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 12px;
  box-sizing: border-box;
}

/* متن کشویی */
.hotel-content {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.45s ease;
}

.hotel-content.expanded {
  max-height: 2000px; /* وقتی باز میشه */
}

/* افکت محو شدن پایین متن */
.hotel-content.custom-hotel-fadeout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* دکمه نمایش بیشتر */
.show-more-btn {
  display: block;
  width: 160px;
  margin: 18px auto 0;
  text-align: center;
  color: #f97a00;
  border: 1px solid #f97a00;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  background: transparent;
  transition: background 0.25s, color 0.25s;
}

.show-more-btn:hover {
  background: #f97a00;
  color: #fff;
}

.hotel-container h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #222;
}
.hotel-container p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}
