@import url("https://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css");

body {
  margin: 0;
  padding: 0;
  font-family: "Droid Arabic Naskh", serif;
  background-color: #ffffff;
  color: #111;
  direction: rtl;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==== Header Logo ==== */
.header-logo {
  text-align: center;
  margin: 30px 0 20px;
}

.header-logo img {
  width: 230px;
}

/* ==== Main Container ==== */
.main-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  flex: 1;
}

/* ==== Hero Section ==== */
.hero {
  background-color: #f4f4f4;
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #555;
}

.hero p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-wrapper {
  margin-top: 15px;
}

.cta-button {
  background: #2c3e50;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #1a252f;
}

/* ==== Sections (Contact / About) ==== */
.contact,
.about {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  line-height: 1.8;
}

.contact h2,
.about h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

/* Lists right aligned */
.contact ul,
.about ul {
  padding-right: 20px;
  padding-left: 0;
  margin: 0;
  list-style-position: inside;
  text-align: right;
}

.contact ul li,
.about ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ==== Opening Hours ==== */
.opening-hours {
  margin-top: 25px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  font-size: 15px;
  color: #333;
  text-align: center;
}

.opening-hours p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opening-hours i {
  color: black;
}

/* ==== Footer ==== */
.site-footer {
  background-color: #f1f5f9;
  border-top: 1px solid #e5e7eb;
  padding: 15px 20px;
  text-align: center;
}

.footer-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
}

.footer-content img {
  max-height: 24px;
  opacity: 0.85;
  cursor: pointer;
}

/* ==== Responsive ==== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
  }

  .contact,
  .about {
    padding: 20px 15px;
  }

  .header-logo img {
    width: 180px;
  }

  .opening-hours {
    font-size: 14px;
  }

  .site-footer {
    padding: 16px 8px;
  }

  .site-footer img {
    max-width: 80px;
  }
}
