/* الخط والالوان الاساسية */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8f0;
    color: #333;
    text-align: center;
}

/* النافبار */
header {
    background-color: #d32f2f;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h2 {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

/* قسم الهيرو */
.hero {
    background-image: url('pizza.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    position: relative;
}

/* طبقة غامقة فوق الصورة */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
}

.hero button:hover {
    background-color: #b71c1c;
}
/* قسم المنيو */
.menu {
    padding: 60px 20px;
}

.menu h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #d32f2f;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border: 2px solid #ff9800;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card h3 {
    color: #d32f2f;
    margin-top: 0;
}

.card span {
    font-weight: bold;
    font-size: 20px;
    color: #333;
}
/* الفوتر */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

footer h3 {
    color: #ff9800;
}
