/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0800;
  --bg2:       #110e00;
  --bg3:       #1a1500;
  --gold:      #c9a84c;
  --gold-lt:   #e8c96a;
  --gold-dim:  #7a6020;
  --text:      #f0e8cc;
  --text-dim:  #a08850;
  --border:    rgba(201,168,76,.2);
  --radius:    14px;
  --font-head: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-head); letter-spacing: .05em; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); color: var(--gold-lt); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); }
h3 { font-size: 1.25rem; color: var(--gold); margin-bottom: .5rem; }

/* ── Layout helpers ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.center     { text-align: center; }
.two-col    { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-tag.center { display: block; }
.section-sub { color: var(--text-dim); max-width: 540px; margin: .75rem auto 3rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-lt));
  color: #0a0800;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.4); }
.btn-primary.full  { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .1em;
  padding: .85rem 2rem;
  border-radius: 50px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(10,8,0,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 156px; width: auto; display: block; margin-top: 1cm; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: .875rem; color: var(--text-dim); transition: color .2s; letter-spacing: .05em; }
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: .45rem 1.25rem;
  border-radius: 50px;
  font-size: .8rem !important;
  transition: background .2s, color .2s !important;
}
.btn-nav:hover { background: var(--gold); color: #0a0800 !important; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; gap: 1rem; padding: 1rem 1.5rem 1.5rem; background: rgba(10,8,0,.97); }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text-dim); font-size: 1rem; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 55%, #2a1f00 0%, #110c00 45%, #000 100%);
  overflow: hidden;
  padding: 0 1.5rem 2.5rem;
  gap: 0;
}
.hero-above {
  position: relative; z-index: 2;
  width: 100%;
  padding-top: clamp(140px, 22vh, 200px);
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%;
  flex: 1;
  min-height: 180px;
  max-height: 46vh;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/Zeina.png') center center/contain no-repeat;
  opacity: 0.19;
  pointer-events: none;
}
.hero-below {
  position: relative; z-index: 2;
  width: 100%;
}
.eyebrow {
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: .5rem;
}
.subtitle { color: var(--text-dim); font-size: 1.1rem; max-width: 480px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: var(--gold-dim); font-size: 1.25rem;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* Stars */
.stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.star {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: twinkle var(--d,3s) ease-in-out infinite var(--delay,0s);
}
@keyframes twinkle { 0%,100%{opacity:.1} 50%{opacity:.8} }

/* ── About ── */
.about { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 100%); }
.about-text p { color: var(--text-dim); margin-bottom: 1rem; }
.about-arabic {
  font-family: 'Noto Naskh Arabic', serif;
  direction: rtl;
  text-align: right;
  line-height: 2;
}
.arabic-center {
  font-family: 'Noto Naskh Arabic', serif;
  direction: rtl;
  text-align: center;
  line-height: 2;
}
.about-text em { color: var(--gold-lt); font-style: normal; }
.about-stats {
  display: flex; gap: 2rem; margin-top: 2rem;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
}
.about-stats li { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); }
.about-stats span  { font-size: .8rem; color: var(--text-dim); }

/* Card fan */
.about-visual { display: flex; align-items: center; justify-content: center; min-height: 300px; }
.tarot-img {
  width: 100%; border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 50px rgba(0,0,0,.6);
  object-fit: cover;
}
.card-fan { position: relative; width: 160px; height: 260px; }
.fan-card {
  position: absolute; width: 110px; height: 190px;
  border-radius: 10px;
  border: 1px solid var(--border);
  top: 35px;
}
.fc1 {
  background: linear-gradient(160deg, #1a1400, #3d2e00);
  left: 0; transform: rotate(-18deg);
  box-shadow: -4px 4px 24px rgba(0,0,0,.7);
}
.fc2 {
  background: linear-gradient(160deg, #211900, #5a4200);
  left: 25px; transform: rotate(-5deg);
  box-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.fc3 {
  background: linear-gradient(160deg, #2a1f00, #7a5e00);
  left: 50px; transform: rotate(10deg);
  box-shadow: 4px 4px 24px rgba(0,0,0,.7);
}
.fc1::after, .fc2::after, .fc3::after {
  content: '♥';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 2rem; color: rgba(201,168,76,.5);
}

/* ── Bio ── */
.bio { background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 100%); }
.bio-centered {
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem; text-align: right;
}
.bio-centered .about-text { max-width: 640px; width: 100%; }
.bio-photo-wrap {
  display: flex; align-items: center; justify-content: center;
}
.bio-photo {
  width: 100%; max-width: 380px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 50px rgba(0,0,0,.6);
  object-fit: cover;
}

/* ── Services ── */
.services { background: var(--bg); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: .5rem;
}
.service-card {
  background: linear-gradient(160deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,.15);
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1f1700, #2e2200);
}
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-lt));
  color: #0a0800;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  padding: .25rem .9rem; border-radius: 20px;
  text-transform: uppercase;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--gold); }
