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

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

/* OUTER wrapper handles scaling */
.scale-wrapper {
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

/* INNER wrapper stays true desktop size */
.site-container {
    width: 560px;
    transform-origin: top center;
}

/* Scale ONLY on screens smaller than 540px */
@media (max-width: 540px) {
    .site-container {
        transform: scale(calc(100vw / 540));
    }
}
* {
    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;
}

.click-circle {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    font-size: 14px;
    color: black;
    animation: starFade 0.6s ease-out forwards;
}

@keyframes starFade {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(2) rotate(-30deg);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(5) rotate(0deg);
    }
}

.door-price {
    margin-left: 0.5rem;
    color: black;
    text-decoration: underline;
    font-size: 0.9rem;
}