   :root {
       --sun-color: #fceabb;
       --sun-color-shado: #f8b500;
       --primary-color: #963222;
       /* الأصفر الذهبي */
       --secondary-color: #D4941A;
       /* البرتقالي المائل للأحمر */
       --accent-color: #f26a1f;
       /* --primary-color: #963220;
       --secondary-color: #f8b500; */
       --bg-light: #ffffff;
       --text-light: #333;
       --bg-dark: #1a1a1a;
       --text-dark: #fff;
       --default-font: "Roboto", sans-serif;
       --heading-font: "Nunito Sans", sans-serif;
       --nav-font: "Nunito Sans", sans-serif;
       --background-color: #0c0b09;
       --default-color: rgba(255, 255, 255, 0.7);
       --heading-color: #ffffff;
       --surface-color: #29261f;
       --contrast-color: #0c0b09;
       --nav-color: #ffffff;
       --nav-dropdown-color: #ffffff;

       --text-color: #333333;
       --card-background: #ffffff;
       --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
       --input-border: #dddddd;
       --input-background: #ffffff;
       --button-background: #007bff;
       --button-hover: #963220;
       --background-color: #ffffff;
       --card-back-color-dark: rgb(255 255 255 / 0%);
       --card-back-color-light: rgb(255 255 255 / 88%);



   }

   [data-theme="light"] {
       --background-color: var(--bg-light);
       --default-color: var(--text-light);
       --heading-color: var(--text-light);
       --surface-color: var(--bg-light);
       --contrast-color: var(--text-light);
       --card-color: var(--card-back-color-light);
   }

   [data-theme="dark"] {
       --background-color: var(--bg-dark);
       --default-color: var(--text-dark);
       --heading-color: var(--text-dark);
       --surface-color: var(--bg-dark);
       --contrast-color: var(--text-dark);
       --card-color: var(--card-back-color-dark);
       --background-color: #1a1a1a;
       --text-color: #f9f9f9;
       --card-background: #2a2a2a;
       --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
       --input-border: #444444;
       --input-background: #333333;
       --button-background: #1e90ff;
       --button-hover: var(--button-hover);
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       /* font-family: var(--default-font); */
   }

   .dark-mode-toggle {
       position: fixed;
       bottom: 30px;
       left: 30px;
       z-index: 1000;
       background-color: var(--secondary-color)
   }

   body {
       background-color: var(--background-color);
       color: var(--default-color);
       transition: background-color 0.3s, color 0.3s;
   }

   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
       /* font-family: var(--heading-font); */
       color: var(--heading-color);
   }

   a {
       color: var(--accent-color);
       text-decoration: none;
   }

   a:hover {
       color: var(--accent-color);
   }

   .section-title {
       padding-bottom: 60px;
       position: relative;
   }

   .section-title h2 {
       font-size: 14px;
       font-weight: 500;
       padding: 0;
       line-height: 1px;
       margin: 0;
       letter-spacing: 1.5px;
       text-transform: uppercase;
       color: color-mix(in srgb, var(--default-color), transparent 30%);
       position: relative;
   }

   .section-title h2::after {
       content: "";
       width: 120px;
       height: 1px;
       display: inline-block;
       background: var(--accent-color);
       margin: 4px 10px;
   }

   .section-title p {
       color: var(--accent-color);
       margin: 0;
       /* font-size: 36px;
       font-weight: 600; */
       font-size: 25px;
       font-weight: 400;
       /* font-family: var(--heading-font); */
   }

   /* Default button styling */
   .btn-primary {
       position: relative;
       padding: 10px 20px;
       font-size: 16px;
       /* background-color: #007bff; */
       color: white;
       border: none;
       border-radius: 5px;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .btn-cart {
       background-color: var(--primary-color);
       color: var(--bg-light);
       border: none;
       border-radius: 5px;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .btn-cart::before {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       width: 0;
       height: 100%;
       background: var(--secondary-color);
       transition: 0.3s;
       z-index: -1;
   }

   .btn-cart:hover::before {
       width: 100%;
   }

   .btn-primary:hover {
       transform: translateY(-3px);
       background-color: var(--button-hover);
       box-shadow: 0 5px 15px rgba(205, 170, 124, 0.4);
   }


   /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
   .hero {
       width: 100%;
       min-height: 100vh;
       position: relative;
       padding: 80px 0;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--default-color);
   }

   .hero img {
       position: absolute;
       inset: 0;
       display: block;
       width: 100%;
       height: 100%;
       object-fit: cover;
       z-index: 1;
   }

   .hero:before {
       content: "";
       background: color-mix(in srgb, var(--bg-dark), transparent 50%);
       position: absolute;
       inset: 0;
       z-index: 2;
   }

   .hero .container {
       position: relative;
       z-index: 3;
   }

   .hero h2 {
       margin: 0;
       font-size: 38px;
       font-weight: 700;
   }

   .hero h2 span {
       color: var(--accent-color);
   }

   .hero p {
       color: color-mix(in srgb, var(--nav-color), transparent 20%);
       margin: 10px 0 0 0;
       font-size: 24px;
   }

   .hero .cta-btn {
       color: var(--nav-color);
       border: 2px solid var(--accent-color);
       font-weight: 400;
       font-size: 14px;
       text-transform: uppercase;
       letter-spacing: 1px;
       display: inline-block;
       padding: 8px 30px;
       border-radius: 50px;
       transition: 0.3s;
       flex-shrink: 0;
   }

   .hero .cta-btn:first-child {
       margin-right: 10px;
   }

   .hero .cta-btn:hover {
       background: color-mix(in srgb, var(--accent-color), transparent 20%);
   }

   @media (max-width: 480px) {
       .hero .cta-btn {
           font-size: 12px;
       }
   }

   @media (max-width: 768px) {
       .hero h2 {
           font-size: 32px;
       }

       .hero p {
           font-size: 16px;
       }
   }

   .navbar {
       background-color: var(--bg-dark);
       position: fixed;
       width: 100%;
       top: 0;
       z-index: 1000;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   }


   .navbar-brand {
       font-weight: 700;
       color: var(--primary-color) !important;
       font-size: 1.5rem;
   }

   .navbar-toggler {
       color: var(--nav-color) !important;

   }

   .nav-link {
       color: var(--nav-color) !important;
       font-weight: 500;
       margin: 0 15px;
       transition: all 0.3s ease;
       position: relative;
   }

   .nav-link:hover {
       color: var(--accent-color) !important;
   }

   .nav-link.active {
       color: var(--accent-color) !important;
   }

   .nav-link:active {
       color: var(--accent-color) !important;
   }

   .nav-link::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background: var(--accent-color);
       transition: width 0.3s ease;
   }

   .nav-link:hover::after {
       width: 100%;
   }

   .hero-section {
       background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/back2.jpeg') center/cover;
       height: 100vh;
   }

   .hero-slider .carousel-item {
       height: 90vh;
       min-height: 500px;
   }

   .carousel-caption {
       background: rgba(0, 0, 0, 0.6);
       padding: 2rem;
       border-radius: 15px;
       bottom: 30%;
   }

   .carousel-item img {
       object-fit: cover;
       height: 100%;
   }

   .menu-section {
       background: url('../img/shams.jpeg') no-repeat center center cover;
       background-size: 30% auto;
       background-attachment: fixed;
       min-height: 100vh;
   }

   .menu-card {
       transition: transform 0.3s;
   }

   .menu-card:hover {
       transform: translateY(-10px);
   }

   .service-card {
       transition: transform 0.3s, box-shadow 0.3s;
       border: none;
   }

   .service-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
   }

   .service-icon {
       width: 80px;
       height: 80px;
       margin: 0 auto;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 50%;
       background: rgba(192, 57, 43, 0.1);
   }

   .contact {
       background-color: var(--background-color);
       padding: 60px 0;
   }
   .info-item {
       margin-bottom: 20px;
       padding: 20px;
       background: var(--card-background);
       border-radius: 10px;
       box-shadow: var(--card-shadow);

       /* background: var(--surface-color); */
       border-radius: 10px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }

   .contact .info-item+.info-item {
       margin-top: 40px;
   }

   .contact .info-item i {
       color: var(--nav-color);
       background: var(--accent-color);
       font-size: 20px;
       width: 44px;
       height: 44px;
       display: flex;
       justify-content: center;
       align-items: center;
       border-radius: 4px;
       transition: all 0.3s ease-in-out;
       margin-right: 15px;
   }

   .contact .info-item h3 {
       padding: 0;
       font-size: 18px;
       font-weight: 400;
       margin-bottom: 5px;
       color: var(--heading-color);
   }

   .contact .info-item p {
       padding: 0;
       margin-bottom: 0;
       font-size: 14px;
       color: var(--heading-color);
   }


   .php-email-form .form-control {
       height: 50px;
       border-radius: 10px;
       /* border: 1px solid var(--surface-color);
            background: var(--surface-color);
            color: var(--default-color); */
       border: 1px solid var(--input-border);
       background: var(--input-background);
       color: var(--text-color);
       padding: 10px 15px;
       font-size: 16px;
   }

   .php-email-form textarea.form-control {
       height: auto;
       resize: none;
   }

   .php-email-form button.btn-primary {
       background: var(--accent-color);
       border: none;
       padding: 12px 30px;
       font-size: 16px;
       border-radius: 10px;
       transition: background 0.3s ease;
       color: #fff;
   }

   .php-email-form button.btn-primary:hover {
       background: var(--button-hover);
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   .animate-fadeIn {
       animation: fadeIn 1s ease-in;
   }

   @keyframes zoomInOut {

       0%,
       100% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.05);
       }
   }

   @keyframes rotate {
       from {
           transform: rotate(0deg);
       }

       to {
           transform: rotate(360deg);
       }
   }

   @media (max-width: 768px) {
       .nav-links {
           display: none;
       }

       .hero h1 {
           font-size: 2.5rem;
       }

       .nav-links {
           background-color: var(--surface-color);
           padding: 1rem;
           border-radius: 10px;
       }
   }

   .section-title {
       font-size: 2.5rem;
       position: relative;
       color: #2d2d2d;
   }

   .section-title span {
       color: #c19a6b;
   }

   .menu-section #menu-flters {
       padding: 0;
       margin: 0 auto 0 auto;
       list-style: none;
       text-align: center;
       border-radius: 50px;
   }

   .menu-section #menu-flters li {
       cursor: pointer;
       display: inline-block;
       padding: 8px 16px 10px 16px;
       font-size: 14px;
       font-weight: 500;
       line-height: 1;
       color: var(--heading-color);
       margin: 0 3px 10px 3px;
       transition: all ease-in-out 0.3s;
   }

   .menu-section #menu-flters li:hover,
   .menu-section #menu-flters li.filter-active {
       color: var(--accent-color);
   }

   .menu-section #menu-flters li:last-child {
       margin-right: 0;
   }

   .menu-section {
       background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
   }


   .menu-item {
       transition: transform 0.3s, box-shadow 0.3s;
       border-radius: 15px;
       overflow: hidden;
       position: relative;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s;
       /* background: rgba(0, 0, 0, 0.7); */
       margin-bottom: 3px;
   }

   .menu-item:hover {
       transform: translateY(-10px);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }

   .special-badge {
       display: none;
       position: absolute;
       top: 15px;
       left: 15px;
       background: #8b0000;
       color: white;
       padding: 8px 20px;
       border-radius: 20px;
       font-size: 0.9rem;
       z-index: 2;
   }


   .price {
       color: var(--accent-color);
       font-weight: bold;
   }

   .item-tags {
       margin-top: 1rem;
   }

   .tag {
       display: inline-block;
       padding: 4px 12px;
       border-radius: 15px;
       font-size: 0.8rem;
       margin-left: 5px;
   }

   .tag.halal {
       background: #f26a21;
       color: white;
   }

   .tag.spicy {
       background: #8b0000;
       color: white;
   }

   .tag.vegan {
       background: #2d2d2d;
       color: white;
   }

   .category-tabs {
       border-bottom: 2px solid #eee;
       padding-bottom: 1rem;
   }

   .tab-btn {
       background: none;
       border: none;
       padding: 10px 25px;
       margin: 0 5px;
       border-radius: 25px;
       transition: all 0.3s;
   }

   .tab-btn.active {
       background: #c19a6b;
       color: white;
   }

   .form-range::-webkit-slider-thumb {
       background: #c19a6b;
   }

   .shadow-hover {
       transition: all 0.3s ease;
       border-radius: 15px;
       overflow: hidden;
   }

   .shadow-hover:hover {
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transform: translateY(-5px);
   }

   .item-title {
       font-size: 1rem;
       color: var(--heading-color);
   }

   .item-description {
       margin-bottom: 0;
       font-style: italic;
       font-size: 14px;
       line-height: 1.2;
       display: none;
   }

   .badge {
       font-size: 0.9rem;
       padding: 8px 15px;
       border-radius: 20px;
       margin-left: 8px;
   }

   .btn-icon {
       color: #c19a6b;
       transition: all 0.3s;
   }

   .btn-icon:hover {
       transform: scale(1.2);
   }

   @media (max-width: 768px) {}

   .menu-item {
       position: relative;
       transition: transform 0.3s;
   }

   .special-badge {
       display: none;
       position: absolute;
       top: 1px;
       left: 15px;
       background: #8b0000;
       color: white;
       padding: 8px 20px;
       border-radius: 20px;
       font-size: 0.9rem;
       z-index: 2;

   }

   /* تنسيقات وضع القائمة */
   .menu-items {
       margin-top: 10px;
   }

   .menu-items.list-view .menu-item {
       flex: 0 0 100%;
       max-width: 100%;
   }

   .menu-items.list-view .menu-item {
       display: flex;
       flex-direction: row;

   }

   .menu-items.list-view .card-img-top {

       object-fit: cover;
       border-radius: 10px 0 0 10px;
       width: 100px;
       height: 100px;
       object-fit: cover;
       border-radius: 10px 0 0 10px;

   }

   .item-tags .tag {
       display: inline-block;
       padding: 3px 10px;
       border-radius: 15px;
       font-size: 0.8rem;
       margin-right: 5px;
   }

   .halal {
       background: #2ed573;
       color: white;
   }

   .spicy {
       background: #ff6b6b;
       color: white;
   }

   /* .menu-items {
                position: relative;
                background:url('{{ asset('images/logo.jpeg') }}')no-repeat center center;
                background-size: 40% auto;

                min-height: 100vh;
            } */

   .menu-items .container {
       position: relative;
       z-index: 2;
       /* التأكد من ظهور المحتوى فوق الخلفية */
   }

   .menu-card {
       border: none;
       transition: transform 0.3s;
       position: relative;
       overflow: hidden;
   }

   .menu-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
       transition: 0.5s;
   }

   .menu-card:hover::before {
       left: 100%;
   }

   .menu-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   .menu-hero {
       background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
           url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') center/cover;
       height: 400px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
   }


   .card-item-color {
       background-color: var(--card-color);
   }

   /** Menu Grid**/
   /* Menu Section */
   .menu-section {
       padding: 5rem 2rem;
       /* max-width: 1200px; */
       margin: 0 auto;
   }

   .menu-categories {
       display: flex;
       gap: 1rem;
       justify-content: center;
       margin-bottom: 3rem;
       flex-wrap: wrap;
   }

   .category-btn {
       padding: 0.8rem 2rem;
       background-color: #ddd;
       border: none;
       border-radius: 25px;
       cursor: pointer;
   }

   .category-btn.active {
       background-color: var(--primary-color);
       color: white;
   }

   .menu-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
   }

   .menu-item-grid {
       background: white;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s;
   }

   .menu-item-grid:hover {
       transform: translateY(-5px);
   }

   .item-image {
       height: 200px;
       background-size: cover;
       background-position: center;
   }

   .item-info-grid {
       color: var(--text-color);
       padding: 1.5rem;
   }

   .item-info-grid h3 {
       font-size: 1.5rem;
       color: var(--heading-color);
       margin-bottom: 1rem;
   }

   .item-price-grid {
       color: var(--primary-color);
       font-size: 1.4rem;
       margin-top: 0.5rem;
   }

   @media screen and (max-width: 699px) {
       .menu-grid {
           grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
           gap: 10px;
       }
   }

   .footer {
       background-color: #222;
       color: var(--nav-color);
       padding: 40px 0;
   }

   .footer a {
       color: var(--nav-color);
       text-decoration: none;
   }

   @media (max-width: 768px) {
       .footer a img {
           margin: 0 auto;

       }


   }

   .footer a:hover {
       color: #ddd;
   }

   .footer .footer-logo .sitename {
       font-size: 24px;
       font-weight: bold;
       margin-left: 10px;
   }

   .footer h5 {
       font-size: 18px;
       margin-bottom: 15px;
       font-weight: 600;
   }

   .footer .footer-contact p,
   .footer .footer-contact strong {
       font-size: 14px;
       margin-bottom: 8px;
   }

   .footer .footer-social ul {
       list-style: none;
       padding: 0;
       margin: 0;
       display: flex;
       gap: 15px;
   }

   .footer .footer-social ul li {
       display: inline-block;
   }

   .footer .footer-social ul li a {
       font-size: 20px;
       transition: color 0.3s ease;
   }

   .footer-bottom {
       border-top: 1px solid rgba(255, 255, 255, 0.2);
       padding-top: 20px;
       margin-top: 30px;
       font-size: 13px;
   }

   @media (max-width: 768px) {
       .footer .row {
           text-align: center;
       }

       .footer .footer-social ul {
           justify-content: center;
       }
   }

   .menu-item {
       border-radius: 12px;
       overflow: hidden;
       transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
   }

   .menu-item:hover {
       transform: scale(1.05);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }



   .info-item {
       margin-bottom: 20px;
       padding: 20px;
       background: var(--card-background);
       border-radius: 10px;
       box-shadow: var(--card-shadow);
       border-radius: 10px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }

   .contact .info-item+.info-item {
       margin-top: 40px;
   }

   .contact .info-item i {
       color: var(--nav-color);
       background: var(--accent-color);
       font-size: 20px;
       width: 44px;
       height: 44px;
       display: flex;
       justify-content: center;
       align-items: center;
       border-radius: 4px;
       transition: all 0.3s ease-in-out;
       margin-right: 15px;
   }

   .contact .info-item h3 {
       padding: 0;
       font-size: 18px;
       font-weight: 400;
       margin-bottom: 5px;
       color: var(--heading-color);
   }

   .contact .info-item p {
       padding: 0;
       margin-bottom: 0;
       font-size: 14px;
       color: var(--heading-color);
   }

   .card-menu {
       overflow: hidden;
       border-radius: 25px;
       border: 1px solid lavender;
       margin: 10px;
   }

   @media (max-width: 600px) {
       .card-menu {
           width: 295px;

       }

   }

   .card__image {
       position: relative;
   }

   .card__image>img {

       max-width: 100%;
       border-bottom-right-radius: 30px;

       height: 200px;
       object-fit: cover;
       object-position: center;
       width: 100%;
   }

   .card__image>img:hover {
       transform: rotate(10deg) translate(-15px, -55px) scale(1.1);
   }

   .card__info {
       display: grid;
       align-items: baseline;
       justify-content: space-between;
       padding: 0px 30px 20px 30px;
       margin-top: 30px
   }

   .card__info h3 {
       font-size: 16px;
       font-weight: 600;
       color: var(----heading-color);
   }

   .card__info p {
       font-size: 9px;
       /* font-weight: 600; */
       line-height: 1.5;
       margin-bottom: 0;
       color: var(--secondary-color);

   }

   .card__info--price {
       color: var(--primary-color);
       font-weight: 700;
   }
