body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#007bff;
    color: #333;
    text-align: justify;
}

header {
    background-image: url("images/Header01.jpg"); /*Needs work*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

nav a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

nav a.active {
    color: #007bff;
    text-decoration: underline;
}

.slide-down {
  transform: translateY(-100%);
  animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
  to {
    transform: translateY(0);
  }
}

/*-----------------Slideshow Styling-----------------*/
/*Update slideshow to have a carousel effect*/
.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    display: block; /* Ensure the image is treated as a block-level element */
    margin: 0 auto; /* Centers the image horizontally */
}

.slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.slide-description {
    margin-top: 30px;
    font-size: 16px;
    color: #555;
    text-align: center; /* Centers the text under the image */
}

#prevSlide, #nextSlide {
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#prevSlide:hover, #nextSlide:hover {
    background-color: #555;
}

/*---------------End Slideshow Styling-----------------*/

/*--------------------Sections------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.images {
    display: flex;
    justify-content: center; /* Centers the image container horizontally */
    gap: 1rem;
    flex-wrap: wrap;
}

.images img {
    flex: 1;
    max-width: calc(33% - 1rem);
    border-radius: 8px;
    display: block; /* Treats each image as a block */
    margin: 0 auto; /* Centers each image individually */
}

/*---------------------End Sections-----------------------*/

/*-------------------------Links--------------------------*/

#links {
    text-align: center;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.links-container img {
    max-width: 100px;
    height: auto;
}

/*-----------------------End Links-----------------------*/

/*----------------------Contact Form--------------------*/
form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form textarea, form button {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #333;
    color: white;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}
/*---------------------End Contact Form------------------*/

/*---------------------Footer--------------------------*/
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    margin-top: 2rem;
}
/*--------------------End Footer------------------------*/
