:root {
  --gold: #c9a227;
  --gold-soft: #f6e6bd;
  --white: #ffffff;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 50px rgba(47, 36, 20, 0.25);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #f7f1e4;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 8vw;
  position: relative;
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(26, 18, 8, 0.35));
}

.content {
  position: relative;
  max-width: 720px;
  text-align: center;
  padding: 40px 32px;
  backdrop-filter: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 20px 0 14px;
}

p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.divider {
  width: 90px;
  height: 2px;
  margin: 18px auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.arabic {
  font-family: "Cairo", sans-serif;
}

.arabic h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .content {
    padding: 32px 22px;
  }
}
