body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
header {
  background-color: #000;
  color: white;
  padding: 15px;
  text-align: center;
  position: relative;
}

.menu-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  right: 0;
  top: 60px;
  width: 220px;
  height: calc(100% - 60px);
  background-color: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding-top: 20px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  transition: background 0.3s;
}

.sidebar a:hover, .sidebar a.active {
  background-color: #d80027;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 5px solid #d80027;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* ===== Stories ===== */
.story-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-right: 5px solid #d80027;
  border-radius: 10px;
  margin: 30px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  overflow: hidden;
}

.story-card.reverse {
  flex-direction: row-reverse;
  border-right: none;
  border-left: 5px solid #d80027;
}

.story-card img {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  padding: 20px;
  flex: 1;
}

.story-text h2 {
  color: #c0392b;
  margin-bottom: 10px;
}

.story-text p {
  line-height: 1.8;
  color: #333;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.read-more:hover {
  background-color: #d80027;
}

/* ===== Highlight Section ===== */
.highlight-card-3 {
  text-align: center;
  background-color: #fffaf4;
  border-right: 6px solid #d80027;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  max-width: 700px;
  margin: 40px auto;
}

/* ===== Footer ===== */
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 12px 0;
  width: 100%;
}

.insta-icon {
  width: 28px;
  height: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .story-card {
    flex-direction: column;
  }
  .story-card.reverse {
    flex-direction: column;
  }
  .story-card img {
    width: 100%;
    height: 250px;
  }
}
