/* css/release_notes.css */

.release-notes-page .release-notes-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--secondary-bg);
}

.release-notes-page .hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.release-notes-page .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.release-list-section {
    padding: 60px 0;
}

.release-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.release-item {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.release-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.release-header:hover {
    background-color: #34495e;
}

.version-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-grow: 1;
}

.release-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-right: 1.5rem;
}

.version-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.release-item.open .version-toggle {
    transform: rotate(45deg);
}

.release-content {
    height: 0;
    overflow: hidden;
}

.release-notes {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
}

.release-notes h3 {
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.release-notes ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.release-notes li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
/* Footer Improvements */
.footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-text {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-license {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  border-color: var(--accent-blue);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-divider {
  color: var(--border-color);
  font-size: 0.9rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-social {
    gap: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-divider {
    display: none;
  }

  .footer-logo {
    font-size: 1.3rem;
  }
}