/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9; /* Light background for better readability */
  color: #333; /* Dark text color for contrast */
}

/* Header Styles */
header {
  background-color: skyblue; /* Sky blue background for header */
  color: white; /* White text color for contrast */
  padding: 0.5rem 0; /* Padding around header */
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem; /* Padding around top bar */
}

header .logo {
  width: 60px; /* Logo size */
  height: 60px;
  border-radius: 50%;
}

header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

header nav ul li {
  margin: 0 1rem; /* Equal spacing on both sides of list items */
}

header nav ul li a {
  color: white; /* White link color for contrast */
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem; /* Padding around links */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

header nav ul li a:hover {
  background-color: #ddd; /* Light background on hover */
  color: #333; /* Dark text color on hover */
}

/* Main Content Styles */
.intro {
  text-align: center;
  padding: 2rem 0;
  background-color: #fff; /* White background for intro section */
  margin-bottom: 2rem; /* Space below intro section */
}

.intro h1 {
  font-size: 2.5rem; /* Larger font size for main heading */
  margin-bottom: 1rem; /* Space below heading */
}

.intro p {
  font-size: 1.1rem; /* Medium font size for paragraph text */
  line-height: 1.6; /* Line height for better readability */
}

.content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px; /* Limit width of content for better readability */
  margin: 0 auto; /* Center content horizontally */
  padding: 0 1rem; /* Padding around content */
}

.content .section-title {
  font-size: 2rem; /* Larger font size for section titles */
  margin-bottom: 1rem; /* Space below section titles */
  text-align: center; /* Center section titles */
}

.content article {
  flex: 1 0 30%; /* Each article takes up 30% of the container */
  margin-bottom: 2rem; /* Space below each article */
  padding: 0 1rem; /* Padding around each article */
  background-color: #fff; /* White background for articles */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.content article p {
  font-size: 1.1rem; /* Medium font size for paragraphs */
  line-height: 1.6; /* Line height for better readability */
  margin-bottom: 1rem; /* Space below paragraphs */
}

.content article img {
  width: 100%; /* Ensure images fill their containers */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 1rem; /* Space below images */
}

/* Gallery and Ojude Oba Frame Styles */
aside {
  max-width: 30%; /* Width of each frame */
  margin-bottom: 2rem; /* Space below each frame */
  padding: 1rem; /* Padding inside each frame */
  background-color: #fff; /* White background for frames */
  border: 1px solid #ddd; /* Border around frames */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

aside h2 {
  font-size: 1.5rem; /* Medium font size for frame titles */
  margin-bottom: 1rem; /* Space below frame titles */
  text-align: center; /* Center frame titles */
}

.image-slider {
  position: relative;
  max-height: 300px; /* Limit height of image slider */
  overflow: hidden; /* Hide overflow */
}

.image-slider img {
  width: 100%; /* Ensure images fill their containers */
  height: auto; /* Maintain aspect ratio */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* Initially hide images */
  transition: opacity 0.3s ease; /* Smooth transition for image opacity */
}

.image-slider img.active {
  opacity: 1; /* Show active image */
}

/* Footer Styles */
footer {
  background-color: #333; /* Dark background for footer */
  color: #fff; /* White text color for contrast */
  text-align: center; /* Center text in footer */
  padding: 1rem 0; /* Padding around footer content */
}

footer p {
  margin: 0; /* Remove margin inside footer */
}
