/*
Theme Name: FIJA 2025
Author: William Gillis
Author URI: http://humaniterations.net
Description: Initial theme
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

:root {
  --bg: #ffffff;
  --text: #111111;
  --link: #0074d9;
}

[data-theme="dark"] {
  --bg: #111111;
  --text: #f1f1f1;
  --link: #1e90ff;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: #000;
  color: #fff;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-title {
  margin: 0;
  font-size: 1.6rem;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav ul li {
  display: inline;
}

.dark-toggle {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-nav.show {
    display: flex;
    margin-top: 1rem;
  }
}
    main, .guide-content {
            max-width: 720px;
            margin: 2rem auto;
            padding: 0 15px;
    }

    .guide-content h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #ddd;
            padding-bottom: 0.3rem;
    }

    .guide-content h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: var(--link);
    }

    .guide-content p {
            margin-bottom: 1.25rem;
    }

    .guide-content ul, .guide-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
    }

    .guide-content li {
            margin-bottom: 0.5rem;
    }

    .guide-content blockquote {
            border-left: 4px solid #ccc;
            margin: 1.5rem 0;
            padding-left: 1rem;
            color: #555;
            font-style: italic;
            background: rgba(0,0,0,0.02);
    }

    [data-theme="dark"] .guide-content blockquote {
            border-left-color: #666;
            color: #bbb;
            background: rgba(255,255,255,0.05);
    }

    .guide-content code {
            font-family: monospace;
            background: #f0f0f0;
            padding: 0.2em 0.4em;
            border-radius: 3px;
    }

    [data-theme="dark"] .guide-content code {
            background: #333;
            color: #fff;
    }

