/* Header Top */
.site-header .header-top {
  background-color: #000; /* dark background like Naijakit’s top bar */
  padding: 8px 0;
  color: #fff;
}

.site-header .header-top .container {
  display: flex;
  justify-content: flex-end;
}

.site-header .social-icons {
  display: flex;
  gap: 12px;
}

.site-header .social-icons .social-icon {
  color: #fff;
  font-size: 0.9rem;
  transition: color .3s ease;
}

.site-header .social-icons .social-icon:hover {
  color: blue; /* e.g., accent color on hover */
}

/* Header Main */
.site-header .header-main {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 2px solid #eee;
}

.site-header .header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  max-width: 180px;
  height: auto;
}

/* === Header Top (Social Media Bar) === */
.header-top {
    background-color: #000;
    color: #fff;
    padding: 8px 0;
}

.header-top .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Centers the icons horizontally */
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1db954; /* Accent color on hover */
}

/* === Header Banner Section === */
.header-main {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
}

.header-main .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 230px;
    height: auto;
}


