* {
    box-sizing: border-box;
    margin: 0;
    border: 0;
}
body {
    background-color: #000000;
    color: #ffffff;
    direction: rtl;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    width: 100%;
  margin: 0;
    padding: 0;

}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #efe7e7;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
nav a {
    text-decoration: none;
    color: #131313;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}
nav a:hover {
    color: #ff6600;
}

section {
    padding: 20px;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}

.image-container img {
    width: 450px;
    height: auto;    
    object-fit: cover;
    border-radius: 12px;
   transition: transform 0.3s, ease;
}
.image-container img:hover {
    transform: scale(1.05);
}

.likes {
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #0f0f0f;
} 

.image-card {
background-color: #f7f3f3;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
overflow: hidden;
margin: 20px auto;
font-family: Arial, sans-serif;
text-align: center;
display: block;
}
.interaction-box {
    display: flex;
    justify-content: center;
    padding: 15px;
    align-items: center;
    gap: 15px;
}
.interaction-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f8f3f3;
}
/* ترتيب العناصر داخل الصندوق بشكل أفقي ومتناسق */
.reactions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px; /* المسافة بين كل إيموجي والآخر */
    margin-top: 15px;
}
/* تنسيق شكل الأزرار الشفافة */
.reaction-btn {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
    padding: 5px !important;
    display: inline-block !important;
}
.reaction-btn:hover {
    background-color: #eae2e2;
    transform: scale(1.3);
}
/* تنسيق عداد الأرقام بجانب الإيموجي */
.count {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #555 !important;
    display: inline-block !important;
}
.video-container img {
    width: 100%;          /* ملء العرض بالكامل */
    height: 70vh;         /* ملء الارتفاع بالكامل */
    object-fit: cover;
    display: block;    /* تجعل الفيديو يملأ المساحة المتاحة بالكامل مع الحفاظ على الأبعاد */
    margin: 0 auto;   /* توسيط الفيديو داخل الحاوية */
    /* أو يمكنك استخدام الإعداد التالي إذا كنت لا تريد قص أي أجزاء من الفيديو */
    /* object-fit: contain; */ 
}

/* تأكد أن الحاوية السوداء الخارجية تأخذ أبعاداً متناسقة */
.video-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    max-width: 100%; 
    justify-content: center;
    display: flex;
    margin: 0 auto;
    overflow: hidden; /* لمنع أي محتوى من الخروج عن الحاوية */
    background-color: #000000; /* خلفية سوداء */
}

.header img, .header-bunner img, section >img {
    height: auto;
    object-fit: cover;
}
.main-larg-img {
    width: 100%;
    max-width: 450%;
    height: auto;
    display: block;
    margin: 0 auto;
}
    
    @media (max-width: 768px) {
.header {
    flex-direction:  column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.booking-form {
    padding: 15px;
}
    }
nav a {
    font-size: 14px;
}
/* تنسيق هيكل الفورم وتوسطه في الشاشة */
.booking-form {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #111111; /* خلفية داكنة تميز الفورم عن الصفحة */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222222;
    text-align: right; /* محاذاة النص لليمين ليناسب اللغة العربية */
    direction: rtl;    /* توجيه العناصر من اليمين إلى اليسار */
}

/* تنسيق المجموعات والحقول */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 10px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* تأثير عند الضغط على حقول الإدخال */
.form-group input:focus, 
.form-group textarea:focus {
    border-color: #ffcc00; /* تغيير الإطار للون ذهبي جذاب عند الكتابة */
    outline: none;
}

/* تنسيق زر الإرسال */
.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #ffcc00; /* زر بلون ذهبي واضح */
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #e5b800;
    transform: scale(1.02); /* تأثير تكبير خفيف عند تمرير الماوس */
}
/* 1. الشاشات الصغيرة جداً (الهواتف المحمولة عمودياً) */
@media (max-width: 480px) {
    /* كود مخصص للهواتف */
}

/* 2. الشاشات المتوسطة (الأجهزة اللوحية / التابلت) */
@media (min-width: 481px) and (max-width: 768px) {
    /* كود مخصص للتابلت */
}

/* 3. الشاشات الكبيرة (أجهزة الحواسب المحمولة والمكتبية) */
@media (min-width: 769px) {
    /* كود مخصص للحاسوب */
}