/* introLLMs.css */

/* Use the same font to match site-wide style */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #2f3136; /* or keep #36393f for consistency */
  color: #ccc;
  font-family: 'Roboto Slab', serif;
  line-height: 1.6;
}

.intro-header {
  background: #23272a;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #202225;
}

.intro-header h1 {
  margin: 0;
  font-size: 2rem;
  color: #fff;
}

.intro-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.intro-main h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.intro-main h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.intro-main h3:hover {
  color: #ffb300;
}

.intro-main p,
.intro-main li {
  color: #ddd;
  margin-bottom: 20px;
}

.intro-main li {
  margin-left: 20px;
}

.intro-main a {
  color: #ffb300;
  text-decoration: none;
  transition: color 0.2s ease;
}
.intro-main a:hover {
  text-decoration: underline;
  color: #ffd24f;
}

.highlight {
  color: #ffb300;
  font-weight: bold;
}

/* Accordion */
.accordion {
  background: #393c41;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.accordion h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.accordion h3::after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.accordion h3.open::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 10px;
}
.accordion-content.open {
  max-height: 500px;
}

/* Responsive text sizing */
@media (max-width: 600px) {
  .intro-header h1 {
    font-size: 1.5rem;
  }
  .intro-main h2 {
    font-size: 1.3rem;
  }
  .intro-main h3 {
    font-size: 1.1rem;
  }
  .intro-main p,
  .intro-main li {
    font-size: 0.95rem;
  }
}
