/* Banat Al-Hajj - Boutique Luxury Theme */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root{
  --bg: #fff6fb;
  --surface: rgba(255,255,255,.78);
  --surface-2: rgba(255,255,255,.92);
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --brand: #c2185b;
  --brand-2: #8e1443;
  --line: rgba(194,24,91,.18);
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --radius: 22px;
}

*{ box-sizing:border-box; }

html,body{
  height:100%;
}

body{
  margin:0;
  font-family: "Tajawal", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(194,24,91,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(142,20,67,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff);
}

.page{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 14px;
}

.card{
  width:min(880px, 100%);
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.header{
  padding: 34px 26px 20px;
  background: linear-gradient(135deg, rgba(194,24,91,.10), rgba(255,255,255,.0));
  border-bottom: 1px solid var(--line);
  text-align:center;
}

.brand{
  margin:0;
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--brand);
}

.subtitle{
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--muted);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  color: var(--brand-2);
}

.badge span{
  font-size: 20px;
}

.body{
  padding: 24px 22px 30px;
  text-align:center;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  justify-content:center;
  margin-top: 18px;
}

.btn{
  appearance:none;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  cursor:pointer;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  border-color: transparent;
}

.small{
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}

/* ====== Banat AlHajj - Mobile polish v1 ====== */

/* Better global spacing + smooth look */
:root{
  --max: 1100px;
}

*{ box-sizing: border-box; }
body{
  line-height: 1.6;
}

/* Container helper (if your layout uses .wrap) */
.wrap, .container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px;
}

/* Header: nicer spacing + wrap buttons on small screens */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Nav buttons group */
.nav .links{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Make buttons consistent */
.btn, button, a.btn{
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

/* Hero card: more premium and centered */
.hero{
  padding: 18px 0 8px;
}

.hero-card{
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(17,24,39,.10);
}

/* Headline sizing responsive */
.hero h1{
  font-size: clamp(28px, 4.5vw, 44px);
  margin: 10px 0 10px;
  letter-spacing: .2px;
}

.hero p{
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: .85;
}

/* CTA buttons area */
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-actions .btn{
  min-width: 160px;
}

/* WhatsApp bar: don’t cover content on small screens */
.whatsapp-bar{
  position: sticky;
  bottom: 10px;
  margin: 14px auto;
  max-width: var(--max);
  border-radius: 18px;
}

/* Small screens tweak */
@media (max-width: 420px){
  .btn, button, a.btn{
    width: 100%;
  }
  .hero-actions .btn{
    min-width: 100%;
  }
}
/* WhatsApp bottom bar */
.wa-bar{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.wa-bar:active{
  transform: translateY(1px);
}

.wa-icon{
  font-weight: 800;
}

.wa-text{
  font-weight: 700;
}

/* so content doesn't get hidden behind the fixed bar */
body{
  padding-bottom: 100px;
}

