﻿/* إعدادات أساسية */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    background-color: #f8f9fa; /* لون خلفية فاتح */
    color: #6c757d; /* لون النص الافتراضي */
}

/* تخصيص الأزرار */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* تخصيص شريط التنقل */
.navbar {
    background-color: #800000; /* اللون العنابي */
    border-bottom: 2px groove #fff !important;
}

.navbar-brand,
.nav-link {
    color: #fff !important; /* اللون الأبيض */
}

    .navbar-brand:hover,
    .nav-link:hover {
        color: #dc3545 !important; /* اللون الأحمر */
    }

/* تخصيص الفوتر */
footer {
    background-color: #800000; /* اللون العنابي */
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

    footer a {
        color: #dc3545;
    }

        footer a:hover {
            color: #fff;
        }

/* قسم البطل */
.hero {
    background-color: #800000; /* اللون العنابي */
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

/* تخصيص معرض الصور */
.carousel-item img {
    height: 500px; /* ارتفاع الصور */
    object-fit: cover; /* ملاءمة الصور */
    width: 100%; /* ضمان ملء العرض */
}

.carousel-caption {
    font-family: "Tajawal", sans-serif;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6); /* خلفية شفافة للنص */
    padding: 10px;
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    filter: invert(1); /* تغيير اللون للأبيض */
}

/* تحسين تجربة المستخدم */
.carousel {
    overflow: hidden;
}

.carousel-indicators [data-bs-target] {
    background-color: #800000; /* تخصيص لون النقاط */
}

.carousel-indicators .active {
    background-color: #dc3545; /* لون النقطة النشطة */
}
