/* ✅ تنظیمات کلی سایت */
body {
    background-color: rgb(245, 243, 230); /* پس‌زمینه کرم روشن */
    color: rgb(50, 50, 50); /* متن خاکستری تیره */
    font-family: 'IRANYekan', sans-serif;
}

/* ✅ هدر سایت (Navbar) */
.navbar {
    background-color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: white !important;
}

.navbar-nav .nav-link {
    color: rgb(255, 193, 7) !important; /* طلایی روشن */
    font-size: 16px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: rgb(184, 144, 95) !important; /* طلایی گرم */
}

/* ✅ هدر صفحه (Hero Section) */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    color: rgb(245, 243, 230);
    margin-bottom: 20px;
}

/* ✅ دکمه رزرو */
.btn-primary {
    background-color: rgb(255, 193, 7);
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: rgb(184, 144, 95);
}

/* ✅ فوتر */
.footer {
    background-color: rgb(88, 62, 41);
    color: white;
    padding: 20px 0;
}
/* ✅ استایل کلی هدر پویا */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/hayat.webp') no-repeat center center/cover !important; /* 📷 تصویر پس‌زمینه */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ✅ لایه تیره روی تصویر برای خوانایی بهتر متن */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* تنظیم تیرگی */
}

/* ✅ محتوای داخل هدر */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* ✅ دکمه رزرو */
.btn-reserve {
    background-color: rgb(255, 193, 7);
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-reserve:hover {
    background-color: rgb(184, 144, 95);
}

/* ✅ انیمیشن ورود نرم (Fade-in) */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* ✅ کلید اسکرول به پایین */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: white;
    text-decoration: none;
    animation: bounce 2s infinite;
}

