.arrow {
  display: inline-block;
  margin-right: 8px;
  transform: translateY(1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  direction: rtl;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--color-brand-secondary);
}
.btn-dark {
  background: var(--color-brand-secondary);
  color: #fff;
  border-radius: 12px;
}

.home-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  direction: rtl;
  font-family: sans-serif;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.home-hero-bg--fallback {
  background: radial-gradient(circle at 20% 10%, rgb(107, 59, 24), var(--color-brand-primary));
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-overlay-dark), var(--color-overlay-light));
}
.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}
.home-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 16px;
  font-weight: 800;
}
.home-hero-subtitle {
  margin: 0 0 26px;
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(255, 242, 219, 0.92);
  line-height: 1.8;
}

.home-section {
  max-width: 100%;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  direction: rtl;
  font-family: sans-serif;
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}
.section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--color-brand-secondary);
  font-weight: 800;
}
.section-subtitle {
  margin: 0;
  color: rgb(102, 102, 102);
  font-size: 18px;
}
.section-footer {
  text-align: center;
  margin-top: 30px;
}
.section-link {
  color: var(--color-brand-secondary);
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: opacity 0.15s ease;
}
.section-link:hover {
  opacity: 0.8;
}

.empty-state {
  text-align: center;
  color: #777;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.home-about {
  margin: 10px;
  padding: 40px 100px 40px 100px;
  background: #fff;
  direction: rtl;
  font-family: sans-serif;
  display: flex;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  margin: auto;
  max-width: 1280px;
}
.about-title {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--color-brand-secondary);
  font-weight: 800;
}
.about-p {
  color: rgb(102, 102, 102);
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 16px;
}
.about-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}
.about-media img {
  width: 100%;
  height: auto;
  display: block;
}
.about-media-fallback {
  background: #f3f3f3;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.home-cta {
  padding: 20px 0;
  direction: rtl;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
}

.cta-card {
  width: 80%;
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  color: #fff2db;
  background: radial-gradient(circle at 20% 10%, var(--color-overlay-light), var(--color-overlay-dark));
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.cta-desc {
  margin: 0 auto 22px;
  max-width: 820px;
  line-height: 1.9;
  font-size: 16.5px;
  color: rgba(255, 242, 219, 0.9);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-card {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form {
    justify-content: center;
  }
}

/*# sourceMappingURL=home-page.css.map */
