* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.header {
  background-color: #00b1a5;
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  width: 150px;
  -webkit-filter: drop-shadow(0px 5px 5px #000000);
  filter: drop-shadow(0px 5px 5px #000000);
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  padding: 1rem;
}

.nav-list a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #ddd;
}

/* Main Content Styles */
.main-content {
  margin-top: 175px; /* Offset for fixed header */
  padding: 2rem;
  min-height: calc(100vh - 160px); /* Adjust based on header/footer height */
  background-image: url("../photos/halftone.png");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.hero {
  text-align: center;
  text-shadow: 1px 1px 5px black;
  color: white;
  padding: 4rem 0;
  background-image: url("../photos/ToledoScreen.png");
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.feature-card img {
  width: 100%;
}

* {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: white;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: white;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.social-links {
  list-style: none;
}

.social-links li {
  margin-bottom: 0.5rem;
}

.social-links a {
  color: white;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: #00b1a5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
    position: static;
    width: 100%;
  }
  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .nav-list {
    margin-top: 1rem;
    flex-direction: column;
  }

  .nav-list li {
    margin: 0.5rem 0;
  }

  .features {
    grid-template-columns: 1fr;
  }
  .logo img {
    width: 150px;
  }
  .main-content {
    margin-top: 0px; /* Offset for fixed header */
    padding: 2rem;
    min-height: calc(100vh - 160px); /* Adjust based on header/footer height */
  }
}
