/* ============================================================
   1. الخطوط العامة للموقع (Cormorant Garamond)
   ============================================================ */
html, body, p, a, span, div, button {
    font-family: 'Cormorant Garamond', serif !important;
}

h1, h2, h3, h4, h5, h6, .display-1, .navbar-brand {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

/* ============================================================
   2. تنسيق السلايدر العلوي (المكان والخطوط)
   ============================================================ */

/* دفع النص لليسار دائماً (لابتوب وجوال) */
.carousel-caption {
    right: auto !important; 
    left: 0 !important;      
    text-align: left !important;
    align-items: flex-start !important; /* محاذاة كل شيء لليسار */
    padding-left: 8% !important; 
    width: 60% !important;  
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* حجم خط عنوان السلايدر الكبير */
.carousel-caption h1 {
    font-size: clamp(2rem, 6vw, 4.5rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 15px !important;
}

/* تنسيق الأزرار */
.btn {
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   3. تنسيق الجوال (إصلاح الارتفاع والمحاذاة)
   ============================================================ */
@media (max-width: 768px) {
    
    /* أ- تصغير ارتفاع السلايدر في الجوال */
    #header-carousel, 
    #header-carousel .carousel-inner, 
    #header-carousel .carousel-item {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }

    #header-carousel .carousel-item img {
        height: 100% !important;
        object-fit: cover !important;
    }

    /* ب- ضبط النص لليسار في الجوال أيضاً */
    .carousel-caption {
        width: 85% !important;
        padding-left: 20px !important;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent) !important; /* تظليل خفيف لبروز النص */
        align-items: flex-start !important; 
        text-align: left !important;
    }

    .carousel-caption h1 {
        font-size: 1.8rem !important;
    }

    .carousel-caption p {
        font-size: 0.9rem !important;
        text-align: left !important;
        margin-bottom: 15px !important;
    }

    /* ج- إزالة أي توسيط إجباري من ملفات أخرى */
    .carousel-caption .title, 
    .carousel-caption .text-center {
        text-align: left !important;
        margin: 0 !important;
    }
}

/* ============================================================
   4. بانر التأثير السفلي (Impact Banner)
   ============================================================ */
.impact-banner-wrapper {
    width: 95%;
    max-width: 1200px;
    background-color: #f0f7fd;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 60px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
}

.impact-banner-text { width: 100%; text-align: right; direction: rtl; }
.impact-banner-text h1 { color: #661033; font-size: clamp(1.8rem, 5vw, 2.8rem); z-index: 2; position: relative; }
.impact-shape-top { position: absolute; top: -60px; left: -60px; width: 140px; height: 140px; background-color: #661033; border-radius: 50%; z-index: 1; }
.impact-shape-bottom-ring { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; border: 20px solid #661033; border-radius: 50%; z-index: 1; opacity: 0.8; }

@media (max-width: 768px) {
    .impact-banner-wrapper { padding: 30px 15px !important; }
}
/* تصغير الشعار في الجوال فقط */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px !important; /* تقليل الارتفاع من 60px إلى 40px */
        margin-right: 5px !important;
    }

    .navbar-brand h2 {
        font-size: 1.2rem !important; /* تصغير حجم نص YAFA DENT بجانب الشعار ليتناسب معه */
    }
}