/* ====== أساس الصفحة ====== */
body{
  margin:0;
  font-family:"Segoe UI", Tahoma, Arial, sans-serif;
  background:#f6f2ea;
  color:#3a2a1a;
  line-height:1.7;
}

/* ====== Navbar ====== */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(135deg,#6b4a2b,#8b6a45);
  color:#f3e8d6;
  padding:14px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.navbar nav a{
  color:#f3e8d6;
  text-decoration:none;
  margin:0 12px;
  font-weight:500;
  transition:.3s;
}

.navbar nav a:hover{
  color:#ffd27a;
}

/* ====== Hero ====== */
.hero-history{
  min-height:28vh;
  background:
    linear-gradient(rgba(107,74,43,.7), rgba(107,74,43,.7)),
    url("images/hero-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.hero-history .hero-box{
  background:rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius:24px;
  padding:30px 40px;
  text-align:center;
  color:#f3e8d6;
  box-shadow:0 20px 40px rgba(0,0,0,.3);
}

.hero-history h1{
  margin:0 0 8px;
  font-size:32px;
}

.hero-history p{
  margin:0;
  font-size:16px;
  color:#f1e7d8;
}

/* ====== Container ====== */
.container{
  max-width:1000px;
  margin:auto;
  padding:40px 20px;
}

/* ====== عناوين المراحل ====== */
.timeline-section{
  margin:50px 0 20px;
  font-size:26px;
  color:#6b4a2b;
  border-right:6px solid #6b4a2b;
  padding-right:12px;
}

/* ====== الخط الزمني ====== */
.timeline{
  border-right:4px solid #6b4a2b;
  padding-right:24px;
  max-width:800px;
  margin:20px auto 0;
}

.timeline-item{
  position:relative;
  margin-bottom:24px;
}

.timeline-item::before{
  content:"";
  position:absolute;
  right:-18px;
  top:14px;
  width:14px;
  height:14px;
  background:#6b4a2b;
  border-radius:50%;
}

/* ====== بطاقة الحدث ====== */
.timeline-content{
  background:#ffffff;
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.timeline-date{
  font-weight:bold;
  color:#8b6a45;
  margin-bottom:6px;
}

.timeline-content h3{
  margin:0 0 8px;
  color:#3a2a1a;
}

.timeline-content p{
  margin:0;
  color:#5a4a3a;
}

/* ====== زر الرجوع ====== */
.back-home{
  display:flex;
  justify-content:center;
  margin:40px 0 10px;
}

.back-btn{
  background:linear-gradient(135deg,#8b6a45,#6b4a2b);
  color:#f3e8d6;
  padding:12px 28px;
  border-radius:14px;
  text-decoration:none;
  font-size:16px;
  box-shadow:0 6px 15px rgba(0,0,0,.2);
  transition:.25s ease;
}

.back-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.25);
}
footer{
  text-align: center;
  margin: 30px 0 20px;
  color: #8b7a66;          /* بني فاتح ناعم */
  font-size: 15px;
  letter-spacing: 0.5px;   /* تباعد بسيط بين الحروف */
}