body{
  background-color: #eef1f3 ;
}
h1 {
  font-family: "IBM Plex Serif";
  color: #1f2933;
}
h2 {
  font-family: "IBM Plex Serif";
  color: #374151;
}
h3 {
  font-family: "IBM Plex Sans";
  color: #4b5563;
}
p,a,h4 {
  font-family: "IBM Plex Sans";
  color: #2e2e2e;
  font-size: large;
}
a{
  text-decoration: none;
}
footer{
  background-color: #d5d5d5;
}
.text-justify{
  text-align: justify;
}
/*logo bar*/
.logo-bar h1{
  font-size:xx-large;
}
.logo-bar h2{
  font-size:x-large;
}
.logo-bar h3{
  font-size:large;
}

/*navbar*/
.nav-item{
  padding-right: 15px;
}
.nav-item a{
  font-size: large;
}
.custom-nav{
  background-color: #d5d5d5;
}
.responsive-img{
  height: 30vh;          
  width: 100%;
  object-fit: cover;   
}
/*About page*/
.bg-image-overlay {
  position: relative;
  min-height: 100vh; 
  background: url('../img/about-bg.jpg') center/cover no-repeat;
}

/* dark transparent layer */
.bg-image-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

/* content stays sharp */
.content {
  position: relative;
  color: white;
  padding: 60px 20px;
}

/* applies ONLY to paragraphs inside the image section */
.bg-image-overlay .content p:nth-child(odd) {
  background: rgba(197, 197, 197, 0.45); /* light */
  color: #000;
  padding: 10px 12px;
  border-radius: 6px;
}

.bg-image-overlay .content p:nth-child(even) {
  background: rgba(0, 0, 0, 0.45); /* dark */
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
}
.gl-bg-image-overlay {
  position: relative;
  min-height: 100vh; /* full screen height */
  background: url('../img/governance.jpg') center/cover no-repeat;
}

/* dark transparent layer */
.gl-bg-image-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

/* content stays sharp */
.content {
  position: relative;
  color: white;
  padding: 60px 20px;
}

/* applies ONLY to paragraphs inside the image section */
.gl-bg-image-overlay .content p:nth-child(odd) {
  background: rgba(197, 197, 197, 0.45); /* light */
  color: #000;
  padding: 10px 12px;
  border-radius: 6px;
}

.gl-bg-image-overlay .content p:nth-child(even) {
  background: rgba(0, 0, 0, 0.45); /* dark */
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
}
/*legacy and continuity page*/
.heritage-section {
    max-width: 1000px;
    padding: 0 20px;
    margin: auto;
}

.heritage-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 40px;
    
    border-left: 3px solid #cfcfcf;
    position: relative;
    margin: 60px auto;
    color: #2b2b2b;
}

.heritage-row::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #cfcfcf;
}

.heritage-title {
    padding-left: 20px;
    white-space: nowrap;
}

.heritage-content {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.heritage-content p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .heritage-row {
        grid-template-columns: 1fr;
        border-left: none;
        padding-left: 20px;
    }

    .heritage-row::before {
        left: 0;
    }

    .heritage-title {
        margin-bottom: 12px;
        padding-left: 10px;
    }
}
/*Leadership page*/
.leadership-img{
  position: relative;
  background-image: url("../img/leadership.jpg");
  min-height: 300px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.leadership-content{
  text-align: center;
  text-align: justify;
  padding: 10px;
  max-width: 60vw;              
  margin: 60px auto;  
}
.leadership-content-structure{
  text-align: center;
  text-align: justify;
  padding: 10px;
  max-width: 60vw;              
  margin: 30px auto;  
}
@media (max-width: 768px) {
    .leadership-content {
        padding: 32px 28px;
        margin: 50px 16px;
        max-width: 100vw;
    }
}
/*Contact Page*/
.contact-border{
  border-left: 3px solid #cfcfcf;
}
@media (max-width: 768px) {
    .contact-border {
        border-left: none;
    }
}