/*
-----------------------------------------------
Layout 1001: Screen Styles
----------------------------------------------- */

body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background: #fafafa;
	background: #fafafa;
  	color: #333;
}

/* Main Container*/
#container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

header {
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}

/* Main Navigation */
.main-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.nav-left,
.nav-right {
	display: flex;
	gap: 15px;
}             

.logo-container {
	text-align: center;
	flex: 1;
}

.logo img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	transition: transform 0.3s ease, border 0.3s ease;
}

.logo ing:hover {
	transform: scale(1.05);
	border: 2px solid #333;
}                            

/* Sub-navigation */
.sub-nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	background: #eee;
	padding: 10px 0;
}                            

.sub-nav a {
	font-size: 0.9rem;
}                            

/* Content and sidebar */
#wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}                            

#content {
	flex: 3;
	padding: 15px;
}                            

#navigation {
	margin-bottom: 15px;
}                            

#footer {
	background: #333;
	color: #fff;
	padding: 10px 0;
	margin-top: 20px;
	text-align: center;
}  

/* Utility clearfix */
.c {
	clear: both;
}

/* Hover effects for nav links */
.main-nav a:hover,
.sub-nav a:hover {
	color: #007BFF;
}

/* Responsive styles */
@media (max-width: 768px) {
	.main-nav {
		flex-direction: column;
		align-items: center;
	}
	
	.nav-left,
	.nav-right {
		flex-direction: column;
		gap: 10px;
	}
	
	#wrapper {
		flex-direction: column;
	}
	
	#sidebar {
		order: -1;
	}
}