/* 1. استيراد الخطوط المطلوبة من Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&family=Montserrat:wght@300;400&display=swap');

/* تنسيق الحاوية الرئيسية */
.hero-container {
    display: flex;
    max-width: 1300px;
    margin: 60px auto;
    padding: 20px 40px;
    align-items: center;
    gap: 80px;
    background-color: transparent;
}

/* تنسيق الجانب الأيسر (النصوص) */
.content-side {
    flex: 1.1;
}

/* تنسيق العنوان الرئيسي (نفس الخط Serif الفخم الموجود بالتصميم) */
.main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; /* حجم خط كبير ومطابق */
    font-weight: 400;
    line-height: 1.25;
    color: #2b2b2b;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* كلمة luxury مع تأثير الخط السفلي عند الـ Hover */
.luxury-text {
    color: #c5a880;
    font-style: italic;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.luxury-text::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1.5px;
    bottom: 2px;
    left: 0;
    background-color: #c5a880;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.luxury-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* تنسيق الفقرة النصية (خط ناعم وعصري خفيف) */
.description-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #6c6c6c;
    text-align: left;
    font-weight: 300;
    max-width: 95%;
}


/* 2. تنسيق الجانب الأيمن وتأثير الـ Hover على الصورة */
.image-side {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    overflow: hidden; /* لمنع خروج الصورة عن الحواف عند تكبيرها */
    border-radius: 16px; /* الحواف المنحنية تكون على الحاوية */
}

.image-side img {
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease; /* سرعة ونعومة حركة التكبير */
}

/* تكبير الصورة بـ نسبة 7% بسلاسة عند مرور الماوس */
.image-side:hover img {
    transform: scale(1.07);
}


/* ضبط التجاوب للشاشات الصغيرة */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
        gap: 40px;
    }
    
    .main-heading {
        font-size: 42px;
    }
    
    .description-text {
        text-align: center;
        max-width: 100%;
    }
    
    .image-side {
        justify-content: center;
    }
}