@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Cairo:wght@300;400;600;700&display=swap");

/* Global Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Cairo", sans-serif;
  background-color: #ffffff;
  color: #333;
  direction: rtl;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 0;
}

h1 {
  font-size: 2.3rem;
  font-weight: 600;
  color: #000;
}

/* Logo section */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo-title {
  font-size: 2.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 10px;
  color: #000;
  text-align: center;
}

.logo-image {
  height: 10rem;
}

/* Navigation / Lesson List */
.lesson-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* 🌟 TRUE 3D CARD STYLE */
.lesson-list li {
  width: 90%;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;

  /* Strong 3D shadows visible on white */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12), 0 15px 30px rgba(0, 0, 0, 0.1);

  border: none;
  transition: 0.25s ease;
  cursor: pointer;
}

/* Make entire card clickable */
.lesson-list li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

/* Hover lift + deeper shadow */
.lesson-list li:hover {
  transform: translateY(-6px);

  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15), 0 22px 40px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

/* Main Content Sections */
main,
.service-section {
  max-width: 850px;
  margin: 30px auto;
  padding: 30px;
  line-height: 1.9;
  background-color: #fff;
}

/* Only apply global list spacing to content sections, not cards */
main li,
.service-section li {
  margin-bottom: 8px;
}

.service-section h2,
.service-section h3,
h2 {
  color: #000;
  margin-bottom: 14px;
  border-right: 4px solid #c4a36e;
  padding-right: 10px;
}

ul {
  padding-right: 20px;
}

/* Payment Button */
.pay-button {
  background-color: #c4a36e;
  color: #fff;
  font-size: 18px;
  padding: 12px 35px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  transition: background 0.3s;
}

.pay-button:hover {
  background-color: #b18d57;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #444;
  border-top: 1px solid #eee;
}
