:root {
    --gold: #c9a657;
    --dark: #0a0a0a;
    --gray: #888;
}

body {
    background-color: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

.title {
color: var(--gray);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: center;
    display: block;      /* يخليه سطر كامل لوحده */
    text-align: center;  /* يسنتر النص نفسه في النص أفقياً */
    width: 50%;         /* يخلي الـ title ياخد العرض الكامل */
    margin: 40px auto 30px auto; /* auto من اليمين والشمال بتسنتر العنصر */
      /* اللون الذهبي بتاعك */
    padding: 0;

}

.about-container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.hero-title {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: center;
    display: block;      /* يخليه سطر كامل لوحده */
    text-align: center;  /* يسنتر النص نفسه في النص أفقياً */
    width: 100%;         /* يخلي الـ title ياخد العرض الكامل */
    margin: 40px auto 30px auto; /* auto من اليمين والشمال بتسنتر العنصر */
    color: var(--gold);  /* اللون الذهبي بتاعك */
    padding: 0;

}

.story-item {
    margin-bottom: 35px;
}

.ar {
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.en {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 60px 0;
}

.vision-box {
    background: #161616;
    padding: 30px;
    border-right: 4px solid var(--gold);
    margin-top: 40px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.img-card img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(30%);
    transition: 0.3s;
}

.img-card img:hover {
    filter: grayscale(0);
    transform: translateY(-5);
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 40px;
    transition: 0.3s;
}