html {
    scroll-behavior: smooth; /* السطر السحري */
}
body {
    overflow-x: hidden; /* السطر ده بيمنع أي حاجة تخرج بره عرض الشاشة بالعرض */

}
header {
    background-color: white; /* البرواز الأبيض اللي طلبته */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* ظل خفيف عشان يبان احترافي */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px; /* مقاس اللوجو */
}

.nav-list {
    display: flex; /* بيرص الكلام جنب بعض في اللابتوب */
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: 0.3s;
    font-family: 'Josefin Sans', sans-serif;
}

.nav-list a:hover {
    color: #FFD1DC; /* بيقلب لبني لما تقرب منه */
}

/* زرار الأوردر الملون */
.btn-nav {
    background-color: #FFD1DC; /* بيبي بينك */
    padding: 10px 20px;
    border-radius: 25px;
    color: black !important;
}

/* --- شغل الموبايل (الـ 3 شرط) --- */
.menu-toggle {
    display: none; /* مخفي في اللابتوب */
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: black; /* لون الشرط لبني */
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* يظهر بس في الموبايل */
    }

    .nav-list {
        display: none; /* بنخفي القائمة العادية عشان تفتح بالشرط (محتاجة JS بسيط) */
    }
}


















/* --- Mirror Hero with Background Colors --- */
.mirror-hero-style {
    height: 85vh; /* طول مناسب جداً للابتوب والموبايل */
    width: 100%;
    overflow: hidden;
}

.container-full {
    display: flex;
    height: 100%;
}

.split-side {
    flex: 1;
    display: flex;
    align-items: center; /* بيخلي الصورة في نص الطول */
    justify-content: center; /* بيخلي الصورة في نص العرض */
    padding: 40px; /* دي المسافة اللي بتخلي اللون يظهر حوالين الصورة */
}

