* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 30px 15px;

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: #222;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1000px;
    margin: auto;

    background: rgba(255,255,255,0.76);

    backdrop-filter: blur(4px);

    padding: 40px;

    border-radius: 8px;

    box-shadow: 0 0 25px rgba(0,0,0,0.20);
}

.header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.photo {
    width: 190px;
    border-radius: 5px;
    border: 2px solid #003366;

    filter: blur(8px);
    -webkit-filter: blur(8px);
    transition: filter 0.3s ease;
    cursor: pointer;
}

/* Reveal on hover/focus ONLY on devices with a real pointer (desktop).
   On touch screens :hover and :focus "stick" after a tap, which is why the
   photo stayed unblurred — so touch relies on the JS press-and-hold class. */
@media (hover: hover) and (pointer: fine) {
    .photo:hover,
    .photo:focus {
        filter: blur(0);
        -webkit-filter: blur(0);
    }
}

/* JS-controlled reveal: press-and-hold on touch, released on lift. */
.photo.is-visible {
    filter: blur(0);
    -webkit-filter: blur(0);
}

.header-text h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #003366;
}

.subtitle {
    color: #555;
}

.quick-links {
    margin-top: 15px;
}

.quick-links a {
    margin-right: 15px;
    font-weight: bold;
    text-decoration: none;
}

.quick-links a:hover {
    text-decoration: underline;
}

.intro {
    margin-top: 35px;
    text-align: center;
}

.intro p {
    color: #444;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.choice-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.choice-links a {
    display: inline-block;
    padding: 12px 26px;
    border: 1px solid #003366;
    border-radius: 5px;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.choice-links a:hover {
    background: #003366;
    color: #fff;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #555;
}

.breadcrumb a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #999;
}

.breadcrumb .current {
    color: #555;
    font-weight: bold;
}

h2 {
    color: #003366;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-top: 0;
}

h3 {
    color: #003366;
    margin-top: 30px;
}

a {
    color: #003366;
}

li {
    margin-bottom: 12px;
}

footer {
    margin-top: 60px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    font-size: 0.9em;
    color: #666;
}

/* "What's New" panel on the section landing pages */
.whats-new {
    border: 1px solid #d6dde6;
    border-left: 4px solid #003366;
    border-radius: 6px;
    background: rgba(0, 51, 102, 0.04);
    padding: 16px 20px;
    margin: 25px 0 30px 0;
}

.whats-new h3 {
    margin: 0 0 12px 0;
    font-size: 1.05em;
    color: #003366;
}

.whats-new ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.whats-new li {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.whats-new a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.whats-new a:hover {
    text-decoration: underline;
}

.whats-new .new-date {
    color: #888;
    font-size: 0.85em;
    margin-left: 6px;
    white-space: nowrap;
}

.whats-new .new-empty {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

@media (max-width: 700px) {

    .header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .photo {
        width: 150px;
    }

    .container {
        padding: 20px;
    }
}
