/*clean code*/

/*Wrote this code || yahia jowaid*/

body {
    background-color: #ffb120;
}


/* ✅ تحسين شريط التنقل */
.navbar {
    transition:  0.3s ease-in-out;
    padding: 15px 0;

}


/*تنسقات navbar*/

/* ✅ تحسين لون الروابط وتكبيرها */
.navbar-nav .nav-link {
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    padding: 10px 15px;
    position: relative;
    
}

.navbar-nav .nav-link:hover {
    color: #FFA600 !;
}





/* ✅ استدعاء خط Google Fonts */
.navbar, .navbar-nav .nav-link {
    font-family: 'Tajawal', sans-serif;
}

/* ✅ تحسين حجم الخط */
.navbar-nav .nav-link {
    font-weight: 700;  /* خط عريض */
    font-size: 180px;   /* تكبير الخط */
}



/* Sidebar */
.sidebar {
    width: 250px;
    height: 45vh;
    background-color: #242424;
    color: white;
    position: fixed;
    top: 0;
    right: -250px;
    /* مخفية بالبداية */
    transition: right 0.3s ease;
    z-index: 1050;
    padding-top: 60px;
    border-radius: 10px;
    background-color: #303030;
    
}

.sidebar.show {
    right: 0;
}

.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    transition: 0.3s;
    text-align: end;
    margin-top: 10px;
    background-color: #d38900;
gap: 10px;
}

.sidebar a:hover {
    background-color: #a1a1a1;
}

/*  محتوى الصفحة */
.content {
    padding: 20px;
}

.toggle-btn {
    position: fixed;
    top: 5px;
    right: 15px;
    /* المسافة من الطرف الأيمن */
    z-index: 1100;
    background-color: #fdae1b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    
}



#hero {
    height: 80vh;
    background-color: #242424;
    
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: right;
    padding: 0 5%;
}

h1 {
    font-family: "Reem Kufi", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*spsn ديــــــــوان*/
#stylediwan {
    color: rgb(201, 137, 0);
}

/*القسم الثاني من الصفحة (كاردات ميزات المتجر)*/

.feature-card {
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #858076;
    color: aliceblue;
}

/* ✅ تنسيق النصوص داخل الكروت */
.feature-card .card-title {
    color: #ffae00;
    /* زهري غامق */
    font-weight: bold;
}

#como {
    color: aliceblue;
    background-color: #575757;
    padding: 10px;
    display: inline;
    border-radius: 20px;
    padding-top: 0;
}

#spanbody{
    color: #ffa600;
}

/**********footer*********/

.footer {
    background: #222;
    color: #fff;
}

.footer form .form-control::placeholder {
    color: #bbb;
}
/*ايقونات التواصل الاجتماعي*/
#tedd {
    background-color: #ffa600e1;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 10px;
}

#btnco {
    color: #222;
    background-color: #d38900;
}

#card {
    border: 2px solid rgb(201, 137, 0);
    background: none;
    color: #fff;
    margin-left: 30px;
    margin-right: 30px;
    height: 150px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
}








