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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bungee', cursive;
}

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

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 400;
    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;
}