/* الألوان اللي طلبتها */
.blue-bg { background-color: #D9F2F2; }
.pink-bg { background-color: #FFD1DC; }

.image-wrapper {
    width: 100%;
    height: 100%;
    max-width: 500px; /* عشان الصورة متكبرش بزيادة وتغطي اللون */
    max-height: 600px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* ظل خفيف يخلي الصورة "بارزة" */
    border-radius: 20px; /* دوران خفيف للصورة عشان الشياكة */
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* السطر ده بيخلي الصورة تظهر كاملة جوه البرواز بدون قص */
    border-radius: 10px;
}

/* --- ضبط الموبايل (عشان يفضلوا جنب بعض) --- */
@media (max-width: 768px) {
    .mirror-hero-style {
        height: 50vh; /* طول أقل في الموبايل */
    }
    .split-side {
        padding: 15px; /* تقليل المسافة في الموبايل عشان الشاشة ضيقة */
    }
    .image-wrapper {
        border-radius: 10px;
        padding: 5px;
    }
}












/* --- About Section Styling --- */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-card {
    display: flex; /* السطر ده اللي بيخليهم جنب بعض في اللابتوب */
    align-items: flex-start;
    background: #FFD1DC;

    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(185, 229, 232, 0.3); /* برواز لبني خفيف جداً */
}

/* تنسيق الصورة */
.about-image {
    flex: 1;
    position: relative;
    height: 650px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* عشان الصورة متتمطش وتفضل محتفظة بشكلها */
}

/* تنسيق الكلام */
.about-text {
    flex: 1.2;
    padding: 60px;
    font-family: 'Special Elite', system-ui; /* اسم الخط الجديد */
}

.subtitle {
    color: var(--baby-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.8rem;
    margin: 15px 0;
    color: black;
    font-family: 'Josefin Sans', sans-serif;
}

.about-text h2 span {
    color: var(--baby-blue);
    font-family: 'Josefin Sans', sans-serif;
}

.about-text p {
    font-family: 'La Belle Aurore', Courier;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    letter-spacing: 0px; /* الخط ده مش محتاج مسافات حروف */
    text-transform: none; /* اتأكد إنها none عشان ميبقاش كله حروف كبيرة */
}

.personal-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    background: var(--baby-blue);
    padding: 10px 20px;
    border-radius: 10px;
    color: black;
    font-size: 0.9rem;
}

.btn-about {
    text-decoration: none;
    padding: 15px 40px;
    border: 2px solid var(--baby-pink);
    color: var(--baby-pink);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-about:hover {
    background: var(--baby-pink);
    color: white;
}

/* --- السحر بتاع الموبايل --- */
@media (max-width: 992px) {
    .about-card {
        flex-direction: column; /* يترصوا تحت بعض في الموبايل والتابلت */
    }

    .about-image {
        width: 100%;
        height: 350px; /* تقليل طول الصورة في الموبايل */
    }

    .about-text {
        padding: 40px 20px;
        text-align: center;
    }

    .personal-info {
        flex-direction: column;
        align-items: center;
    }
}














@media (max-width: 992px) {
    /* 1. منع الهبد في عرض الشاشة */
    body { overflow-x: hidden !important; }

    /* 2. القائمة: لازم تكون بيضاء وتملى الشاشة وتظهر فوق كل حاجة */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%; /* مستخبية بره اليمين */
        width: 100%;
        height: 100vh;
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999; /* عشان تظهر فوق أي صورة أو نص */
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* 3. الكلاس اللي بيظهرها (بيتضاف بالجافا سكريبت) */
    .nav-list.active {
        right: 0 !important;
    }

    /* 4. شكل اللينكات: شياكة وهدوء */
    .nav-list li a {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 1.8rem;
        color: #333 !important;
        text-decoration: none;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    /* 5. زرار الـ X (حركة الـ 3 شرط) */
    .menu-toggle {
        z-index: 10000; /* لازم يكون فوق القائمة البيضاء */
        position: relative;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px auto;
        background-color: #333;
        transition: 0.3s ease-in-out;
    }

    /* تحويل الـ 3 شرط لـ X */
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}


















/* الحاوية الكبيرة للصور */
.gallery-container {
    display: grid; /* نظام المربعات */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* السطر السحري ده بيرص الصور بالعرض لوحده */
    gap: 15px; /* المسافة بين كل صورة والتانية */
    padding: 20px;
}

/* المربع اللي جواه كل صورة */
.pic {
    width: 100%;
    height: 300px; /* وحدنا الطول عشان ميبقاش فيه صورة طويلة وصورة قصيرة */
    overflow: hidden; /* عشان لو الصورة كبيرة متخرجش بره المربع */
    border-radius: 8px; /* شياكة في الحواف */
}

/* الصورة نفسها جوه المربع */
.pic img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* السطر ده بيخلي الصورة تملا المربع "بالعرض والطول" من غير ما تتمط */
    transition: 0.4s; /* عشان لما تلمسها بالماوس تتحرك بالراحة */
}

/* حركة احترافية لما العميل يلمس الصورة */
.pic:hover img {
    transform: scale(1.1); /* زووم خفيف بيخلي الموقع حي */
}




.gallery-header {
    text-align: center; /* سنترة الكلام */
    margin-bottom: 40px; /* مسافة بين العنوان والكروت */
    padding: 0 20px;
    background-color: #D9F2F2;
}

.gallery-header h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 5px; /* مسافات حروف فخمة */
    color: black;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery-header p {
    font-family: 'Josefin Sans', sans-serif;
    color: black; /* نفس اللون البينك بتاعنا */
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 300;
}















/* ستايل البرواز */
.lightbox {
    display: none; /* مستخفي في العادي */
    position: fixed;
    z-index: 20000; /* أعلى من أي حاجة */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* خلفية سوداء فخمة */
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 60%; /* قللنا النسبة عشان نسيب مساحة لعلامة الـ X */
    max-height: 60vh; /* vh يعني ارتفاع الشاشة، كدة الصورة مش هتطول بزيادة */
    border: 3px solid #fff; /* برواز أبيض شيك يحدد الصورة */
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    object-fit: contain; /* بيحافظ على أبعاد الصورة مهما كان مقاسها */
}

/* علامة القفل (X) */
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}




















.reviews-section {
   text-align: center; /* سنترة الكلام */
    margin-bottom: 40px; /* مسافة بين العنوان والكروت */
    padding: 0 20px;
    background-color: #D9F2F2;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* عشان ينزلوا تحت بعض في الموبايل */
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #FFD1DC;
    padding: 15 px 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* ضل خفيف جداً شيك */
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px); /* حركة رفع الكارت لما تلمسه */
}

.stars {
    color: black; /* نفس اللون البينك بتاعنا */
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card h4 {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: black;
    text-transform: uppercase;
}

/* للموبايل: نخلي الكروت تاخد العرض كله */
@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }
}



















