/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    padding-bottom: 100px;
  }
  
  /* Header & Navigation */
  header {
    background-color: #006f3c; /* UNCC green */
    color: #fcd116; /* UNCC gold */
    padding: 1em;
    text-align: center;
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #006f3c;
  }
  
  nav ul li {
    margin: 0 1em;
  }
  
  nav ul li a {
    color: #fcd116;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    box-sizing: border-box;
    background-color: #006f3c;
    color: #fcd116;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  /* Content */
  main {
    padding: 20px;
  }
  
  /* Campus Spots Dynamic Section */
  .spot-img {
    box-sizing: border-box;
    display: none;
    height: 50%;
    width: 50%;
    border: 2px solid #000;  
    border-radius: 8px; 
    padding: 10px;  
    justify-content: center;
    
    
  }

  /* was told this warning would be removed (for some outdated IE ver 6 and earlier) */
  .spot-img.active {
    display: block;
  }

  .spot-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Centering text and elements inside the container */
  }
 
  /* Sponsors Section */
#sponsors {
  text-align: center;
  padding: 20px;
}

.sponsor-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sponsor-list a img {
  width: 150px; 
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.sponsor-list a img:hover {
  transform: scale(1.1);
}

figure { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
} 

.logo { 
  border: 2px solid #000; 
  border-radius: 8px; 
  padding: 10px; 
} 

.officer { 
  box-sizing: border-box;
  width: 150px;  
  height: 300px; 
  width: 300px; 
  border: 2px solid #000;  
  border-radius: 8px; 
  padding: 10px;  
  object-fit: cover; 
 }

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.slide-img { 
  width: 100%;  
  max-height: 500px;  
  object-fit: cover;  
  border-radius: 10px;
}

.text {
  box-sizing: border-box;
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
