/* =============================
   RayzenSoft Restaurant Management Page Styles
   ============================= */

/* === RTL Support === */
body {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
}

/* === ألوان وهوية الموقع === */
.text-gold {
    color: #bfa76a !important;
}
.btn-gold {
    background-color: #bfa76a;
    color: #fff;
    border: none;
    transition: background 0.2s;
}
.btn-gold:hover, .btn-gold:focus {
    background-color: #a88d4a;
    color: #fff;
}

/* === الهيرو والصورة الرئيسية === */
.restaurant-hero {
    background: linear-gradient(120deg, #fffbe6 0%, #fff 100%);
    border-bottom: 1px solid #f3e7c9;
}
.restaurant-img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(191, 167, 106, 0.12);
}

/* === كاروُسل الهيرو يأخذ كامل الشاشة (العرض أقل، الطول كما كان) === */
.restaurant-hero .carousel,
.restaurant-hero .carousel-inner,
.restaurant-hero .carousel-item,
.restaurant-hero .carousel-item img {
    width: 95vw !important;
    max-width: 95vw;
    min-height: 320px;
    max-height: 70vh;
    height: 70vh;
    object-fit: cover;
    border-radius: 0;
    margin: 0 auto;
    left: 51%;
    padding: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .restaurant-hero .carousel-item img {
        width: 95vw !important;
        max-width: 95vw;
        min-height: 120px;
        height: 40vh;
        max-height: 40vh;
    }
}
@media (max-width: 585.98px) {
    .restaurant-hero .carousel-item img {
        width: 95vw !important;
        max-width: 95vw;
        min-height: 120px;
        height: 40vh;
        max-height: 40vh;
    }
}

@media (max-width: 560px) {
    .restaurant-hero .carousel-item img {
         width: 100vw !important;
        max-width: 100vw;
        margin-right: 30px !important;
        
    }
}

/* === بطاقات لماذا نحن === */
.why-card {
    background: #fff;
    border: 1px solid #f3e7c9;
    transition: box-shadow 0.2s;
}
.why-card:hover {
    box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
}

/* === قسم طلب النسخة التجريبية === */
.request-demo-section {
    background: #fffbe6;
    border-radius: 18px;
}
.demo-form .form-control:focus {
    border-color: #bfa76a;
    box-shadow: 0 0 0 0.2rem rgba(191, 167, 106, 0.15);
}
.demo-form .form-control {
    text-align: right;
}
.demo-form .form-control::placeholder {
    text-align: right;
}

/* === القوائم والأزرار والأيقونات RTL === */
.list-unstyled li {
    text-align: right;
}
.fa-check {
    margin-left: 8px;
    margin-right: 0;
}
.btn i {
    margin-left: 8px;
    margin-right: 0;
}
.navbar-nav,
.dropdown-menu {
    text-align: right;
}

/* === الفوتر === */
.footer-section {
    background: #232323;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
}
.footer-title {
    color: #bfa76a;
    font-weight: bold;
    margin-bottom: 16px;
}
.footer-link, .footer-link:visited {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #bfa76a;
}
.footer-logo-img {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(191, 167, 106, 0.12);
}

/* === استجابة الشاشات الصغيرة === */
@media (max-width: 991.98px) {
    .restaurant-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .footer-section {
        padding-top: 24px;
        padding-bottom: 12px;
    }
} 

.restaurant-hero-btns {
    margin-top: 2.5rem !important;
    margin-bottom: 1.5rem !important;
}
@media (max-width: 767.98px) {
    .restaurant-hero-btns {
        margin-top: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
} 