.price { font-family: var(--font-head); font-size: 1.75rem; color: var(--gold-lt); margin-bottom: .75rem; }
.service-card > p { color: var(--text-dim); font-size: .9rem; margin-bottom: 1.25rem; }
.service-card ul { margin-bottom: 1.75rem; }
.service-card ul li {
  font-size: .85rem; color: var(--text-dim); padding: .3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-card ul li::before { content: '✦ '; color: var(--gold); font-size: .65rem; }
.btn-card {
  display: block; text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: .6rem 1.5rem;
  font-family: var(--font-head); font-size: .8rem; letter-spacing: .1em;
  transition: background .2s, color .2s;
}
.btn-card:hover { background: var(--gold); color: #0a0800; }

/* ── Testimonials ── */
.testimonials { background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 100%); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-card {
  background: linear-gradient(160deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.stars-rating { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-card > p { color: var(--text-dim); font-size: .9rem; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: .9rem; color: #0a0800;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--text); }
.testi-author span  { font-size: .78rem; color: var(--text-dim); }

/* ── Contact ── */
.contact { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }
.contact-center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.contact-tagline { color: var(--text-dim); font-size: 1rem; }
.contact-phone {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-head); font-size: 1.6rem; letter-spacing: .08em;
  color: var(--gold-lt);
  border: 1px solid var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.contact-phone:hover { background: var(--gold); color: #0a0800; box-shadow: 0 8px 30px rgba(201,168,76,.3); }
.ci-icon { color: inherit; font-size: 1.2rem; }
.whatsapp-link { border-color: #25d366; color: #25d366; }
.whatsapp-link:hover { background: #25d366; color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,.3); }
.social-icons { display: flex; gap: 1.25rem; margin-top: .5rem; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: transform .2s, border-color .2s, color .2s, background .2s;
}
.social-icon:hover { transform: translateY(-3px); }
.social-icon.instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-icon.tiktok:hover    { border-color: #fff; color: #fff; }
.social-icon.facebook:hover  { border-color: #1877f2; color: #1877f2; }
.social-icon.youtube:hover   { border-color: #ff0000; color: #ff0000; }

/* ── Footer ── */
footer {
  background: linear-gradient(180deg, var(--bg3) 0%, #000 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.footer-inner .logo { font-size: 1.2rem; }
.footer-inner > p { color: var(--text-dim); font-size: .9rem; }
.social-links { display: flex; gap: 1.5rem; margin: .5rem 0; }
.social-links a { color: var(--text-dim); font-size: .85rem; transition: color .2s; }
.social-links a:hover { color: var(--gold); }
.copyright { font-size: .75rem; color: var(--gold-dim); }

/* ── Arabic font ── */
.logo-ar, .hero-name-ar, .footer-logo .logo-ar {
  font-family: 'Noto Naskh Arabic', serif;
  direction: rtl;
}

/* ── Nav logo bilingual ── */
.logo { font-family: var(--font-head); font-size: 1rem; color: var(--gold-lt); letter-spacing: .05em; display: flex; flex-direction: column; line-height: 1.2; }
.logo-en { font-size: .85rem; letter-spacing: .12em; }
.logo-ar { font-size: .95rem; color: var(--gold); }

/* ── Hero name ── */
.hero-name-en {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--gold-lt);
  text-shadow: 0 0 60px rgba(201,168,76,.5);
  margin-bottom: .25rem;
}
.hero-name-ar {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--gold);
  letter-spacing: .05em;
  opacity: .85;
}

/* ── Suit corner decorations ── */
.suit-corner {
  position: absolute;
  font-size: 2rem;
  color: var(--gold-dim);
  opacity: .55;
  transition: opacity .3s;
  line-height: 1;
}
.hero:hover .suit-corner { opacity: .8; }
.suit-tl { top: 2.5rem; left: 2.5rem; }
.suit-tr { top: 2.5rem; right: 2.5rem; }
.suit-bl { bottom: 3.5rem; left: 2.5rem; }
.suit-br { bottom: 3.5rem; right: 2.5rem; }

/* ── Footer logo bilingual ── */
.footer-logo {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  font-family: var(--font-head); color: var(--gold-lt);
}
.footer-logo .logo-en { font-size: 1.1rem; letter-spacing: .1em; }
.footer-logo .logo-ar { font-size: 1rem; color: var(--gold); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */

/* Tablet landscape (≤1024px) */
@media (max-width: 1024px) {
  .two-col      { gap: 2.5rem; }
  .nav-logo-img { height: 110px; }
  .section      { padding: 5rem 0; }
}

/* Tablet portrait (≤768px) */
@media (max-width: 768px) {
  .two-col       { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual  { order: -1; }
  .nav-links     { display: none; }
  .hamburger     { display: block; }
  .nav-logo-img  { height: 80px; margin-top: .5rem; }
  .section       { padding: 4rem 0; }
  .container     { padding: 0 1.25rem; }

.contact-phone { font-size: 1.2rem; padding: .85rem 1.75rem; }
  .social-icons  { flex-wrap: wrap; justify-content: center; }
  .testi-grid    { grid-template-columns: 1fr; }
  .bio-photo     { max-width: 100%; }
  .tarot-img     { border-radius: 10px; }
}

/* Large mobile (≤600px) */
@media (max-width: 600px) {
  .hero-name-en  { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-name-ar  { font-size: clamp(1.4rem, 5vw, 2rem); }
  .subtitle      { font-size: 1rem; }
  .hero-btns     { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary,
  .btn-ghost     { width: 100%; text-align: center; }
  .contact-phone { font-size: 1.1rem; width: 100%; justify-content: center; }
  .whatsapp-link { width: 100%; justify-content: center; }
  h2             { font-size: clamp(1.5rem, 5vw, 2rem); }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .section       { padding: 3rem 0; }
  .container     { padding: 0 1rem; }
  .nav-logo-img  { height: 64px; }
  .nav-inner     { padding: .75rem 1rem; }
  .social-icons  { gap: .75rem; }
  .social-icon   { width: 44px; height: 44px; }
  .testi-card    { padding: 1.5rem; }
  .bio-centered  { gap: 1.5rem; }
  .about-stats   { gap: 1rem; }
}

/* Very small mobile (≤360px) */
@media (max-width: 360px) {
  .hero-name-en  { font-size: 1.8rem; }
  .hero-name-ar  { font-size: 1.3rem; }
  .contact-phone { font-size: 1rem; padding: .75rem 1.25rem; }
  .social-icon   { width: 40px; height: 40px; }
  .social-icon svg { width: 20px; height: 20px; }
}
