.manaf-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(26, 26, 26, 0.98) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #8a0303;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: "Cinzel Decorative", "Arial", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #e0d6c2;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  line-height: 1;
}

.logo-text span {
  color: #8a0303;
}

.logo-subtext {
  font-family: "El Messiri", "Arial", sans-serif;
  font-size: 0.8rem;
  color: #c8b090;
  margin-top: 2px;
  text-shadow: 0 0 5px rgba(200, 176, 144, 0.4);
}

.nav-main {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  color: #e0d6c2;
  text-decoration: none;
  font-family: "El Messiri", "Arial", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item:hover {
  color: #ffffff;
  background: rgba(138, 3, 3, 0.2);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
  transform: translateY(-2px);
}

.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
} 

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.menu-bar {
  width: 25px;
  height: 3px;
  background: #e0d6c2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.98) 0%,
    rgba(40, 40, 40, 0.98) 100%
  );
  border-left: 2px solid #8a0303;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #8a0303;
}

.mobile-menu-header h3 {
  color: #e0d6c2;
  font-family: "Cinzel Decorative", "Arial", sans-serif;
  font-size: 1.5rem;
}

.mobile-menu-close {
  color: #e0d6c2;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-close:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-nav-item {
  color: #e0d6c2;
  text-decoration: none;
  font-family: "El Messiri", "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(138, 3, 3, 0.3);
}

.mobile-nav-item:hover {
  color: #ffffff;
  background: rgba(138, 3, 3, 0.2);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
  transform: translateX(-5px);
}

.mobile-nav-item i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .manaf-header {
    padding: 12px 20px;
  }

  .nav-main {
    display: none;
  }

  .nav-icons {
    gap: 0.5rem;
  }

  .nav-icon {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 1.7rem;
  }

  .logo-subtext {
    font-size: 0.7rem;
  } 
 
}

@media (max-width: 480px) {
  .manaf-header {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .nav-icon {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
  }

  .mobile-menu {
    width: 250px;
  }
}






.nav-icon {
    color: #e0d6c2;
    text-decoration: none;
    font-size: 1.3rem;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

.nav-icon:hover {
    color: #ffffff;
    background: rgba(138, 3, 3, 0.2);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #8a0303;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 3, 3, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(138, 3, 3, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(138, 3, 3, 0);
    }
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 6px; 
}
.icon-left {
  color: #c00;  
} 