/* إعدادات عامة */
body {
  font-family: "Cairo", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: #333;
  text-align: center;
}

header {
  background: #ffffffcc;
  padding: 20px;
  border-bottom: 2px solid #ddd;
}

h1 {
  color: #0d47a1;
}

main {
  padding: 20px;
}

section {
  margin: 40px 0;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* الصور */
.images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.images img {
  width: 300px;
  border-radius: 10px;
  transition: transform 0.3s;
}
.images img:hover {
  transform: scale(1.05);
}

/* الفيديو */
video {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* الصوت */
audio {
  margin-top: 15px;
  width: 80%;
}

/* الفوتر */
footer {
  background: #0d47a1;
  color: #fff;
  padding: 15px;
  margin-top: 30px;
}

/* جعل الموقع متجاوب */
@media (max-width: 768px) {
  .images img {
    width: 100%;
  }
  audio {
    width: 100%;
  }
}
