/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.section {
  width: 100%;
}
*{
  box-sizing: border-box;
}
/* Navigation Bar */
.navbar {
  background: lightblue;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.nav-title {
  font-size: 2rem;
  margin-left: 10px;
}
.nav-title h2 {
  color: #002366;
  margin-bottom: 0;
}
.nav-title p {
  color: rgb(70, 142, 167);
  margin-top: 0;
}
.nav-contact {
  font-size: 1rem;
  color: #002366;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #002366;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.nav-menu li {
  padding-bottom: 5px;
}
.nav-menu li a {
  text-decoration: none;
  color: #002366;
  font-size: 1.2rem;
}
.nav-menu li a:hover {
  color: #000a1b;
    text-shadow: 0 0 20px #fff, 0 0 30px #2124cc, 0 0 40px #061d5c, 0 0 50px #0c0036, 0 0 60px #ff4da6, 0 0 70px #000000, 0 0 80px #ff4da6;
}
.banner-img {
  margin-top: 6rem;
}
@media (max-width: 950px) {
  .navbar {
    padding-left: 0;
    padding-right: 0;
  }
  .banner-img {
    margin-top: 10rem;
  }
  .nav-menu li {
    border-bottom: 1px solid #3a68be4d;
  }
  .nav-container {
    flex-direction: column;
    align-items: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-contact,
  .nav-title {
    margin: 0;
  }
  .nav-menu {
    flex-direction: column;
    display: none;
    width: 100%;
    position: absolute;
    top: 92%;
    left: 0;
    background: rgba(208, 229, 236, 0.897);
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    display: flex;
  }
}

.banner-img {
  background-image: url("img/colemanSign.jpg");
  background-position: center;
  background-size: cover;
  padding: 15%;
  box-sizing: border-box;
}

main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  color: #4682b4;
  font-size: 2rem;
  margin-top: 1rem;
  text-align: center;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.two-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.allied-health {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.allied-health img {
  width: 50%;
}

.allied-health .text-content {
  width: 50%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

table th,
table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table th {
  background-color: #e6f7ff;
  color: #333;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #444;
}

a {
  color: #4682b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004992;
  text-decoration: underline;
}

.staff,
.link {
  display: flex;
  justify-content: space-between;
}

.staff img,
.link img {
  width: 70%;
  border-radius: 15px;
}
.staff img {
  align-self: center;
  /* max-height: 700px; */
}

.link img {
  width: 65%;
}

.staffList {
  display: flex;
  flex-direction: column;
}

.staffList ul {
  width: 100%;
  align-self: center;
}

.staffList ul li {
  width: fit-content;
  margin: 10px auto;
}

.links .listH2 {
  width: fit-content;
  margin-left: 0;
}

.staffList .listH2,
.staffList ul {
  margin: 0;
}

.staffList ul {
  margin-bottom: 2rem;
}

iframe {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
  background: #4682b4;
  color: white;
  padding: 2rem 0;
  margin-top: 2rem;
}

footer p {
  color: #ddd;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  padding: 0 20px;
}

.copyright {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 1600px) {

  .two-column,
  .allied-health {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .allied-health img,
  .allied-health .text-content {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .staff,
  .link {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .staff img,
  .link img {
    width: 100%;
  }

  .links .listH2 {
    width: fit-content;
    margin: 0 auto;
    margin-top: 2.5rem;
  }

  .staff img {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .banner-img {
    margin-top: 11rem;
  }
}
