
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo+Play:wght@200..1000&display=swap');

:root {
    --primary-red: #C62828;
    --dark-brown: #2D1810;
    --gold-accent: #D4AF37;
    --cream-bg: #F5EDE1;
    --beige-light: #EFE5D8;
    --gray-text: #6B6B6B;
    --dark-text: #2D1810;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: var(--cream-bg);
}

/* Mobile menu styling */
.navbar-collapse {
    background-color: rgba(245, 237, 225, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        margin-top: 0;
    }
}

/* Navbar */

nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    /* background: transparent; */
}

nav.scrolled {
    background: rgba(245, 237, 225, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.1);
}

/* Container */
.nav-container {
    max-width: 1500px;
    margin: auto;
    padding: 0 16px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-text);
  
}
.logo-text {
    font-family: "Amiri", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 27px;
    color: var(--dark-text);

}
.F-logo-color {
    color: var(--primary-red);
    font-family: "Amiri", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 27px;
}   
.logo-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
  
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.25);
  }

  .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


/* Links */
.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 600;
    font-size: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 18px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--primary-red);
}

/* Mobile Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-text);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(245, 237, 225, 0.95);
    margin: 0 16px 16px;
    border-radius: 12px;
    padding: 16px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--dark-text);
    padding: 10px;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: var(--beige-light);
    color: var(--primary-red);
}

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

    .menu-btn {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }
}




/* Hero Section */
.hero-section {
    position: relative;        
    height: 100vh;              
    min-height: 600px;         
    display: flex;              
    align-items: center;        
    justify-content: center;   
    overflow: hidden;    
    background-size: cover;    
    background-position: center;
    background-repeat: no-repeat;   
    z-index: 99;  
     background-image: url('../images/hero.png'); 

}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%); */

}

.hero-content {
    text-align: center;
    color: var(--dark-text);
    z-index: 2;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}


