@import url(../css/fonts.min.css);
body, html {
    font-family: 'Tajawal', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fbe7d3;
    color: #e17602;
    
}
/* تحسين المظهر العام */
h1, h2, h3, h4, h5, h6 {
    color: #e17602; /* استخدم نفس اللون الأساسي للعناوين */
    margin: 0 0 15px;
    line-height: 1.3;
}

p {
    margin: 0 0 15px;
    line-height: 1.7;
}

/* روابط النص */
a {
    color: #e17602;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover, a:focus {
    color: #bf5a00; /* لون أغمق قليلاً عند التمرير أو التركيز */
}


/*--------------------Start-Searchbar-------------*/

.woocommerce-product-search .form-control {
    background-color: #f4a366;
    color: #e17602;
}

.input-group-text.bg-orange-lighter {
    background-color: #fbe7d3;
    color: #e17602;
    cursor: pointer;
}

.input-group-text.bg-orange-lighter:hover .fas.fa-microphone {
    transform: scale(1.2);
    transition: transform 0.2s ease-in-out;
}

.btn.btn-orange-lighter {
    background-color: #e17602;
    color: #fff;
    cursor: pointer;
}

.btn.btn-orange-lighter:hover .fas.fa-search {
    transform: scale(1.2);
    transition: transform 0.2s ease-in-out;
}

.form-control.form-control-no-focus {
    background-color: #fbe7d3;
    color: #e17602;
}

.form-control.form-control-no-focus:focus {
    border-color: #e17602;
    box-shadow: 0 0 0 0.2rem rgba(225, 118, 2, 0.25);
}

.fas.fa-search {
    color: #fff;
    transition: transform 0.2s ease-in-out;
}

.fas.fa-microphone {
    color: #e17602;
    transition: transform 0.2s ease-in-out;
}

/*--------------------End-Searchbar-------------*/
/* أسلوب الهيدر الأساسي *//* أسلوب الهيدر الأساسي */
.header-main {
    z-index: 1001; /* يجب أن يكون أكبر من الهيرو سكشن */
    position: relative; /* يجب تعيين position relative أو absolute لكي يعمل z-index */
    margin-top: 25px;
}
.nav-link {
    font-size: 24px;
    font-weight: bold; /* تغيير font-style إلى font-weight لجعل النص غامقًا */
    padding-right: 25px;
}


/* أسلوب الهيرو سكشن */
.hero-section {
    margin-top: -52px;
    background: url('../images/hero3.webp') no-repeat center center;
    background-size: cover;
    padding: 300px 20px; /* حشوة مناسبة للشاشات الصغيرة */
    text-align: center;
    color: white;
    
}

.hero-section .hero-content {
    max-width: 100%; /* ضمان تناسب المحتوى مع العرض الكامل للشاشة */
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.5em; /* تقليل حجم الخط على الشاشات الصغيرة */
    margin-bottom: 20px;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2em; /* تقليل حجم النص */
    margin-bottom: 20px;
    text-shadow: -1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-primary {
    padding: 10px 20px; /* تقليل حجم الزر على الشاشات الصغيرة */
    font-size: 1.2em;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3;
}

/* تحسينات إضافية للشاشات الصغيرة */
@media (max-width: 480px) {
    .hero-section {
        padding: 150px 10px; /* تقليل الحشو بشكل أكبر للشاشات الأصغر */
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .hero-section .btn-primary {
        padding: 8px 15px;
        font-size: 1em;
    }
}
/* إعدادات الستارة للشاشات الصغيرة */
@media (max-width: 768px) {
    /* تعطيل التمرير على الصفحة الأساسية عندما تكون الستارة مفتوحة */
    body.no-scroll {
        overflow: hidden;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(40px); /* تأثير البلر */
        transform: translateX(-100%);
        transition: transform 0.12s ease-in-out;
        z-index: 1050; /* تأكد من أن الستارة فوق كل شيء */
        overflow: hidden; /* إيقاف شريط التمرير داخل الستارة */
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        padding-top: 60px;
        align-items: center; /* لتوسيط العناصر في القائمة الجانبية */
    }

    .navbar-nav .nav-item {
        right: 0px;
    }

    .navbar-brand {
        position: absolute;
        right: 25%;
        transform: translateX(50%);
        margin-right: 0;
        margin-left: 0;
        top: 20px;
    }

    /* إظهار زر "X" على الشاشات الصغيرة */
    .close-btn {
        display: block; /* إظهار الزر فقط على الشاشات الصغيرة */
        position: absolute;
        left: 25px;
        background: none;
        border: none;
        font-size: 2rem;
        color: #e17602;
        cursor: pointer;
        z-index: 1100;
    }

    .close-btn:hover {
        color: gray; /* تغيير اللون عند التحويم */
    }
}
@media (max-width: 768px){
     /* إظهار زر "X" على الشاشات الصغيرة */
    .close-btn {
        display: block; /* إظهار الزر فقط على الشاشات الصغيرة */
        position: absolute;
        left: 64px;
        background: none;
        border: none;
        font-size: 2rem;
        color: #e17602;
        cursor: pointer;
        z-index: 1100;
    }
    
}


.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}


