/* ============================================================================
   RJURCONE.NET - Modern CSS Stylesheet
   Clean, professional, responsive design without fancy effects
   ============================================================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f5f5f5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* === HEADER === */
header {
    background-color: #8b4513;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #654321;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-logo img {
    width: 180px;
    height: 140px;
    border: 2px solid #654321;
    background-color: white;
}

.header-title h1 {
    color: #4169e1;
    font-size: 2em;
    margin-bottom: 5px;
}

.header-title p {
    color: #4169e1;
    font-size: 1.1em;
}

/* === NAVIGATION === */
nav {
    background-color: #708090;
    padding: 15px 20px;
    border-bottom: 2px solid #556b7a;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    background-color: #556b7a;
    border-radius: 3px;
    transition: background-color 0.2s;
    font-weight: bold;
}

nav a:hover {
    background-color: #4a5a6a;
}

nav a.active {
    background-color: #3a4a5a;
}

/* === MAIN CONTENT === */
main {
    background-color: #c0c0c0;
    padding: 30px;
    min-height: 500px;
}

main h1 {
    color: #dc143c;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
}

main h2 {
    color: #0000cd;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
}

main p {
    margin-bottom: 15px;
    text-indent: 30px;
}

main ul, main ol {
    margin-left: 40px;
    margin-bottom: 15px;
}

main li {
    margin-bottom: 10px;
}

main hr {
    border: none;
    border-top: 1px solid #888;
    margin: 25px 0;
}

/* === LINKS === */
a {
    color: #0000ee;
    text-decoration: underline;
}

a:visited {
    color: #551a8b;
}

a:hover {
    color: #0000cd;
}

/* === SPECIAL ELEMENTS === */
.intro-text {
    font-weight: bold;
    text-indent: 0;
    margin-bottom: 20px;
}

.note {
    text-align: center;
    font-style: italic;
    font-weight: bold;
    margin: 25px 0;
}

.note .blue {
    color: #0000cd;
}

.note .red {
    color: #dc143c;
}

.quote {
    text-align: center;
    font-style: italic;
    font-weight: bold;
    margin: 30px 0;
    font-size: 1.05em;
}

.resource-link {
    margin: 20px 0;
    padding: 15px;
    background-color: #d3d3d3;
    border-left: 4px solid #0000cd;
}

.resource-link a {
    font-weight: bold;
    margin-right: 15px;
}

.file-info {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

/* === FOOTER === */
footer {
    background-color: #708090;
    padding: 20px;
    text-align: center;
    color: white;
    border-top: 2px solid #556b7a;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-logo img {
        width: 140px;
        height: 110px;
    }
    
    .header-title h1 {
        font-size: 1.5em;
    }
    
    nav ul {
        flex-direction: column;
        gap: 5px;
    }
    
    nav a {
        text-align: center;
    }
    
    main {
        padding: 20px;
    }
    
    main h1 {
        font-size: 1.5em;
    }
    
    main h2 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    main {
        padding: 15px;
    }
    
    main p {
        text-indent: 15px;
    }
    
    main ul, main ol {
        margin-left: 25px;
    }
}
