/* Reset / base */
body {
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    background: #ffffff;
    color: #111;
}

.page {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.site-container {
    width: 540px;
    /* original desktop width */
    max-width: 100%;
    /* shrink proportionally on smaller screens */
    margin: 0 auto;
    /* center horizontally */
    transform-origin: top center;
    /* scale from top center if using transform */
}

/* Optional: proportional scale for tiny screens */
@media (max-width: 540px) {
    .site-container {
        transform: scale(calc(100vw / 540));
    }
}

/* Make images responsive inside the container */
.site-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    box-sizing: border-box;
}

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

/* Header */
header h1 {
    font-size: 3rem;
    margin-bottom: 0.2rem;
}

.tagline {
    font-style: italic;
    margin-top: 0;
}

/* Navigation */
nav {
    margin: 2rem 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    margin-bottom: 0.3rem;
}

nav a {
    text-decoration: none;
    color: #000;
    font-style: italic;
}

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

/* Sections */
section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

/* Tour list */
.tour-list {
    list-style: none;
    padding: 0;
}

.tour-list li {
    margin-bottom: 0.5rem;
}

.tour-list a {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    font-size: 0.8rem;
    margin-top: 4rem;
    opacity: 0.7;
}

.header-image {
    width: 100%;
    max-width: 500px;
    margin-top: 1.5rem;
    display: block;
}