/* ==============================
   AfroStream Header
============================== */
.afrostream-header {
	background: #0f0f0f;
	padding: 15px 30px;
	border-bottom: 1px solid #222;
}

.afrostream-header-inner {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.afrostream-logo a {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
}

.afrostream-nav .afrostream-menu {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
}

.afrostream-nav a {
	color: #ddd;
	text-decoration: none;
	font-weight: 500;
}

.afrostream-nav a:hover {
	color: #fff;
}

.afrostream-header-cta .btn-upload {
	background: #ff4b2b;
	color: #fff;
	padding: 10px 16px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
}

/* -------------------------------
   Header Dropdown Styles
--------------------------------- */
.afrostream-nav .afrostream-menu {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	position: relative;
}

.afrostream-nav li {
	position: relative;
}

.afrostream-nav a {
	color: #ddd;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 0;
	display: inline-block;
}

.afrostream-nav a:hover {
	color: #fff;
}

/* Dropdown Menu */
.afrostream-nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #0f0f0f;
	padding: 10px 0;
	list-style: none;
	min-width: 180px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	z-index: 999;
}

.afrostream-nav li:hover > ul {
	display: block;
}

.afrostream-nav li ul li {
	width: 100%;
}

.afrostream-nav li ul li a {
	padding: 8px 16px;
	color: #ddd;
	font-weight: 400;
	display: block;
}

.afrostream-nav li ul li a:hover {
	background: #222;
	color: #fff;
}


