/* تنسيق عام */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* شريط التنقل */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px; /* تصغير الارتفاع */
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px; /* تقليل حجم البار */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 15px; /* تباعد الأيقونات */
}

.navbar-icons i {
    font-size: 18px; /* حجم الأيقونات */
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar-icons i:hover {
    color: #555;
}

/* تحسين قسم الهيرو */
.hero-section {
    height: 100vh;
    background: url('/images/a.jpeg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* تحسين انتقال شعار Carmaffello */
.hero-logo {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* تحسين حركة النصوص */
.hero-content h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.hero-button {
    background-color: black;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

/* تحسين قسم المنتجات */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.product-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* تحسين الفوتر */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
}
