/* Custom Quarto Reveal.js Theme using Roboto and your palette */

/* 1. Font Setup */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body, .reveal {
    font-family: 'Roboto', sans-serif;
    color: #33363b; /* Primary text color */
}

/* 2. Backgrounds */
.reveal {
    background-color: #ffffff; /* clean white background */
}

.reveal section {
    background-color: #ffffff; /* slide background */
    color: #33363b; /* default text */
}

/* 3. Headings */
h1, h2, h3, h4, h5, h6 {
    color: #489635; /* Strong green for headers */
    font-weight: 500;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }

/* 4. Links */
a {
    color: #489635;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* 5. Accents and Highlights */
strong, b {
    color: #33363b;
}

em, i {
    color: #9fb782;
}

/* 6. Slide Background Variations */
.reveal section.background-accent {
    background-color: #d6f4f6;
    color: #33363b;
}

.reveal section.background-secondary {
    background-color: #addca3;
    color: #33363b;
}

/* 7. Code blocks */
pre, code {
    font-family: 'Roboto Mono', monospace;
    background-color: #f5f5f5;
    color: #33363b;
    border-radius: 4px;
    padding: 0.3em 0.5em;
}

/* 8. Blockquotes */
blockquote {
    border-left: 4px solid #489635;
    color: #33363b;
    padding-left: 1em;
    font-style: italic;
}

/* 9. Horizontal rules */
hr {
    border: none;
    height: 2px;
    background-color: #489635;
    margin: 2em 0;
}

/* 10. Buttons and navigation */
.reveal .controls .navigate-right,
.reveal .controls .navigate-left {
    color: #489635;
}

.reveal .progress span {
    background-color: #489635;
}
