@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700&family=Open+Sans:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap");

body {
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.hero-title {
    font-family: "Caesar Dressing", cursive;
    font-size: 8rem;
    margin: 0.5rem 0 0.5rem 0;
    color: #333;
}

.hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.3em;
    margin: 0.5rem 0 2rem 0;
    color: #666;
}

.warning-banner {
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    color: #ad160c;
    margin: 0;
    padding: 0;
    width: 50%;
    text-align: center;
    background: rgba(173, 22, 12, 0.05);
    border-radius: 6px;
    line-height: 1.2;
}

.action-links {
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.action-link {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    color: #372b2f !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.action-link:visited {
    color: #372b2f !important;
}

.action-link:hover,
.action-link:visited:hover {
    color: #faca2a !important;
    text-decoration: underline;
}

.separator {
    font-size: 2.5rem;
    color: #999;
    font-weight: 300;
}

/* Tenets grid styling */
.tenets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.tenet-section {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

.tenet-section h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #ad160c;
}

.tenet-section p {
    margin: 0.5rem 0 1rem 0;
    color: #666;
    font-style: italic;
}

.tenet-examples {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tenet-examples li {
    padding: 0.4rem 0;
    text-indent: -1.25em;
    padding-left: 1.25em;
}

.tenet-examples li.works::before {
    content: "✅ ";
}

.tenet-examples li.help-wanted::before {
    content: "🙋 ";
}

.tenet-examples li.help-wanted::after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 1em;
    background-image: url("https://img.shields.io/badge/status-help%20wanted-red");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.feature-list li.works {
    color: #2d5a2d;
}

.feature-list li.help-wanted {
    color: #ad160c;
}

.feature-list li.help-wanted a {
    color: #ad160c;
    text-decoration: none;
}

.feature-list li.help-wanted a:hover {
    text-decoration: underline;
}

/* Add spacer for landing page when menu bar is hidden */
body[data-no-menu-bar] #content {
    padding-top: 4rem;
}

/* Editor install list */
.editor-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 400px;
}

.editor-list li {
    margin: 0;
    padding: 0;
}

.editor-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.editor-list li:first-child a {
    border-top: 1px solid #e0e0e0;
}

.editor-list a:hover {
    background-color: #f5f5f5;
}

.editor-list img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.editor-list .editor-name {
    font-size: 1.2rem;
    font-weight: 500;
}

.editor-list .other-editors .editor-name {
    margin-left: calc(48px + 1rem);
    color: #666;
}

/* Panel guide - screenshot with numbered legend */
.panel-guide {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.panel-guide img {
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.panel-guide .panel-legend {
    flex: 1;
}

.panel-guide .panel-legend ol {
    margin: 0;
    padding-left: 1.5rem;
}

.panel-guide .panel-legend li {
    margin-bottom: 0.75rem;
}

/* Centered screenshot */
.screenshot-centered {
    display: block;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 8px;
    border: 3px solid #000;
}
