/* بارگذاری فونت و اجباری کردن آن برای محتوای هتل */
@import url('fonts/peyda.css');

/* اطمینان از اینکه فونت محتوای هتل تحت هیچ شرایطی تغییر نکند */
.hotel-content, 
.hotel-content * {
  font-family: 'Peyda', Tahoma, Arial, sans-serif !important;
  direction: rtl !important;
  /* color و اندازه را اینجا تغییر ندهیم — اندازه می‌تواند توسط inline font-size تغییر کند */
}

/* عنوان‌ها و لینک‌ها هم از فونت ارث می‌برند */
.hotel-content h1, .hotel-content h2, .hotel-content h3,
.hotel-content h4, .hotel-content h5, .hotel-content h6 {
  font-family: inherit !important;
  font-weight: 700 !important; /* اگر فونت‌ات bold است */
}

/* لینک‌ها: فونت را تغییر نمیده، فقط استایل لینک را مشخص کن */
.hotel-content a {
  font-family: inherit !important;
  /*color: #f97a00; 
  text-decoration: underline;  یا none */
}

/* اگر می‌خواهی کلاً span/font/style اضافی تاثیری روی فونت نداشته باشند */
.hotel-content [style*="font-family"] {
  font-family: 'Peyda', Tahoma, Arial, sans-serif !important;
}

.hotel-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 12px;
  box-sizing: border-box;
}

.hotel-container {
  width: 98%;
  max-width: 1200px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  direction: rtl;
  text-align: right;
  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; }
