/* Walkthrough Styles - Matching main site typography */

/* Base styles */
body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Typography - matching main site */
h1 {
    font-family: 'Julius Sans One', sans-serif;
    color: #111;
    font-weight: 300;
    font-size: 1.2cm;
    transform: scale(1, 1.15);
    margin-bottom: 0.2cm;
    margin-top: 0.2cm;
    text-transform: uppercase;
}

h2 {
    font-family: 'Archivo Narrow', sans-serif;
    color: #6495ED;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-top: 0.1cm;
    margin-bottom: 0.1cm;
}

h3 {
    font-family: 'Open Sans', sans-serif;
}

p, ul, ol, li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.35cm;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

code {
    background-color: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

/* Pre-formatted text */
pre {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.33cm;
    line-height: 1.4;
}

/* Note box */
.note {
    background-color: #fff3cd;
    border-left: 4px solid #ffeeba;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Layout elements */
.diagram {
    text-align: center;
    margin: 30px 0;
}

.diagram img {
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 0.9cm;
        text-align: center;
    }
    
    h2 {
        font-size: 0.7cm;
        text-align: center;
    }
    
    h3 {
        font-size: 0.6cm;
        text-align: center;
    }
    
    p, ul, ol, li {
        font-size: 0.4cm;
    }
    
    pre {
        font-size: 0.38cm;
    }
}

/* Strong and emphasis */
strong {
    font-weight: bold;
}

em {
    font-style: italic;
}