/* تنظیمات کلی صفحه */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: center;
    background-color: #f0f8ff; /* پس‌زمینه آبی روشن */
    color: #333;
}

/* استایل هدر */
header {
    background-color: #0077b6;
    color: white;
    padding: 20px;
    font-size: 1.5em;
}

/* استایل گالری (نمونه کارها) */
.gallery {
    padding: 20px;
}

.gallery h2 {
    color: #0077b6;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap; /* تصاویر به صورت چند ردیفی نمایش داده شوند */
    justify-content: center;
    gap: 15px;
}

.gallery-container img {
    width: 100%; /* عرض تصویر را به 100% تنظیم می‌کند */
    max-width: 200px; /* حداکثر عرض هر تصویر */
    height: auto; /* نسبت ابعاد حفظ شود */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.1);
}

/* استایل بخش رزرو وقت */
.reservation {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reservation h2 {
    color: #0077b6;
}

/* استایل فرم رزرو */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: bold;
    text-align: right;
    display: block;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    background-color: #0077b6;
    color: white;
    border: none;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #005f8a;
}

/* تنظیمات ریسپانسیو برای موبایل */
@media (max-width: 600px) {
    .gallery-container img {
        max-width: 100%; /* در موبایل، تصاویر تمام عرض شوند */
    }
    
    .reservation {
        width: 100%;
    }
}