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

body {
  color: white;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  background-color: #0a0f1a;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #eb0029;
}

.logo a{text-decoration: none;
outline: none;
}

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

.nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: orange;
}

.cart-icon {
  font-size: 22px;
  color: white;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Navbar Responsive ===== */
@media (max-width: 1024px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 20px;
    background-color: #0a0f1a;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    width: 180px;
    text-align: left;
    animation: fadeIn 0.25s ease-in-out;
  }

  .nav a {
    margin: 12px 0;
    font-size: 18px;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cart-icon {
    margin-left: 10px;
  }
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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


.fun-fact-btn {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px auto;
  display: block;
  font-weight: bold;
  transition: all 0.3s;
}

.fun-fact-btn:hover {
  background-color: #ff5252;
  transform: scale(1.05);
}

.chef-card {
  transition: transform 0.3s ease;
}

.thank-you-btn {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin: 30px auto;
  display: block;
  font-size: 16px;
  transition: all 0.3s;
}


.chefs-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f8f8;
}

.chefs-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.chefs-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.chef-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chef-card img {
  width: 100%;
  height: auto;
  display: block;
}

.chef-info {
  padding: 15px;
}

.chef-info h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
}

.chef-info p {
  font-size: 14px;
  color: #666;
}


.about-section {
  background-color: #fff;
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  text-align: center;
}

.about-images {
  gap: 20px;
  margin-bottom: 20px;
}

.about-img1,
.about-img2 {
  width: 220px;
  height: 230px;
  border-radius: 45%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.tagline {
  color: #ff6600;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.order-btn {
  background: #ff6600;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.order-btn:hover {
  background: #e65c00;
}

.deals-section {
  background-color: #f8f5ec;
  padding: 50px 0;
  text-align: center;
}

.deals-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.deal-card {
  color: white;
  padding: 25px;
  border-radius: 15px;
  width: 350px;
  height: 230px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* يخلي المسافات بين المحتوى والزر */
  position: relative;
  transition: transform 0.3s ease-in-out;
  gap: 30px;
  /* مسافة بين العناصر جوه الكارت */
}

.deal-card img {
  width: 90px;
  height: auto;
  position: absolute;
  top: 5px;
  /* بعد عن أعلى الكارت */
  right: 20px;
  /* بعد عن يمين الكارت */
  z-index: 0;
  /* حتى يبقى خلف النص والزر */
}

.deal-card h3,
.deal-card p {
  z-index: 1;
  /* نصوص فوق الصورة */
}

.deal-card button {
  background: #e60023;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;
  /* مسافة بين النص والزر */
  z-index: 1;
}


.deal-card:hover {
  transform: translateY(-5px);
}

.deal-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.deal-card p {
  color: #ffcc00;
  font-weight: bold;
  font-size: 14px;
}


.deal-card button::after {
  content: " →";
  margin-left: 10px;
}

.spicy {
  background: linear-gradient(to right, #ff5733, #ff8c42);
}

.special {
  background: linear-gradient(to right, #33a1ff, #5ec8ff);
}

.roll {
  background: linear-gradient(to right, #2ecc71, #58d68d);
}

footer {
  width: 100vw;
  max-width: 100%;
  background-color: #0a0f1a;
  padding-top: 60px;
  color: white;
  margin: 0;
}

.footer-top-info {
  background: #f36b26;
  padding: 10px 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: auto;
  border-radius: 10px;
}

.footer-top-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.footer-top-info div i {
  font-size: 22px;
  background: white;
  color: #f36b26;
  padding: 10px;
  border-radius: 50%;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-info,
.footer-links,
.footer-contact {
  width: 30%;
}

.footer-info h3,
.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  color: #f36b26;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.footer-links ul li a:hover {
  color: orange;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background: #eb0029;
  color: white;
  width: 100%;
  margin: 0;
}

.footer-bottom a {
  text-align: center;
  padding: 20px 0;
  background: #eb0029;
  color: white;
  width: 100%;
  margin: 0;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}


/* ===== About Section Responsive ===== */

/* للتابلت */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 40px;
    /* تصغير البادينج شوية */
  }

  .about-content {
    max-width: 500px;
    padding: 0 10px;
  }

  .about-images {
    gap: 15px;
    flex-wrap: wrap;
    /* لو الصور كبيرة تتحول لسطر تاني */
    justify-content: center;
  }

  .about-img {
    width: 180px;
    height: 210px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 15px;
  }

  .tagline {
    font-size: 14px;
  }
}

/* للموبايل */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
    flex-direction: column;
    /* يصير كل حاجة عمودي */
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-images {
    flex-direction: column;
    /* الصور فوق بعض */
    gap: 10px;
  }

  .about-img {
    width: 150px;
    height: 180px;
    margin: 0 auto;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 14px;
  }

  .tagline {
    font-size: 12px;
  }

  .order-btn {
    width: 80%;
    font-size: 14px;
    padding: 10px 15px;
    margin: 20px auto;
  }
}



/* ===== Deals Section Responsive with vertical spacing ===== */

/* للتابلت */
@media (max-width: 1024px) {
  .deals-container {
    gap: 30px;
    /* مسافة أكبر بين الكروت */
    justify-content: center;
    flex-wrap: wrap;
  }

  .deal-card {
    width: 280px;
    /* عرض أصغر */
    height: 200px;
    padding: 20px;
  }
}

/* للموبايل */
@media (max-width: 768px) {
  .deals-container {
    flex-direction: column;
    /* الكروت فوق بعض */
    gap: 25px;
    /* مسافة عمودية واضحة */
    align-items: center;
    /* يبقى في النص */
  }

  .deal-card {
    width: 90%;
    /* تقريبًا عرض الشاشة */
    height: auto;
    /* ارتفاع تلقائي حسب المحتوى */
    padding: 15px;
  }
}





/* ===== Footer Responsive Vertical ===== */

/* للتابلت */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    /* كل الأقسام عمودي */
    text-align: center;
    padding: 40px 20px;
    align-items: center;
    /* المركزية لكل المحتوى */
    gap: 30px;
    /* مسافة بين الأقسام */
  }

  .footer-info,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 0;
    /* مسافة موجودة في gap */
  }

  .footer-top-info {
    flex-direction: column;
    /* أيقونات عمودية */
    align-items: center;
    padding: 20px 30px;
    gap: 25px;
    /* المسافة بين كل div أيقونات */
  }

  .footer-top-info div {
    display: flex;
    flex-direction: column;
    /* أيقونات داخل كل div عمودي */
    align-items: center;
    gap: 20px;
    /* المسافة بين الأيقونات */
  }
}

/* للموبايل */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    align-items: center;
    gap: 25px;
  }

  .footer-info,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 0;
  }

  .footer-links ul li a {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top-info {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
  }

  .footer-top-info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* المسافة بين الأيقونات */
  }

  .footer-bottom {
    font-size: 14px;
    padding: 15px 10px;
  }

  .footer-bottom a {
    display: block;
    padding: 10px 0;
  }
}