/* ---------- General page layout ---------- */

html {
    color-scheme: light;
    background: #f3f1eb;
}

.page-illustration {
    text-align: center;
    margin-bottom: 0;
}

.page-illustration img {
    width: 150px;
}

.page-illustration + h2 {
    margin-top: 0.3em;
}

body {
    box-sizing: border-box;
    max-width: 660px;
    margin: 0 auto;
    padding: 1.8em;

    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #2f3330;
    background: #ffffff;
}


/* ---------- Headings ---------- */

h1,
h2,
h3 {
    color: #355c4a;
}

h2 {
    margin-top: 1.8em;
    margin-bottom: 0.6em;
}

h3 {
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}


/* Reduce excess space when a list follows a heading */

h2 + ul,
h3 + ul {
    margin-top: 0;
}


/* ---------- Language switch ---------- */

.language-switch {
    text-align: left;
    direction: ltr;
    margin-bottom: 15px;
    font-size: 0.95em;
}


/* ---------- Main navigation ---------- */

nav {
    text-align: center;

    margin: 20px 0 28px 0;
    padding: 0.8em 0.6em;

    background: #eef3ee;
    border-radius: 8px;

    line-height: 2;
}

nav a {
    display: inline-block;

    text-decoration: none;
    margin: 0 8px;

    color: #2c5f4a;
    font-weight: bold;
}

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


/* ---------- Horizontal section dividers ---------- */

hr {
    border: 0;
    border-top: 1px solid #d8ddd8;

    margin: 2em 0;
}


/* ---------- General images ---------- */

img {
    max-width: 100%;
    height: auto;

    border-radius: 10px;
}


/* ---------- Concert photograph gallery ---------- */

.concert-photos {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
    justify-content: center;
}

.concert-photos img {
    width: 220px;
    height: auto;
}


/* ---------- Mobile screens ---------- */

@media (max-width: 600px) {

    html {
        background: #ffffff;
    }

    body {
        width: 100%;
        max-width: none;

        padding: 1.1em;

        font-size: 18px;
    }

    nav {
        padding: 0.7em 0.4em;
        margin-top: 15px;
    }

    nav a {
        margin: 0 5px;
    }

    .concert-photos img {
        width: 90%;
    }
}