/* style.css - Společný styl pro všechna cvičení */

:root {
    --bg-dark: #1a1a1a;
    --bg-panel: #262626;
    --accent-red: #e74c3c;
    --accent-hover: #c0392b;
    --text-main: #e0e0e0;
    --text-muted: #888;
    --white: #ffffff;
}

body { 
    font-family: 'Segoe UI', Roboto, sans-serif; 
    line-height: 1.6; 
    margin: 0; 
    padding: 0; 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
}

/* Navigace */
nav {
    background: var(--bg-panel);
    padding: 10px 20px;
    border-bottom: 2px solid var(--accent-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.back-link { 
    color: var(--accent-red); 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 0.9em;
    transition: color 0.2s;
}

.back-link:hover { color: var(--accent-hover); }
.nav-info { font-size: 0.85em; color: var(--text-muted); }
.nav-info strong { color: var(--white); }

/* Obsah */
.content { 
    max-width: 1000px; 
    margin: 40px auto; 
    padding: 0 20px; 
}

header { margin-bottom: 40px; }

h1 { 
    color: var(--white); 
    border-left: 5px solid var(--accent-red); 
    padding-left: 15px;
    margin: 0;
}

section {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    min-height: 300px;
}

h2 { color: var(--accent-red); margin-top: 0; }

code { 
    background: #111; 
    padding: 2px 6px; 
    border-radius: 4px; 
    color: #f8f8f2; 
}

/* Stylování odkazů uvnitř cvičení */
section a {
    color: var(--accent-red);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-red);
}

section a:hover {
    color: var(--white);
    background: var(--accent-red);
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #555;
    font-size: 0.8em;
}