/**
 * style.css
 * التنسيقات الرئيسية للموقع
 */

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: scale(1.02);
}

.btn-outline-secondary {
    border-radius: 50px;
    padding: 12px 30px;
}

.form-control, .form-select {
    border-radius: 50px;
    padding: 15px 20px;
    border: 2px solid #e1e5eb;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.15);
}

footer a {
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #fff !important;
}

.ad-container {
    background: #f8f9fa;
    border-radius: 1rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

/* تنسيق خاص للصفحات الثابتة */
.page-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}