/*CSS file for the index page*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ecf0f1;
    color: #333;
}

.container {
    display: flex;
    height: 100vh;
}

/* This is for the navigation on the left side */
.left-panel {
    width: 20%;
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.left-panel h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none;
    padding: 0;
	width: 100%;
}

.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
	display: block;
	padding: 10px;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	
}

.nav-links a:hover {
    background-color: #34495e;
    border-radius: 5px;
}

.main-content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

/*This is for the header and header images*/
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
}

.banner-image {
    width: 200px;
    height: auto;
}

/* This is for the slideshow that I put on the home page */
.slideshow {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    border: 2px solid #34495e;
    border-radius: 8px;
}

.slides {
    display: flex;
    animation: slide 10s infinite;
}

.slides img {
    width: 100%;
    height: auto;
}

/* This is to make the slideshow actually change pictures */
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* This is for the information section of the home page */
.info-section {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-section h3 {
    margin-top: 0;
    color: #34495e;
}

.info-section p {
    line-height: 1.6;
}
/* This is for the design on the footer */
.footer {
	background-color: #2c3e50;
	color: white;
	text-align: center;
	padding: 20px 10px;
	margin-top: 20px;
	font-size: 14px;
}

.footer-links {
	margin-bottom: 10px;
}

.footer-links a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
	font-size: 16px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #f1c40f;
}