.main-footer {
    background-color: #1a1a1a; /* أسود فخم */
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Josefin Sans', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-about h3, .footer-links h4, .footer-contact h4 {
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #ffb6c1; /* اللون البينك الموحد */
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #bbb;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .contact-item a, .footer-social a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links ul li a:hover, .contact-item a:hover, .footer-social a:hover {
    color: #ffb6c1;
    padding-left: 5px; /* حركة شياكة عند الـ hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #777;
    letter-spacing: 1px;
}

/* تظبيط الموبايل */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}




/* تنسيق صف الأيقونات */
.contact-icons {
    display: flex;
    gap: 20px; /* المسافة بين الأيقونات */
    justify-content: flex-start; /* أو center لو عايزهم في النص في الموبايل */
}

/* تنسيق الأيقونة الواحدة */
.icon-link {
    font-size: 24px; /* كبرنا المقاس عشان تبان شيك */
    color: #fff;
    transition: 0.4s ease;
    display: inline-block;
}

/* حركة الـ Hover باللون البينك بتاعنا */
.icon-link:hover {
    color: #ffb6c1;
    transform: translateY(-5px); /* بترفع الأيقونة لفوق شوية */
}

/* للموبايل: نخليهم في النص بالظبط */
@media (max-width: 768px) {
    .contact-icons {
        justify-content: center;
        margin-top: 10px;
    }
}














.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 20002; /* لازم رقم عالي عشان يظهر فوق الصورة */
    border-radius: 5px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* عشان الـ X متداريش بالأسهم */
.close-lightbox {
    z-index: 20003;
}
























.lang-switch {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    margin-left: 15px;
}

.lang-switch a {
    text-decoration: none;
    color: #888;
    padding: 2px 5px;
    transition: 0.3s;
}

.lang-switch a.active {
    color: #ffb6c1; /* اللون البينك بتاعنا */
    font-weight: bold;
}

.lang-switch a:hover {
    color: #ffb6c1;
}




















/* تنسيق مكان الزرار */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

/* القائمة المخفية */
.dropdown-content {
    display: none;
    position: absolute;
    
    /* التعديل هنا عشان السنترة */
    left: 50%;
    transform: translateX(-50%);
    
    top: 100%; 
    background-color: #D9F2F2;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
    padding: 5px 0;
}
/* لما تفتح */
.dropdown-content.show {
    display: block !important;
}

/* شكل اللينكات جوه القائمة */
.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.dropdown-content a strong { display: block; font-size: 14px; }
.dropdown-content a span { font-size: 11px; color: #888; }
.dropdown-content a:hover { background-color: #f1f1f1; }



















/* الكود ده هيتنفذ فقط على الشاشات الكبيرة (اللاب توب) */
@media (min-width: 992px) {
    .gallery-container {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px; /* مسافة بين الصور بالعرض */
    }

    .gallery-container .pic {
        flex: 1 1 22%; /* يخلي 4 صور جمب بعض */
        max-width: 24%;
        margin-bottom: 20px;
    }

    .gallery-container .pic img {
        width: 100%;
        height: auto;
    }
}


















