﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    direction: rtl;
    text-align: right;
    unicode-bidi: isolate;
    font-family: 'Tahoma', sans-serif;
    font-variant-numeric: normal;
}

.arabic-numbers {
    font-family: 'Tahoma', sans-serif;
    unicode-bidi: bidi-override;
    direction: rtl;
}

.navbar-nav {
    flex-direction: row-reverse;
}

.navbar .nav-item {
    margin-left: 0;
    margin-right: 15px;
}

main {
    flex: 1; /* يدفع الفوتر للأسفل */
}


.MezanIcon1 {
    transition: all 0.2s linear;
    color: #e6a94f;
    font-size: 25px;
}

    .MezanIcon1:hover {
        color: #c38f43;
    }

.MezanIcon2 {
    transition: all 0.3s linear;
    font-size: 20px;
}

    .MezanIcon2:hover {
        color: #e6a94f;
    }

.nav-link {
    transition: all 0.2s linear;
}
.nav-link:hover {
    color: #e6a94f !important;
    transform: translate(-2px , -2px);
}

.sec1 .MezanIconSection {
    font-size: 80px;
}

.FooterLink a {
    transition: all 0.2s linear;
}

    .FooterLink a:hover {
        color: #e6a94f !important;
        transform: translate(-2px, -2px);
    }

.sec1 {
    background: linear-gradient(to right, #624411, #563b0b);
    color: #E1B97C;
}

.accordion-button {
    background-color: #E1B97C;
}

.search-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1);
    margin-bottom: 10px;
    border-radius: 50%;
}


.LoginBtn {
    background: #c38f43 !important; 
}

.btn {
    transition: all 0.3s linear;
    border : none ;
}

    .btn:hover {
        background: #e6a94f !important;
        color: #000 !important;
        transform: translate(-2px,-2px);
    }

.socialIcon i {
    transition: all 0.3s linear;
    font-size: 25px;
}

    .socialIcon i:hover {
        transform: translate(-3px,-3px);
        color: #e6a94f;
    }

.navbar-toggler{
    border: solid #a5a4b5 2px ;
}
#navbar-toggler-icondashed {
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

    #navbar-toggler-icondashed span,
    #navbar-toggler-icondashed::before,
    #navbar-toggler-icondashed::after {
        content: "";
        display: block;
        height: 3px;
        width: 100%;
        background-color: black;
        border-radius: 2px;
        position: absolute;
        transition: all 0.3s ease;
    }

    #navbar-toggler-icondashed::before {
        top: 0;
    }

    #navbar-toggler-icondashed::after {
        bottom: 0;
    }

    #navbar-toggler-icondashed span {
        top: 50%;
        transform: translateY(-50%);
    }

    #navbar-toggler-icondashed:hover span,
    #navbar-toggler-icondashed:hover::before,
    #navbar-toggler-icondashed:hover::after {
        background-color: #e6a94f; /* لون ذهبي عند المرور */
    }

.btn-custom {
    display: inline-block;
    border: none;
    border-radius: 6px;
    background-color: #E1B97C;
    text-align: center;
    padding: 7px 0;
    cursor: pointer;
    transition: all 0.3s linear;
    text-decoration: none;
    color: #fff;
}

    .btn-custom:hover {
        background-color: #d6a850;
        transform: translate(-2px, -2px);
    }