/* ✅ انیمیشن‌ها */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ✅ ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }

    .btn-reserve {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* ✅ بخش معرفی هتل */
.about-hotel {
    background-color: rgb(234, 230, 215); /* پس‌زمینه گرم و سنتی */
    padding: 100px 0;
}

/* ✅ استایل متن */
.about-text h2 {
    font-size: 28px;
    color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    color: rgb(50, 50, 50); /* خاکستری تیره */
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ✅ استایل دکمه */
.btn-learn-more {
    background-color: rgb(255, 193, 7); /* طلایی روشن */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-learn-more:hover {
    background-color: rgb(184, 144, 95); /* طلایی گرم */
}

/* ✅ استایل تصویر */
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* ✅ ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .about-text h2 {
        font-size: 24px;
        margin-top: 15px;
    }

    .about-text p {
        font-size: 16px;
    }

    .btn-learn-more {
        font-size: 14px;
        padding: 8px 16px;
    }
}
/* ✅ استایل کلی بخش نمایش اتاق‌ها */
.rooms-slider {
    background-color: rgb(245, 243, 230); /* پس‌زمینه کرم روشن */
    padding: 80px 0;
}

/* ✅ استایل عنوان بخش */
.section-title {
    font-size: 28px;
    color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: rgb(50, 50, 50); /* خاکستری تیره */
    margin-bottom: 30px;
}

/* ✅ استایل کارت هر اتاق */
.room-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
}

/* ✅ افکت سه‌بعدی برای کارت‌ها */
.carousel-item.active .room-card {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ✅ استایل تصاویر اتاق */
.room-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ✅ استایل نام اتاق */
.room-title {
    font-size: 22px;
    color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    margin-bottom: 10px;
}

/* ✅ توضیحات اتاق */
.room-description {
    font-size: 16px;
    color: rgb(50, 50, 50);
    margin-bottom: 15px;
}

/* ✅ دکمه رزرو */
.btn-room {
    background-color: rgb(255, 193, 7); /* طلایی روشن */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-room:hover {
    background-color: rgb(184, 144, 95); /* طلایی گرم */
}

/* ✅ استایل دکمه‌های کنترل اسلایدر */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    border-radius: 50%;
    padding: 10px;
}

/* ✅ ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .room-title {
        font-size: 20px;
    }

    .room-description {
        font-size: 14px;
    }

    .btn-room {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* ✅ استایل کلی بخش امکانات و خدمات */
.hotel-services {
    background-color: rgb(234, 230, 215); /* پس‌زمینه کرم روشن */
    padding: 80px 0;
}

/* ✅ استایل عنوان و توضیحات */
.section-title {
    font-size: 28px;
    color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: rgb(50, 50, 50); /* خاکستری تیره */
    margin-bottom: 30px;
}

/* ✅ کارت‌های خدمات */
.service-card {
    perspective: 1000px;
    width: 100%;
    height: 200px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

/* ✅ جلو و پشت کارت */
.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
}

/* ✅ طراحی کارت جلویی */
.service-front {
    background-color: white;
    color: rgb(88, 62, 41);
    font-weight: bold;
}

.service-front i {
    font-size: 36px;
    color: rgb(255, 193, 7); /* طلایی روشن */
    margin-bottom: 10px;
}

.service-front h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* ✅ طراحی کارت پشتی */
.service-back {
    background-color: rgb(184, 144, 95); /* طلایی گرم */
    color: white;
    padding: 15px;
    transform: rotateY(180deg);
}

/* ✅ افکت چرخش کارت */
.service-card:hover .service-front {
    transform: rotateY(180deg);
}

.service-card:hover .service-back {
    transform: rotateY(0);
}

/* ✅ ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .service-card {
        height: 220px;
    }

    .service-front i {
        font-size: 30px;
    }

    .service-front h3 {
        font-size: 18px;
    }

    .service-back {
        font-size: 14px;
        padding: 10px;
    }
}
/* ✅ استایل کلی بخش نظرات */
.guest-reviews {
    background-color: rgb(255, 252, 245); /* پس‌زمینه روشن */
    padding: 80px 0;
}

/* ✅ استایل عنوان و توضیحات */
.section-title {
    font-size: 28px;
    color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: rgb(50, 50, 50); /* خاکستری تیره */
    margin-bottom: 30px;
}

/* ✅ استایل کارت نظرات */
.review-card {
    background: white;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
}

/* ✅ افکت سه‌بعدی برای کارت‌ها */
.carousel-item.active .review-card {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ✅ استایل متن نظر */
.review-text {
    font-size: 18px;
    font-style: italic;
    color: rgb(50, 50, 50);
    margin-bottom: 10px;
}

/* ✅ استایل نام مهمان */
.review-author {
    font-size: 16px;
    font-weight: bold;
    color: rgb(88, 62, 41);
}

/* ✅ استایل دکمه‌های کنترل اسلایدر */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgb(88, 62, 41); /* قهوه‌ای شکلاتی */
    border-radius: 50%;
    padding: 10px;
}

/* ✅ استایل جای خالی فرم نظرسنجی */
.review-form-placeholder {
    background-color: rgb(234, 230, 215); /* پس‌زمینه هماهنگ */
    padding: 30px;
    margin-top: 40px;
    border-radius: 10px;
    text-align: center;
}

.review-form-placeholder h3 {
    color: rgb(88, 62, 41);
    font-size: 22px;
    margin-bottom: 10px;
}

.review-form-placeholder p {
    font-size: 16px;
    color: rgb(50, 50, 50);
}

/* ✅ ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-author {
        font-size: 14px;
    }

    .review-form-placeholder h3 {
        font-size: 20px;
    }
}
/* ✅ استایل کلی بخش رزرو سریع */
.quick-reserve {
    background: url('../images/reserve-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    position: relative;
}

/* ✅ لایه تیره روی پس‌زمینه برای خوانایی بهتر */
.quick-reserve::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* ✅ استایل متن بخش */
.reserve-title, .reserve-subtitle {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.reserve-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.reserve-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ✅ استایل دکمه‌ها */
.btn-reserve, .btn-call {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

/* ✅ دکمه رزرو آنلاین */
.btn-reserve {
    position:relative;
    background-color: rgb(255, 193, 7);
    color: white;
}

.btn-reserve:hover {
    background-color: rgb(184, 144, 95);
}

/* ✅ دکمه تماس تلفنی */
.btn-call {
    background-color: rgb(88, 62, 41);
    color: white;
    position: relative;
}

.btn-call:hover {
    background-color: rgb(184, 144, 95);
}

/* ✅ ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .reserve-title {
        font-size: 24px;
    }

    .reserve-subtitle {
        font-size: 16px;
    }

    .btn-reserve, .btn-call {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* ستاره‌ها */
.custom-star {
    font-size: 40px;
    color: #eae6d7; /* رنگ توخالی ستاره */
    cursor: pointer;
    transition: color 0.3s ease;
}

/* زمانی که کاربر ستاره‌ای را انتخاب می‌کند (پر شدن ستاره‌ها) */
.btn-check:checked + .custom-star,
.btn-check:checked ~ .btn-check + .custom-star {
    color: #96733c; /* رنگ پر شده ستاره */
}

/* استایل‌های خاص برای ستاره‌ها */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-direction: row-reverse; /* تغییر جهت از راست به چپ */
}

/* استایل‌های اضافی برای فرم‌ها */
.mb-3 .form-label {
    text-align: right;
    color: #907f64;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    transition: color 0.3s ease;
}

/* رنگ پیش‌زمینه و استایل‌های صفحه */
body {
    background-color: #f5f3e6;
}

/* تنظیمات برای فرم و دکمه ارسال */
.review-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.review-card {
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.review-card h2 {
    color: #96733c;
}

/* دکمه ارسال */
.custom-btn-primary {
    background-color: #96733c;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: #907f64;
}

/* استایل برای فیلدهای ورودی و متن */
textarea.form-control {
    border: 1px solid #eae6d7;
    border-radius: 5px;
    padding: 10px;
    resize: none;
}

/* استایل‌های فرم */
.mb-3 {
    margin-bottom: 20px;
}

/* استایل‌های اضافی */
.custom-btn-primary:focus, .custom-btn-primary:active {
    outline: none;
}
.btn-custom {
    background-color: #96733c; /* رنگ قهوه‌ای گرم */
    color: #fff; /* رنگ متن سفید برای خوانایی بهتر */
    opacity: 0.95 !important;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px; /* گرد شدن گوشه‌ها */
    border: 2px solid #805f30; /* یک حاشیه کمی تیره‌تر */
    transition: all 0.3s ease-in-out;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15); /* سایه برای زیبایی */
  }
  
  .btn-custom:hover {
    background-color: #805f30; /* رنگ تیره‌تر هنگام هاور */
    color: #f5f3e6; /* رنگ متنی که با پس‌زمینه اصلی سایت هماهنگ شود */
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.25); /* افزایش سایه هنگام هاور */
  }
  /* ✅ استایل کلی فوتر */
.site-footer {
    background-color: rgb(88, 62, 41); /* پس‌زمینه قهوه‌ای شکلاتی */
    color: rgb(245, 243, 230); /* متن کرم روشن */
    padding: 50px 0;
    font-size: 16px;
  }
  
  /* ✅ چینش داخلی */
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
  }
  
  /* ✅ استایل بخش‌های مختلف */
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    flex: 1 1 250px;
  }
  
  /* ✅ عنوان‌های فوتر */
  .site-footer .parag {
    font-size: 18px;
    margin-bottom: 15px;
    text-align:center;
    color: rgb(255, 193, 7); /* طلایی برای برجسته‌تر شدن */
  }
  
  /* ✅ استایل لینک‌ها */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 8px 0;
  }
  
  .footer-links ul li a {
    color: rgb(245, 243, 230);
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: rgb(184, 144, 95); /* طلایی گرم */
  }
  
  /* ✅ استایل اطلاعات تماس */
  .footer-contact a {
    color: rgb(245, 243, 230);
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-contact a:hover {
    color: rgb(184, 144, 95);
  }
  
  /* ✅ استایل آیکون‌های شبکه‌های اجتماعی */
  .footer-social a {
    font-size: 22px;
    color: rgb(255, 193, 7); /* طلایی */
    margin: 0 10px;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    color: rgb(245, 243, 230); /* تغییر رنگ در هاور */
  }
  
  /* ✅ بخش کپی‌رایت */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgb(184, 144, 95);
    margin-top: 20px;
  }
  
  /* ✅ ریسپانسیو برای موبایل */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }
  @font-face {
    font-family: 'MyFont';
    src: url('../font/Samim.eot'); 
    src: url('../font/Samim.eot?#iefix') format('embedded-opentype'), 
         url('../font/Samim.woff') format('woff'), 
         url('../font/Samim.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
