/* Archive Page Accordion Styles */
@font-face {
    font-family: "ANG";
    src: url(fonts/ANG.ttf) format("opentype");
  }

.archive-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: #F9F2AE;
}

.accordion-item {
  border-bottom: 1px solid #F9F2AE;
}

.accordion-title {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  background-color: #432A18;
  color: #F9F2AE;
  border: none;
  outline: #F9F2AE;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "ANG";
  letter-spacing: 2px;
}

.accordion-title:hover {
  background-color: #69B5E5;
}

.accordion-title.active {
  background-color: #432A18;
  color: #F9F2AE;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  background-color: #432A18;
  font-family: "ANG";
  color: #F9F2AE;
}

.accordion-content p {
  margin: 1rem 0;
  line-height: 1.6;
}

.loose-text {
  margin: 1rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center; /* optional */
  color: #432A18;        /* independent color from sections */
  font-size: 40px;
  width: 100%;
  font-family: "ANG";
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  transition: 0.3s;
}

.nav-links a:hover {
  border-radius: 4px;
  font-style: italic;
  transition: font-style 0.1s ease;
  color: #F94144;
}

a:link {
    text-decoration: underline;
    color: #F9F2AE;
  }

a:visited {
    color: #F9F2AE;
  }

a:hover {
    font-style: italic;
    transition: font-style 0.1s ease;}

    /* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #432A18;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }
}