/* تحسينات إضافية للموقع */
@import url('logo_style.css');

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

header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* تنسيق معرض الصور */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* تنسيق قسم بيت الضيافة */
#guesthouse {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.guesthouse-info {
    margin-top: 20px;
}

.guesthouse-info h3 {
    color: #007bff;
    margin-top: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.guesthouse-info ul {
    padding-left: 20px;
}

.guesthouse-info ul li {
    margin-bottom: 8px;
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .image-gallery img {
        height: 150px;
    }
    
    #guesthouse {
        padding: 15px;
    }
}

/* Logo full width styling */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* تحسين عرض الشعار على الأجهزة المحمولة */
@media (max-width: 768px) {
    .logo-img {
        max-width: 300px;
    }
}


/* تنسيق معرض صور الإرشاد السياحي */
.guide-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust minmax for desired size */
    gap: 10px; /* Adjust gap as needed */
    margin-top: 15px; /* Add some space above the gallery */
    margin-bottom: 15px; /* Add some space below the gallery */
}

.guide-gallery img {
    width: 100%;
    height: 120px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add subtle shadow */
}

.guide-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments for guide gallery */
@media (max-width: 768px) {
    .guide-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .guide-gallery img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .guide-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    .guide-gallery img {
        height: 80px;
    }
}



/* تنسيق معرض صور بيت الضيافة */
.guesthouse-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust minmax for desired size */
    gap: 15px; /* Adjust gap as needed */
    margin-top: 20px; /* Add some space above the gallery */
    margin-bottom: 20px; /* Add some space below the gallery */
}

.guesthouse-gallery img {
    width: 100%;
    height: 150px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add subtle shadow */
}

.guesthouse-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments for guesthouse gallery */
@media (max-width: 768px) {
    .guesthouse-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .guesthouse-gallery img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .guesthouse-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .guesthouse-gallery img {
        height: 100px;
    }
}

