/* General Styles */
body {
  font-family: "helveticao", 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: rgb(135, 137, 235); /* Sky blue background for header */
  color: #ffffff; /* White text color for contrast */
  padding: 0.9rem 0; /* Padding around header */
}

.top-bar {
  display: flex;
  justify-content: center; /* Align items to the center */
  align-items: center;
  padding: 0 1rem; /* Padding around top bar */
}

header .logo {
  width: 100px; /* Logo size */
  height: 100px;
  border-radius: 70%;
}

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: 2rem; /* Larger font size for main heading */
  margin-bottom: 1rem; /* Space below heading */
}

.intro p {
  font-size: 1.3rem; /* Medium font size for paragraph text */
  line-height: 1.3; /* 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: 1.5rem; /* Larger font size for section titles */
  margin-bottom: 1.2rem; /* 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 Frame Styles */
.gallery-frame {
  width: 20%; /* Width of gallery frame */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 6rem; /* Space below gallery frame */
  padding: 1rem; /* Padding inside gallery frame */
  background-color: #fff; /* White background for gallery frame */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: fixed; /* Fixed position */
  right: 1rem; /* Position on the right */
  bottom: 170px; /* Position above the footer */
}

.gallery-frame .image-slider {
  position: relative;
  max-width: 100%; /* Ensure images fill their containers */
  height: auto; /* Maintain aspect ratio */
}

.gallery-frame .image-slider img {
  display: none; /* Hide all images initially */
  width: 100%; /* Ensure images fill their containers */
  height: auto; /* Maintain aspect ratio */
  position: absolute; /* Position images absolutely */
  top: 0;
  left: 0;
}

/* Ojude Oba Frame Styles */
.ojude-oba-frame {
  width: 20%; /* Width of ojude oba frame */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 4rem; /* Space below ojude oba frame */
  padding: 1rem; /* Padding inside ojude oba frame */
  background-color: #fff; /* White background for ojude oba frame */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: fixed; /* Fixed position */
  left: 1rem; /* Position on the left */
  bottom: 170px; /* Position above the footer */
}

.ojude-oba-frame .image-slider {
  position: relative;
  max-width: 100%; /* Ensure images fill their containers */
  height: auto; /* Maintain aspect ratio */
}

.ojude-oba-frame .image-slider img {
  display: none; /* Hide all images initially */
  width: 100%; /* Ensure images fill their containers */
  height: auto; /* Maintain aspect ratio */
  position: absolute; /* Position images absolutely */
  top: 0;
  left: 0;
}

/* Footer Styles */
footer {
  background-color: rgb(90, 104, 109); /* Sky blue background for footer */
  color: white; /* White text color for contrast */
  text-align: center; /* Center text in footer */
  padding: 1rem 0; /* Padding around footer */
  clear: both; /* Clear floating elements */
}
