@charset "UTF-8";
@font-face {
  font-family: "eb_garamond";
  src: url("../fonts/eb-garamond-v9-latin-regular.woff2") format("woff2");
  font-weight: lighter;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "eb_garamond", Arial, sans-serif;
  display: grid;
  grid-template-columns: 1fr repeat(12, minmax(0, 5rem)) 1fr;
  gap: 0;
  background-color: #2f446a;
  padding: 2rem 0;
}

.clean-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.clean-table th,
.clean-table td {
  padding: 12px;
  text-align: left;
  font-size: 20px;
  color: #fff;
}

.clean-table thead {
  border-bottom: 1px solid #fff;
}

a {
  color: #f6e49e;
  font-size: 20px;
  text-decoration: none;
}

.logo {
  grid-column: 2/5;
  background-color: #2f446a;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  aspect-ratio: 1/1;
  border-right: 0.66rem solid #ebdfc9;
  border-bottom: 0.66rem solid #ebdfc9;
}

.headline {
  grid-column: 5/14;
  background-color: #2f446a;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: bold;
  border-bottom: 0.66rem solid #ebdfc9;
}

.navigation {
  padding-top: 4rem;
  grid-column: 2/5;
  background-color: #2f446a;
  position: sticky;
  align-self: stretch;
  border-right: 0.66rem solid #ebdfc9;
  text-align: center;
}

.separator {
  display: none;
  width: 61.8%;
  height: 0.6em;
  background-color: #ebdfc9; /* or any color you want */
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

.navigation h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.navigation ul {
  list-style: none;
}

.navigation li {
  margin: 0;
}

.navigation a {
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 10px 12px;
  transition: all 0.2s;
  line-height: 1.5;
}

.navigation a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.content {
  grid-column: 5/14;
  background-color: #2f446a;
  padding: 4rem 5.2rem;
  max-width: 100%;
  min-height: 45em;
}

.content h1 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
.content h1 a {
  font-size: 36px;
}

.content h2 {
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.quote {
  padding: 10px 20px;
  background: rgba(40, 40, 40, 0.2509803922);
  margin-bottom: 20px;
  color: #ffffff;
  font-style: italic;
  font-size: 20px;
}

.quote div {
  margin-top: 8px;
  font-style: normal;
  font-size: 18px;
  text-align: right;
}
.quote div a {
  font-size: 18px;
}

.content p {
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 20px;
}

.content ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 24px;
}

.content ul li::before {
  content: "➤ ";
  margin-right: 10px;
}

.content li {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* Animate to X when active */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #34495e;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background 0.3s;
}

.mobile-nav a:hover {
  background: #2c3e50;
}

@media (max-width: 768px) {
  body {
    display: block;
    padding: 0;
  }
  .headline,
  .content {
    display: block;
    padding: 2rem;
  }
  .logo {
    padding: 2rem;
    font-size: 18px;
    aspect-ratio: 0;
    width: auto;
    height: auto;
    border-right: none;
    border-bottom: none;
    justify-content: space-between;
  }
  .headline {
    display: none;
  }
  .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    grid-column: unset;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    align-self: unset;
  }
  .navigation.active {
    left: 0;
  }
  .nav-toggle {
    display: block;
  }
  .content h1 {
    font-size: 28px;
  }
  .content h1 a {
    font-size: 28px;
  }
  .content h2 {
    font-size: 22px;
    margin-top: 32px;
  }
  .separator {
    display: block;
  }
  .nav-toggle {
    display: block;
  }
}

/*# sourceMappingURL=main.css.map */