/* Light Theme stylesheet */

html {
  margin: 0 auto;
  max-width: 1000px;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

p {
  text-align: left;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #31638D;
  color: white;
  padding: 1rem;
}

.exegesis-domains {
  background-color: #31638D;
  color: white;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 8px 16px;
}

.logo {
  font-size: 1.5rem;
}

header .logo a {
  color: white;
  text-decoration: none;
}

header .logo a:hover {
  color: white;
  text-decoration: none;
}

li {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}


/* Formatting for Content Links */
.c-links {
  color: seagreen;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-style: double;
}

.c-links:hover {
  color: #31638D;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-style: double;
}

.inline-links {
  color: #31638D;
  font-weight: bold;
  text-decoration: none;
}

.inline-links:hover {
  color: #31638D;
  font-weight: bold;
  text-decoration: underline;
}

/* Formatting for the 'Hamburger Menu' */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #444;
}

.mobile-menu a {
  color: white;
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-top: 1px solid #555;
}

main {
  display: flex;
  flex: 1;
  padding: 1rem;
}

.content {
  flex: 1;
  padding: 1rem;
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background-color: #31638D;
  color: white;
  text-align: center;
  padding: 1rem;
}

.responsive-image {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 768px) {
    .hamburger {
      display: none;
    }

    nav ul {
      display: flex;
    }

    .mobile-menu {
      display: none !important;
    }
}

@media (max-width: 767px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  main {
    flex-direction: column;
  }
}
