/* assets/css/details.css */

:root{
  --bg: #f9f9f9;
  --text: #1f2328;
  --muted: #6a7178;
  --hero-height: 200px;
  --overlay: rgba(0,0,0,0.4);
}

@media (prefers-color-scheme: dark){
  :root{
    --bg: #0f141a;
    --text: #e6edf3;
    --muted: #9aa5b1;
    --overlay: rgba(0,0,0,0.5);
  }
}

body{
  margin: 0;
  font-family: "Tajawal","Cairo",sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
}

/* Hero section */
.hero{
  height: var(--hero-height);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1{
  color: #fff;
  font-size: 24px;
  text-align: center;
  background: var(--overlay);
  padding: 12px 20px;
  border-radius: 8px;
}

/* Content */
.content{
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

.excerpt{
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}

.full{
  font-size: 17px;
  line-height: 1.8;
}
