/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
    color: black;
    scroll-behavior: smooth;
    margin:0;
    padding:0
  }
  
  .section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
  }
  
  /* Logo Full Display */
  .logo-full {
    text-align: center;
    padding: 1rem;
    background-color: white;
  }
  
  .logo-full img {
    max-width: 40%;
    height:20%;
  }
  
/* Navigation container layout */
#navigation {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  height: 100vh;
  padding:0
}

/* Left and Right colored vertical side bars */
.side-image {
  width: 28%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.left-color {
  background-color: #4DA2A9;
}

.right-color {
  background-color: #315177;
}

/* Nav menu in the center */
.nav-content {
  width: 44%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height:100hv
}

.logo-full {
  text-align: center;
  padding: 1rem;
}

.logo-full img {
  max-width: 90%;
  height: auto;
}

/* Navigation links */
.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
}


  /* Content Sections */

  .content-section img {
    width: 320;
    margin: 1rem 0;
    height:auto;
    border-radius: 8px;
    padding-top:0px;
    padding-bottom:0px;
  }

.content-section h1 {
    padding-bottom: 10px;
}

h1 {
  font-size:25px;
  margin-bottom:10px;
  padding-bottom:10px;
  padding-top: 20px;
}

h2 {font-size:20px;
padding-top:5px;
padding-bottom: 2px;}

.content-section video {
    width: 100%;
    margin: 0;
    height: 200px;
    border-radius: 8px;
    padding:0;
    padding-top: 22px;
}


  .content-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    padding-top: 20px;
    padding-left: 0%;
    line-height: 25px;
  }


#staff {
  padding:0%;
  margin: 0%;
  font-weight:bold;
 

}

#ceo {
  margin:0%;
  padding:0%
}
  

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.team-member {
  width: 320px;
  background-color: grey;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
}

#teamtext {
  display:flex
}

#team img {
  max-width: 300px;  /* Fixed width */
  height: auto;      /* Maintain aspect ratio */
  object-fit: cover;  /* Optional: for better image cropping */

}



  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contact-form button {
    background-color: black;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }
  
  /* Divider */
  .divider {
    height: 2px;
    background-color: black;
    width: 100%;
  }
  
  /* End Section */
  .end-section {
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 4rem;
  }
  
  /* Logo Button */
  .logo-button {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
  
  .end-section img {
    width: 60px;
    height: 60px;
    margin:50px;
    margin-left:auto;
    margin-right:auto
  }
  
  /* Splash Screen */
  #splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 2000;
    overflow: hidden;
  }
  
  .splash-bar {
    flex: 1;
    transition: transform 1s ease-in-out;
  }
  
  .bar1 { background-color: #b9d36a; }
  .bar2 { background-color: #4DA2A9 }
  .bar3 { background-color: #315177 }
  .bar4 { background-color: #f5a336; }
  
  .splash-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    animation: fadeIn 1.5s ease-out;
  }
  
  .splash-logo {
    width: 100px;
    animation: pulse s infinite ease-in-out;
  }
  
  .splash-message {
    margin-top: 1rem;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 2s 1.5s forwards;
  }
  
  /* When animation starts */
  #splash-screen.animate .bar1 {
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
  }
  #splash-screen.animate .bar2 {
    transform: translateX(-100%);
    transition: transform 1.2s ease-in-out;
  }
  #splash-screen.animate .bar3 {
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
  }
  #splash-screen.animate .bar4 {
    transform: translateX(100%);
    transition: transform 1.2s ease-in-out;
  }
  
  #splash-screen.animate .splash-center {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  /* Keyframes */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }







  @media (max-width: 0px) {
    #navigation {
      flex-direction: column;
      height: auto;
    }
  
    .side-image {
      width: 100%;
      height: 100px;
    }
  
    .nav-content {
      width: 100%;
    }
  }