@charset "utf-8";
/* Author: Solange Mihanda Muhima
Date: March 25 2025
File name: StyleSheet4
*/
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    height:2000px;
    padding: 0;
    background-color: aliceblue;
    color: #333;
    text-align: center;
    padding-top: 120px;
}

/* Header & Navigation */
header {
    background-color: #223;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    padding: 20px;
    background-color: rgb(245 245 243/var(--tw-bg-opacity,1));
}
.logo img {
    width: 150px;
    display: block;
    margin: 0 auto;
}

/* Create a top navigation bar with a black background color  */
#myLinks {
  position: sticky;
  top: 0;
    background-color: #223;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: whitesmoke;
    text-align: center;
    padding: 20px 15px;
    margin-left: 10px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  /*search bar */
  .topnav .search-container {
    float: right;
    margin-top: 10px;
    margin-right: 7px;
   
  
  }
  
  .topnav input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
  }
  
  .topnav .search-container button {
    float: right;
    padding: 4px 10px;
    margin-top: 8px;
    margin-right: auto;
    background: #ddd;
    font-size: 17px;
     border: none;
    cursor: pointer;
  }
  
  .topnav .search-container button:hover {
    background: lightblue;
  }
  .search-container button img {
    width: auto;  
    height:auto;
}
 /*Responsive nav bar */
 @media screen and (max-width: 600px) {
    .topnav .search-container {
      float: none;
    }
    .topnav a, .topnav input[type=text], .topnav .search-container button {
    
      display: block;
      text-align: left;
      width: 90%;
      margin: 0;
      padding: 0px;
    }
    .topnav input[type=text] {
      border: 2px solid #ccc;  
    }
  }
/*parallax animation*/
  .parallax {
    background-image: url("images/background-black/pexels-steve-29652327.jpg");
    min-height: 100px;
    /*create the parallax scrolling effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
  /*About title */
  #about {
    font-family: 'Times New Roman', Times, serif;
    font-style: oblique;
    background-color: gainsboro;
    color: black;
    text-align: center;
    padding: 50px;
    margin-top: 0px;
    border-style: solid;
   
   
  }

  #about #leadership h1{
    font-style: oblique;
    text-decoration: solid;
    font-size: 3em;
  }
  #about h1:hover {
    text-decoration: underline;
    color: goldenrod;
  }

  #about p{
    font-size: 1.2em;
  }
/*Timeline */
* {
    box-sizing: border-box;
  }
  
  #leadership{
    font-family: 'Times New Roman', Times, serif;
    font-style: oblique;
    color: black;
    text-align: center;
  }
  #leadership h1:hover {
    text-decoration: underline;
    color: goldenrod;
  }
  
  #office{
    font-family: 'Times New Roman', Times, serif;
    font-style: oblique;
    color: black;
    text-align: center;
  }
  #office h1:hover {
    text-decoration: underline;
    color: goldenrod;
  }
  #time {
    font-family: 'Times New Roman', Times, serif;
    font-style: oblique;
    color: black;
    text-align: center;
    margin:0;
  }
  #time h1:hover {
    text-decoration: underline;
    color: goldenrod;
  }
  /* The actual timeline (the vertical ruler) */
  .timeline {
    background-image: url("images/background-black/pexels-steve-29652327.jpg");
    width: 100%;
    position: relative;
    bottom: 0px;
    padding: 20px;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    
  }
  
  /* The circles on the timeline */
  .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid goldenrod;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
  }
  
  /* Place the container to the right */
  .right {
    left: 50%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -16px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
  /* Place the timelime to the left */
    .timeline::after {
      left: 31px;
    }
  
  /* Full-width containers */
    .container {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
  /* Make sure that all arrows are pointing leftwards */
    .container::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
    }
  
  /* Make sure all circles are at the same spot */
    .left::after, .right::after {
      left: 15px;
    }
  
  /* Make all right containers behave like the left ones */
    .right {
      left: 0%;
    }
  }
/* Four columns side by side */
.column {
    float: left;
    width: 40%;
    margin: 2.5%;
    box-sizing: border-box;
    height: 10%;
  }
  .row {
    margin-top: 30px; /* Adds space from top of the page */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Display the columns below each other instead of side by side on small screens */
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      margin: 10px 0;
    }
  }
  
  /* Add some shadows to create a card effect */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
  
  /* Some left and right padding inside the container */
  .container2 {
    padding: 0 20px;
  }
  
  /* Clear floats */
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
    
  }
  
  .title {
    color: grey;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: #555;
  }
 
  /*Slideshow*/
/* Slideshow container */
.slideshow-container {
    display: block;
   width: 100%;
    margin: auto;
  
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
}
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    width: auto;
    padding: 20px;
    
    
  }

  
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
   
  }
  
  
  /* Caption text */
  .text {
    color: goldenrod;
    font-size: 2em;
    padding: 8px 12px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}
    /*
   
    position: absolute;
    bottom: 8px;
    width: 100%;
    
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: gold;
    font-size:1.2em ;
    padding: 8px 12px;
    position: absolute;
    margin-left: 1200px;
    
}

    

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

/*New Styles Added Below */

/* ===============================
   Mobile Styles: 0px to 480px 
   ===============================
*/

@media only screen and (max-width: 480px) {

.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: 300px;
  color: white;
  border-radius: 10px;
}

.caption {
  top: 700px;
}
a.icon {
 visibility:visible;
 
}
.logo {
  padding: 5px;
}
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.search-container form {
  width: 30%;
}
.search-container img {
display: none;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}



}

/*closing curly brace for mobile media query*/

/* ================================
   Tablet Styles: 481px and greater 
   ================================
*/
@media only screen and (min-width: 481px){
    
  .topnav {
    width: 100%;
   }

  
   
   foot.container{
    background-color:#223;
    box-shadow: none;
    display: block;
    width: 100%;
   }

  

}

/* =================================
   Desktop Styles: 769px and greater
   =================================
*/
@media only screen and (min-width: 769px){
 

   .icon {
    display: none;
   }
  }

/* Footer */
.footer {
    background-color: #223;
    color: wheat;
    padding: 5px;
    bottom: 0;
}