/* التنسيق العام */
:root {
    --main-red: #d9232e;
    --light-red: #e74c3c;
    --dark-red: #a91a22;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --white: #fff;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

/* شريط التاريخ */
.date-bar {
    background-color: var(--main-red);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 15px;
    font-weight: 500;
}

.hijri-date, .gregorian-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* الشعارات */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 65px;
}

.vision-logo {
    height: 55px;
}

/* شريط التنقل */
.navbar {
    background-color: var(--main-red);
    padding: 0;
    position: relative;
    z-index: 10;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar li {
    position: relative;
}

.navbar a {
    color: var(--white);
    text-decoration: none;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.navbar a:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
}

.navbar a i {
    font-size: 18px;
}

/* سلايد شو */
.slider-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background-color: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-red);
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

/* الدائرة المميزة */
.special-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: -150px auto 0;
    z-index: 20;
}

.circle-top {
    width: 100%;
    height: 40%;
    background-color: transparent;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border: 15px solid var(--medium-gray);
    border-bottom: none;
    box-sizing: border-box;
}

.circle-bottom {
    width: 100%;
    height: 60%;
    background-color: var(--main-red);
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    border: 15px solid var(--medium-gray);
    border-top: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.circle-logo {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid var(--medium-gray);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.circle-logo img {
    width: 80%;
    height: auto;
}

.circle-sections {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    display: flex;
}

.circle-sections .section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.circle-sections .section:last-child {
    border-right: none;
}

.circle-sections .section i {
    font-size: 24px;
    margin-bottom: 8px;
}

.circle-sections .section span {
    font-size: 14px;
    font-weight: 600;
}

.circle-sections .section:hover {
    background-color: var(--dark-red);
    transform: translateY(-5px);
}

/* الأزرار الرئيسية */
.main-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px auto 40px;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 17px;
    color: var(--white);
    min-width: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn i {
    font-size: 20px;
}

.btn-emergency {
    background-color: var(--main-red);
}

.btn-emergency:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-emergency span {
    font-weight: 700;
    font-size: 22px;
}

.btn-volunteer {
    background-color: #27ae60;
}

.btn-volunteer:hover {
    background-color: #219653;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-donation {
    background-color: #2980b9;
}

.btn-donation:hover {
    background-color: #2475ab;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-training {
    background-color: #f39c12;
}

.btn-training:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}