/* الخطوط والخلفية */
body {
    font-family: 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0b2e13; /* أخضر غامق */
    color: #f5f5f5;
}

/* الهيدر */
header {
    background: #14532d;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.profile-pic {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #22c55e;
}

/* الأقسام */
section {
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #1f3d28;
}
h2 {
    color: #22c55e;
    margin-bottom: 20px;
}

/* صور الفعاليات */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}
.event-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #14532d;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.event-img:hover {
    transform: scale(1.05);
}

/* الفيديو */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* نسبة 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #22c55e;
    border-radius: 10px;
}

/* روابط التواصل */
.contact a {
    display: block;
    margin: 10px 0;
    color: #22c55e;
    font-weight: bold;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
}

/* الفوتر */
footer {
    background: #14532d;
    color: #fff;
    padding: 15px;
    text-align: center;
}

/* استجابة للموبايل */
@media (max-width: 768px) {
    section {
        padding: 20px 10px;
    }
    .profile-pic {
        width: 140px;
        height: 140px;
    }
    h2 {
        font-size: 20px;
    }
    .event-img {
        height: 180px;
    }
}
