/* فونت اصلی */
body {
    background-color: #f8f5f2; /* پس زمینه روشن */
    color: #333; /* متن تیره */
}
.navbar, footer {
    background: linear-gradient(90deg,#006994,#228b22,#8b5e3c);
}
.nav-link {
    color: #f8f5f2 !important; /* سفید روی هدر تیره */
}


/* هدر */

.navbar {
    background: linear-gradient(90deg, #4a3f35, #6d5c4f);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.navbar-brand img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-left: 8px;
    border: 2px solid #fff;
}
.navbar-brand {
    font-size: 1.3rem;
    color: #f8f5f2 !important;
}
.nav-link {
    color: #f8f5f2 !important;
    margin-left: 10px;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #ffd54f !important;
}

/* فوتر */
footer {
    background: linear-gradient(90deg, #4a3f35, #6d5c4f);
    color: #f8f5f2;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
footer a {
    color: #f8f5f2;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #ffd54f;
}

/* دکمه ها */
.btn-custom {
    background-color: #4a3f35;
    color: #fff;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
.btn-custom:hover {
    background-color: #6d5c4f;
}

/* کارت ها */
.card {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
