/* خطوط Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f5f7fa;
  color: #2c3e50;
  line-height: 1.6;
  font-size: 16px;
}



/* الأزرار */
button,
.btn {
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  font-weight: bold;
}

button:hover,
.btn:hover {
  transform: scale(1.03);
}

/* روابط */
a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* صناديق المحتوى */
.card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* الفوتر */
footer {
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  header h1 {
    font-size: 24px;
  }

  .card {
    padding: 15px;
  }

  button, .btn {
    width: 100%;
  }
}