/* about_championship.css */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    direction: rtl;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ebebeb;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #a6872d;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1rem;
    color: #a6872d;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.gallery img {
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* تحسين العرض على الأجهزة المحمولة */
@media (max-width: 768px) {
    h1 {
        font-size: 1.3rem;
    }

    p, ul li {
        font-size: 1rem;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery img {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* button_styles.css */

/* تصميم الزر الأساسي */
.custom-btn {
    display: block; /* تحويل الزر إلى عنصر block لتوسيطه */
    padding: 15px; /* تعديل حجم البادينج ليكون مشابهًا للحقول */
    width: 100%; /* عرض الزر ليكون بعرض الحقول */
    max-width: 300px; /* نفس أقصى عرض للحقول */
    background-color: #47402c; /* لون الخلفية الأساسي */
    color: white; /* لون النص */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center; /* توسيط النص أفقياً */
    margin: 20px auto; /* توسيط الزر بإضافة margin:auto */
    cursor: pointer;
    line-height: 1.5; /* يساعد على توسيط النص عمودياً */
}

/* تأثير عند تمرير الماوس فوق الزر */
.custom-btn:hover {
    background-color: #a6872d; /* اللون عند التحويم */
}

/* تحسين العرض على الشاشات الصغيرة */
@media (max-width: 768px) {
    .custom-btn {
        width: 100%; /* ملء العرض على الشاشات الصغيرة */
        font-size: 1rem; /* حجم النص على الشاشات الصغيرة */
        padding: 12px;
    }
}
