*{
margin:0;
padding:0;
box-sizing:border-box;
}


@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root{
  --primary:#ff6a00;
  --bg:#0b0b0b;
  --card:#1a1a1a;
  --text:#ffffff;
  --muted:#bdbdbd;
}

body{
  margin:0;
  font-family:"IBM Plex Sans Arabic", sans-serif;
  background:var(--bg);
  color:var(--text);
}

header{
  position:fixed;
  top:0;
  width:100%;
  padding:15px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;

  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(10px);

  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:28px;
    font-weight:800;
    color:#ff7900;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #ff7900;
    box-shadow:0 0 15px rgba(255,121,0,0.4);
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:white;
font-weight:700;
}

h1,h2,h3{
  color:var(--text);
}

p{
  color:var(--muted);
}

span{
  color:var(--muted);
}

.order-btn{
  background:linear-gradient(45deg,#ff6a00,#ff3d00);
  padding:12px 25px;
  border-radius:50px;
  color:white;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.order-btn:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(255,106,0,0.3);
}



.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}
.hero-content h1{
  font-size:60px;
  font-weight:800;
  line-height:1.2;
}

.hero-content span{
  color:var(--primary);
  letter-spacing:2px;
  
}
.hero-content .btn{
    margin-top:30px;
}

.btn{
background:#ff7900;
padding:14px 30px;
display:inline-block;
border-radius:50px;
color:white;
text-decoration:none;

}

.hero-image img{
width:500px;
}

section{
padding:100px 8%;
}

h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

.category-grid{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.filter-btn{
padding:12px 25px;
border:none;
border-radius:30px;
cursor:pointer;
background:#eee;
}

.filter-btn.active{
background:#ff7900;
color:white;
}

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

.food-card{
  background:linear-gradient(145deg,#1a1a1a,#111);
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
  transition:0.4s;
  cursor:pointer;
  position:relative;
}

.food-card{
  opacity:0;
  transform:translateY(30px);
  animation:fadeUp 0.6s forwards;
}

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

.food-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 60px rgba(255,106,0,0.2);
}

.food-card img{
width:100%;
height:240px;
object-fit:cover;
}

.food-card h3{
  color:var(--text);
  font-size:20px;
  font-weight:700;
}

.food-card p{
  color:var(--muted);
  font-size:14px;
}

.food-card span{
display:block;
padding:20px;
font-size:24px;
font-weight:800;
color:#ff7900;
}

.branches-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.badge{
  position:absolute;
  top:15px;
  left:15px;
  background:var(--primary);
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}

.branch{
    background:linear-gradient(145deg,#1f1f1f,#121212);
    border-radius:25px;
    padding:30px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.branch:hover{
    transform:translateY(-8px);
    border-color:#ff7900;
    box-shadow:0 15px 40px rgba(255,121,0,0.25);
}

.branch h3{
    color:#ff7900;
    font-size:24px;
    margin-bottom:15px;
}

.branch p{
    color:#ddd;
    margin:8px 0;
    font-size:17px;
}
.branch-icon{
    font-size:45px;
    color:#ff7900;
    margin-bottom:15px;
}

.socials{
display:flex;
justify-content:center;
gap:20px;
}

.socials a{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#ff7900;
color:white;
font-size:22px;
}

.footer{
    background:#111;
    padding:50px 20px 25px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-logo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #ff7900;
    margin-bottom:10px;
}

.footer-logo h3{
    color:#ff7900;
    margin-bottom:10px;
}

.footer p{
    color:#bdbdbd;
    margin-bottom:25px;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1a1a1a;
    border-radius:50%;
    color:#ff7900;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#ff7900;
    color:white;
    transform:translateY(-4px);
}

.footer-info{
    color:#bdbdbd;
    margin-bottom:20px;
}

.footer-copy{
    color:#777;
    font-size:14px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
}


.menu-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);

    justify-content:center;
    align-items:center;

    z-index:9999;
    padding:20px;
}

.popup-box{
    width:100%;
    max-width:700px;
    max-height:85vh;

    overflow-y:auto;

    background:#151515;
    border-radius:25px;

    padding:30px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.5);

    transform:scale(.9);
    animation:popupShow .3s forwards;
}

@keyframes popupShow{
    to{
        transform:scale(1);
    }
}

.popup-box::-webkit-scrollbar{
    width:8px;
}

.popup-box::-webkit-scrollbar-thumb{
    background:#ff7900;
    border-radius:20px;
}

