body, html {
  height: 100%;
  margin: 0;
  font-family: 'Arial';
    background-color: #323232;
    overflow-x: hidden;
    font-weight: lighter;
}
h2 {
    font-weight: 200;
}

.footer {
    text-align: center;
    font-size: 20px;
    margin-top: 100px;
    height: auto;
    color: white;
}

.footer p {
    color: white;
}

.hero-image {
    background-image: linear-gradient(rgba(255, 255, 255, 0), #262726), url("IMG_Hero_Image.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  border-color: white;
  padding: 10px 10px;
  font-weight: 100;
}

@keyframes swipe {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
    }
    
}
.hero-text h1 {
    font-size: 50px;
    animation: swipe 0.6s;
}

.hero-text p {
    animation: swipe 0.6s;
}

.socialmedia img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto;
}









.carousel {
  position: relative;
  width: 100%;
  height: 60vh;  /* fixed height for all images */
  overflow: hidden;
  background: #111;
}

.carousel-track {
  display: flex;
  height: 100%;
  animation: scroll 40s linear infinite; /* adjust speed as needed */
}

.carousel-track img {
  height: 100%;       /* all images same height */
  width: auto;        /* width adjusts automatically */
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: #111;   /* fills space if image doesn't fully cover */
}

/* Keyframes for continuous scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%); /* half, since we duplicated images */
  }
}












#overview {
    width: 80%;
    font-size: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 5%;
    color: white;
}

#committee-about {
    background-color: #262726;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 36px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
    margin-top: 5px;
    text-decoration: underline;
}

h3 {
    text-align: center;
    color: white;
    font-size: 18px; /* Slightly larger font size for better readability */
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.team-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center align items */
    color: white;
    flex-basis: 20%;
}

.team-member-name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold; /* Make the name bold */
}

.team-member-role {
    text-align: center;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 20px; /* Adjust margin for better spacing */
}

.icon {
    margin: 0 auto 10px; /* Center the icon and add bottom margin */
}

.pricing {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-evenly;
    background-color: #262726;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 20px auto; /* Add margin for spacing */
}

.pricing h2 {
    margin-bottom: 20px; /* Add margin to separate from options */
    color: white; /* Ensure the heading is white */
    padding: 20px;
}

.option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center align items */
    flex-basis: 40%; /* Set the initial width of each option */
    color: white;
}

.optionname {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center; /* Center align the option name */
}

.optionprice {
    text-align: center;
    font-size: 16px; /* Slightly larger font size for better readability */
    margin-top: 5px; /* Adjust margin for better spacing */
    margin-bottom: 20px; /* Adjust margin for better spacing */
}

.option a {
    width: 50%;
    height: auto;
    margin: 10px auto; /* Center the link and add margin */
    padding: 10px 10px;
    border-radius: 25px;
    background-color: white;
    text-align: center;
    vertical-align: middle;
    color: black;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}

.option a:hover {
    background-color: lightgray; /* Change background on hover */
    transform: translateY(-5px); /* Slightly lift on hover */
}

/* Media Queries for Responsiveness */
@media (min-width: 1400px) {
    .team-member {
        flex-basis: 20%;
        max-width: 20%;
    }
}

@media (max-width: 1400px) {
 .team-member {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 950px) {
    #committee-about h2, .pricing h2 {
        font-size: 36px;
    }
}

@media (max-width: 750px) {
    #committee-about h2, .pricing h2 {
        font-size: 30px;
    }
}

@media (max-width: 475px) {
    #committee-about h2, .pricing h2 {
        font-size: 24px;
    }
}

@media (max-width: 1500px) {
    .option {
        flex-basis: 90%; /* Make each option take up full width on smaller screens */
    }
}







.footer {
    text-align: center;
    font-size: 20px;
    margin-top: 100px;
    height: auto;
    color: white;
}

.footer p {
    color: white;
}

@media only screen and (max-width: 1700px) {
    .footer {
      font-size: 18px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .footer {
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .footer {
      font-size: 14px;
    }
  }
  
  @media only screen and (max-width: 320px) {
    .footer {
      font-size: 12px;
    }
  }