.badge-tag {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.6rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.15);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.hero-title .gold-text {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(198, 40, 40, 0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
    line-height: 1.9;
    opacity: 0.85;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-menu {
    background-color: transparent;
    border: 2.5px solid var(--dark-text);
    color: var(--dark-text);
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-menu:hover {
    background-color: var(--dark-text);
    color: var(--cream-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 24, 16, 0.3);
}

.btn-order {
    background: var(--primary-red);
    border: 2.5px solid var(--primary-red);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-order:hover {
    background: #A82020;
    border-color: #A82020;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.5);
}

.hero-social {
  position: absolute;
  left: 20px;
  bottom: 250px;

  display: flex;
  flex-direction: column;
  gap: 15px;
}




.hero-social a i {
  color: #9aa0a6;
  transition: 0.3s ease;
}

.hero-social a i:hover {
  color: #c9a45c; /* gold hover */
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-social {
      flex-direction: row;
      left: 50%;
      bottom: 5%;
      transform: translateX(-50%);
  }
}


/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    animation: floatPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.6rem;
    }

    .nav-link {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .badge-tag {
        font-size: 0.9rem;
        padding: 0.5rem 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .btn-menu,
    .btn-order {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .navbar {
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .badge-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1.5rem;
    }

    .btn-menu,
    .btn-order {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 25px;
        left: 25px;
    }

    .search-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}



/* -------------------------------------------- */
.food-section {
    background-color: #fafafa;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
  }
  
  .food-section h2 {
    font-size: 3.5rem;
    line-height: 1.3;
  }
  
  .feature-box {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  .feature-box i {
    font-size: 28px;
    color: #d62828;
    margin-bottom: 10px;
    display: inline-block;
  }
  
  .feature-box h6 {
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .feature-box p {
    font-size: 16px;
    color: #666;
    margin: 0;
  }
  
 
  /* Badge */
  .followers-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 18px 22px;
    border-radius: 14px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .followers-badge {
      right: 50%;
      transform: translateX(50%);
    }
  
    .food-section h2 {
      font-size: 2rem;
    }
  }
  

  /* ---------- */

  /* Title */
.slider-title .small-title {
    display: block;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  
  .slider-title .main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 15px;
  }
  
  .slider-title .main-title span {
    color: var(--primary-red);
  }
  
  .slider-title .subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 17px;
    color: #6c6c6c;
    line-height: 1.8;
  }
  .slider-section {
    direction: rtl;
    padding: 60px 0;
  }
  
  /* Center slider */
  .foodSwiper {
    width: 70%;   
    height: 40.625rem;           /* 🔥 الحجم */
    margin: 0 auto;          /* 🔥 في النص */
    border-radius: 20px;
    overflow: hidden;
  }
  
  /* Slide size */
  .swiper-slide {
    position: relative;
    height: 50px;           /* 🔥 ارتفاع صغير */
  }
  
  /* Image fill */
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Text overlay */
  .slide-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    max-width: 320px;
  }
  
  .slide-content h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  
  .slide-content p {
    margin: 0;
    font-size: 14px;
  }
  
  /* Navigation */
  .swiper-button-next,
  .swiper-button-prev {
    color: var(--primary-red);
  }
  
  .swiper-pagination-bullet-active {
    background: var(--primary-red);
  }
  
  .swiper-button-prev ,.swiper-pagination , .swiper-button-next{
    color: black !important; 
    font-weight: 900;
    font-size: 500px;/* أي لون تحبه */
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .foodSwiper {
      width: 95%;
    }
  
    .swiper-slide {
      height: 220px;
    }
  }
  /* -------------------- */

  .section-title-menu {
    
    font-weight: 700;
 
  }

  .section-subtitle-menu {
    color: #777;
    max-width: 600px;
    margin: auto;
  }

  .menu-card {
    background: #fffdf9;
    border-radius: 20px;
    padding: 60px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .menu-icon {
    width: 80px;
    height: 80px;
    background:var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: auto;
  }

  .menu-btnn {
    background-color: var(--primary-red);
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
  }

  .menu-btnn:hover {
    background-color:var(--primary-red);
    color: #fff;
  }


.menu-section{
    background-color: #fafafa;
}

.akTashif{
    color: var(--primary-red);

}

/* ============= */

.section-title-rev span {
    color: var(--primary-red);
  }

  .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
  }

  .testimonial-card .quote {
    font-size: 40px;
    color: #eee;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .stars {
    color: var(--primary-red);
    margin-bottom: 10px;
  }

  .avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .stats {
    margin: 60px 0;
    text-align: center;
  }

  .stats h2 {
    color: var(--primary-red);
    font-weight: bold;
  }

  .stats p {
    color: #666;
    margin: 0;
  }


  /* =========== */

  .contact-section {
    background: #fff;
    padding: 80px 6%;
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
.text-open-now{
  color: green;
}
  
  .contact-header h2 {
    font-size: 36px;
    margin: 10px 0;
    color: #2b2b2b;
  }
  
  .contact-header p {
    color: #777;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }
  
  .map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 20px;
    border: none;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .card .icon {
    width: 55px;
    height: 55px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
  }
  
  .card h4 {
    margin-bottom: 8px;
    color: #2b2b2b;
  }
  
  .card p {
    color: #777;
    margin-bottom: 12px;
  }
  
  .card a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
  }
  
  @media (max-width: 900px) {
    .contact-content {
      grid-template-columns: 1fr;
    }
    /* @media (max-width: 768px) {
        .contact-cards {
          grid-template-columns: 1fr;
        }
      } */
  }
  /* ------------------------- */

  .site-footer {
    background: #1f1f1f;
    color: #ddd;
    padding: 70px 6% 0;
    font-family: 'Tajawal', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  .footer-logo {
    color: #c89b5f;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .footer-desc {
    color: #aaa;
    line-height: 1.8;
  }
  
  .footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    color: #aaa;
  }
  
  .footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: var(--primary-red);
  }
  
  .footer-social {
    display: flex;
    gap: 12px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    background: #2b2b2b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89b5f;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    background: #fdfdfd;
    color: #1f1f1f;
  }
  
  .footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-social {
      justify-content: center;
    }
  }
  