#popupTitle{
    text-align:center;
    margin-bottom:30px;
    color:#fff;
    font-size:32px;
    font-weight:800;
    padding-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.close-btn{
    position:sticky;
    top:0;

    float:left;

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#ff7900;
    color:white;

    font-size:28px;
    cursor:pointer;

    margin-bottom:20px;
}

.popup-meal{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:15px;

    padding:18px;

    margin-bottom:12px;

    background:#1f1f1f;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.05);
}

.popup-meal h4{
    color:white;
    margin-bottom:8px;
}

.popup-price{
    color:#ff7900;
    font-size:18px;
    font-weight:800;
}

.popup-whatsapp{
    background:#25D366;
    color:white;

    text-decoration:none;

    padding:12px 18px;

    border-radius:12px;

    white-space:nowrap;

    transition:.3s;
}

.popup-whatsapp:hover{
    transform:scale(1.05);
}

.food-card{
    transition:0.3s;
}

.hide{
    opacity:0;
    transform:scale(0.8);
    pointer-events:none;
}

.food-card:hover{
transform:translateY(-10px) scale(1.03);
}


.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.why-grid div{
    background:#1a1a1a;
    padding:25px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.why-grid div:hover{
    transform:translateY(-8px);
    border-color:#ff7900;
}

.why-grid i{
    font-size:40px;
    color:#ff7900;
    margin-bottom:15px;
}

.why-grid p{
    color:white;
    font-weight:600;
}

.review-card{
  background:#1a1a1a;
  padding:20px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.05);
}

.hero-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
  filter:brightness(0.4);
}

.contact-text{
    text-align:center;
    color:#bdbdbd;
    margin-bottom:40px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.contact-card{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    text-align:center;
    text-decoration:none;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#ff7900;
}

.contact-card i{
    font-size:40px;
    color:#ff7900;
    margin-bottom:15px;
}

.contact-card h3{
    color:white;
    margin-bottom:10px;
}

.contact-card span{
    color:#bdbdbd;
}

.map-btn{
    display:inline-block;
    margin-top:10px;
    padding:12px 20px;
    background:#ff7900;
    color:white;
    text-decoration:none;
    border-radius:50px;
}

.menu-header{
    text-align:center;
    margin-bottom:40px;
}

.menu-header h2{
    font-size:55px;
    margin-bottom:10px;
}

.menu-header p{
    color:#bdbdbd;
}

.category-slider{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,.08);
    padding:25px;
    border-radius:25px;
}

.category-item{
    width:110px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    padding:10px;
    border-radius:20px;
}

.category-item img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;

    border:2px solid rgba(255,255,255,.1);
}

.category-item span{
    display:block;
    margin-top:10px;
    color:white;
    font-weight:700;
}

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

.category-item.active{
    border:1px solid #ff7900;
    background:rgba(255,121,0,.08);
}

.category-item.active img{
    border-color:#ff7900;
    box-shadow:0 0 20px rgba(255,121,0,.4);
}

.section-title{
    text-align:center;
    margin:40px 0 25px;
    color:#ff7900;
    font-size:28px;
}

.menu-header{
    text-align:center;
    margin-bottom:40px;
}

.menu-header p{
    color:#bdbdbd;
}

.swiper{
    padding:20px 10px 50px;
}

.category-item{
    text-align:center;
    cursor:pointer;
}

.category-item img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,.1);
    transition:.3s;
}

.category-item span{
    display:block;
    margin-top:10px;
    color:white;
    font-weight:700;
}

.category-item:hover img{
    border-color:#ff7900;
    transform:scale(1.08);
}

.category-item.active img{
    border-color:#ff7900;
    box-shadow:0 0 25px rgba(255,121,0,.4);
}

.swiper-button-next,
.swiper-button-prev{
    color:#ff7900;
}

.menu-categories-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;
}

.category-card{
    background:linear-gradient(
        145deg,
        #181818,
        #0f0f0f
    );

    border-radius:25px;
    padding:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:#ff7900;
    box-shadow:0 15px 40px rgba(255,121,0,.15);
}

.category-card img{
    width:160px;
    height:160px;
    object-fit:contain;
    margin:auto;
    display:block;
}

.category-card h3{
    margin-top:10px;
    font-size:28px;
}

.category-card p{
    color:#ff7900;
    font-weight:700;
    margin:8px 0 15px;
}

.category-card button{
    background:transparent;

    border:1px solid #ff7900;

    color:white;

    padding:10px 20px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;
}

.category-card button:hover{
    background:#ff7900;
}

.highlight{
    border:2px solid #ff7900 !important;
    box-shadow:0 0 30px rgba(255,121,0,.7) !important;
}