﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');

* {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* لحل مشاكل iPhone */
}

/* ثابت: لتسهيل تعويض الهيدر */
:root {
    --header-height: 70px;
}

header {
    background-color: #ee5f06; 
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: var(--header-height);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
}

.logo {
    text-decoration: none;
    color: #f0f0f0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

.navigation a {
    color: #f4bf3a;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 30px;
}

.navigation a:hover {
    color: #fff;
}

/* ← حل التراكب: padding-top بدل margin-top */
.welcome-section {
    background: linear-gradient(to right, #ee5f06, #f4bf3a);
    color: white;
    text-align: center;
    padding: calc(var(--header-height) + 60px) 20px 100px;
    border-bottom: 5px solid #fff2e0;
}

.welcome-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.welcome-content p {
    font-size: 1.5em;
    font-weight: 500;
}
#order-btn {
  background-color: #ffffff;    /* خلفية بيضاء */
  color: #ee5f06;               /* خط برتقالي */
  border: 2px solid #ee5f06;    /* إطار برتقالي */
  padding: 12px 30px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(238, 95, 6, 0.3);
}

#order-btn:hover,
#order-btn:focus,
#order-btn:active {
  background-color: #ee5f06;   /* خلفية برتقالي */
  color: #ffffff;              /* خط أبيض */
  border-color: #ffffff;       /* إطار أبيض */
  box-shadow: 0 6px 8px rgba(255, 255, 255, 0.5);
}


section {
    padding: 100px 200px;
}

.menu-category {
    margin-bottom: 40px;
    background-color: #fff7f0;
    border-left: 8px solid #ee5f06;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-category h3 {
    color: #ee5f06;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 2px solid #f4bf3a;
    padding-bottom: 5px;
}

.menu-category ul {
    list-style: none;
    padding-left: 0;
}

.menu-category ul li {
    font-size: 1.1em;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    background-color: #fff;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.menu-category ul li:hover {
    background-color: #fff2e0;
}

.ingredients {
    font-size: 0.95em;
    color: #666;
    margin-top: 5px;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.menu-table th,
.menu-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
}

.menu-table th {
    background-color: #f4bf3a;
    color: #000;
}
#gallary {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

#gallary .title {
  font-size: 2em;
  color: #ee5f06;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-card {
  background-color: #fffaf2;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.gallery-card .caption {
  padding: 12px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
}

.contact-section {
  background-color: #fff2e0;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  color: #ee5f06;
  margin-bottom: 30px;
  font-size: 2em;
}

.contact-items-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-item a, .contact-item span {
  color: #333;
  font-size: 1.1em;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: #fff2e0;
}

.contact-item i {
    color: #ee5f06;
    font-size: 1.2em;
}

/* لون خاص لأيقونة الواتساب */
.contact-item.whatsapp i {
    color: #25D366;
}

.contact-item a {
    color: #3a6cf4;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}
.contact-item.facebook a {
    background-color: #1877f2; /* لون أزرق فيسبوك */
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-item.facebook a:hover {
    background-color: #155dbf;
}

.contact-item.facebook i {
    font-size: 1.2em;
	color: #fff;
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #ee5f06;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1em;
}

footer span {
    color: #f4bf3a;
    font-weight: bold;
}

.footer-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-title span {
    color: #f4bf3a;
}

.branch-note {
    font-size: 1em;
    color: #ff0303;
    font-weight: bold;
}
.developer-signature {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
    color: #666;
    font-family: 'Cairo', sans-serif;
    position: relative;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(10px);
    cursor: default;
}

.developer-signature:hover {
    opacity: 1;
    transform: translateY(0);
}

.developer-signature::before {
    content: "✨";
    position: absolute;
    right: 10px; /* لأن النص عربي */
    top: 0;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1); }
}

.dev-name {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    background-color: #f1f1f1;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dev-name:hover {
    background-color: #007bff;
    color: #fff;
    text-shadow: 0 0 5px #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* تصميم متجاوب */
/* أجهزة كبيرة */
@media (min-width: 1200px) {
    section {
        padding: 100px 200px;
    }

    .welcome-content h1 {
        font-size: 3.5em;
    }

    .welcome-content p {
        font-size: 2em;
    }
}

/* شاشات متوسطة */
@media (max-width: 1199px) {
    header {
        padding: 10px 80px;
    }

    section {
        padding: 80px 40px;
    }

    .welcome-content h1 {
        font-size: 2.5em;
    }

    .welcome-content p {
        font-size: 1.3em;
    }
}

.menu-toggle {
    display: none;
    font-size: 1.8em;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        padding: 10px 15px;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .welcome-section {
    padding: calc(var(--header-height) + 80px) 20px 100px;
}

    .logo {
        font-size: 1.4em;
        flex: 1 0 100%;
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ee5f06;
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        padding: 12px 0;
        text-align: center;
        font-size: 1em;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    section {
        padding: 60px 15px;
    }

    .menu-category ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-category ul li::before {
        content: "• ";
        color: #ee5f06;
        margin-right: 5px;
    }
}



/* شاشات صغيرة جدًا */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .welcome-content h1 {
        font-size: 1.7em;
    }

    .welcome-content p {
        font-size: 1em;
    }

    .menu-table {
        font-size: 0.8em;
    }
}
هذا كود css