 /* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Comfortaa", sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }

  /*NAVIGATION*/
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000;


  }

  nav {
    font-family: "Anton SC";
    padding: 30px;
    padding-top: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    left: 20%;
  }

  nav img {
    width: 0px;
  }
 
 
 
 /*ABOUT PAGE STYLES*/
  /* Basic styles for the about page */
  #about-us {
    padding: 50px;
    text-align: center;
  }
  
  #about-us h1, #about-us h2 {
    font-size: 2rem;
    color: #333;
  }
  
  #about-us p {
    font-size: 1.1rem;
    color: #666;

    width: 50%;
    margin: 20px auto;
    line-height: 1.6;
  }

  .conductor-card h2 {
    font-size: 20px;
  }

  .conductor-card {
    scroll-snap-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 0 0 250px;
  }
  
  .conductor-card img {
    width: 100px;
    height: 200px;
    object-fit: cover;
  }


  /*CONTENT CARDS*/
  #administration {
    text-align: center;
    padding: 50px 0;
  }
  
  .card-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
  }
  
  .card-slider::-webkit-scrollbar {
    display: none;
  }
  
  .card {
    scroll-snap-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 0 0 250px;
  }
  
  .card img {
    width: 100px;
    height: 150px;
    object-fit: cover;
  }
  
  .card h3 {
    margin: 15px 0 10px;
  }
  
  .card p {
    font-size: 0.9em;
    color: #555;
  }



  /*FOOTER*/
  footer {
    background-color: #000;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  footer p {
    font-family: "Anton SC", sans-serif;  
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
  }
  

