/* ---------- style.css -------------*/


/* ---------- Base Layout ---------- */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
    background: #f8fafc;
    color: #222;
}

/* ---------- Typography ---------- */
h1 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 10px;
    color: #0077b6;
}

h2 {
    color: #023e8a;
    margin-top: 30px;
}

p {
    margin-bottom: 15px;
}

strong {
    color: #d62828;
}

/* ---------- Elements ---------- */
hr {
    border: 0;
    border-top: 2px solid #e0e0e0;
    margin: 25px 0;
}

ul {
    list-style-type: none;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

li {
    margin-bottom: 10px;
}

/* ---------- Links ---------- */
a {
    color: #0077b6;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #0096c7;
}

/* ---------- Footer ---------- */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

/* ---------- Navigation Bar ---------- */
.navbar {
    background-color: #0077b6;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-title {
    font-size: 1.4em;
    color: #fff;
    font-weight: bold;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #caf0f8;
}

.nav-links a.active {
    text-decoration: underline;
}

/* Responsive Navigation */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 10px;
    }

    .nav-links a {
        display: inline-block;
        margin: 5px 10px 0 0;
    }
}

/* ---------- Hero Image ---------- */

.hero-image {
    margin-bottom: 25px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

