/* Base Font & Layout */
body {
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(to bottom right, #e6f0ff, #f9fcff);
  color: #222;
  direction: rtl;
  padding: 0 20px;
  font-size: 26px; /* ⬅️ كبرنا */
  line-height: 2.1;
  text-align: center;
  min-height: 100vh;
}

/* Header */
header {
  padding: 50px 0 30px;
  background: linear-gradient(to right, #d0e9ff, #f0f8ff);
  border-bottom: 1px solid #ccc;
  box-shadow: 0 4px 14px rgba(0, 100, 255, 0.15);
  border-radius: 0 0 40px 40px;
}

.logo {
  width: 160px;
  margin-bottom: 25px;
}
.logo-card {
  width: 180px;
  height: 180px;
  background: white;
  margin: 0 auto 25px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
  object-fit: contain;
}

h1 {
  font-size: 44px;
  color: #0059b3;
  margin-bottom: 15px;
}

header p {
  font-size: 28px;
  color: #333;
}

/* Main Content */
main {
  padding: 50px 0;
}

/* Affiche Image */
.affiche {
  max-width: 100%;
  height: auto;
  max-height: 600px; /* ⬅️ كبرنا الصورة */
  border-radius: 24px;
  margin: 40px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s;
}
.affiche:hover {
  transform: scale(1.02);
}

/* Section Titles */
.info h2, .contact h2 {
  font-size: 36px;
  margin: 40px 0 20px;
  color: #003d66;
}

/* Stylish List */
ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 800px;
}
ul li {
  display: flex;
  align-items: center;
  justify-content: right;
  background: rgba(0, 123, 255, 0.06);
  margin: 18px 0;
  padding: 24px 28px;
  border-radius: 16px;
  font-size: 26px;
  color: #004080;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 64, 128, 0.06);
  transition: background 0.3s ease;
}
ul li:hover {
  background: rgba(0, 123, 255, 0.1);
}
ul li::before {
  content: "✅";
  margin-left: 18px;
  font-size: 30px;
  color: #2c9f42;
}

/* Contact Section */
.contact p {
  font-size: 26px;
  margin-bottom: 30px;
  color: #222;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(to right, #25d366, #1ebc5a);
  color: white;
  border: none;
  padding: 26px 50px;
  font-size: 28px;
  font-weight: 800;
  border-radius: 70px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
  transform: scale(1.06);
  background: linear-gradient(to right, #1ebc5a, #159e4b);
}

/* Footer */
footer {
  background: #eef6ff;
  padding: 30px 0;
  font-size: 22px;
  color: #555;
  margin-top: 70px;
  border-top: 1px solid #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 24px;
  }

  h1 {
    font-size: 36px;
  }

  header p {
    font-size: 24px;
  }

  .logo {
    width: 120px;
  }

  ul li {
    font-size: 22px;
    padding: 20px;
  }

  .whatsapp-btn {
    font-size: 26px;
    padding: 22px 40px;
  }

  .affiche {
    max-height: 400px;
  }
}
