/* عام */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

/* تأثيرات نصوصية */
.glow-text {
  color: #d32f2f;
  text-shadow: 0 0 5px #d32f2f, 0 0 10px #d32f2f, 0 0 20px #ff5252;
}

.pulse-text {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* الهيدر */
.header {
  text-align: center;
  padding: 40px 20px;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.header .lead {
  font-size: 1.5rem;
}

/* القسم الرئيسي */
.main-content {
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #d32f2f;
}

.hero-left .hero-text {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.donation-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.donation-form input {
  padding: 10px;
  flex: 1;
  font-size: 1.2rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.urgent-btn {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.urgent-btn:hover {
  background: #b71c1c;
}

.donation-stats,
.visitor-count {
  font-weight: bold;
  font-size: 1.2rem;
  color: #555;
  margin-top: 8px;
}

/* Hero Image */
.hero-right {
  flex: 1;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Info Section */
.info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.info-card h3 {
  margin-bottom: 10px;
  color: #d32f2f;
}

.info-card p {
  font-size: 1rem;
  color: #333;
}

/* تجاوب */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-left h2 {
    font-size: 2rem;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header .lead {
    font-size: 1.2rem;
  }
}