.centeredContent  {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    padding: 1em 0 2.5em 0;
    text-align: center;
    z-index: 10;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
                                rgba(0,0,0,0)
    );

    color: white;
}
img {
    max-width: 100%;
    height: auto;
}

.mapImage {
    max-width: 400px;
    height: auto;
    display: block;
    margin-right: 1em;
}

.contactInfo p {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}

.icon {
    width: 1.4em;
    flex-shrink: 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    font-size: clamp(2rem, 7vw, 4em);
}
.contactInfo a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contactInfo a:hover {
    text-decoration-thickness: 2px;
}
.contactFlex {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}
.contentBox {
    max-width: 850px;
    width: min(92%, 850px);
    padding: 1.5em 2em;
    margin: 0 auto;

     line-height: 1.55;
    background: rgba(25, 35, 25, 0.72);
    color: #fff8df;
    backdrop-filter: blur(2px);

    box-shadow: 0 8px 24px rgba(20, 40, 20, 0.25);
}

.topContentBox {
    border-radius: 18px 18px 0px 0px;
}
.contentBox a {
    color: #ffe08a;
}

.contentBox a:hover {
    color: #fff1b8;
}
.contentBox h2 {
    color: #ffe8a3;
}

.textBox {
    padding: 0;
    margin: 0;
}
.textBox p {
    margin: 0 0 0.8em 0;
    line-height: 1.55;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.textBackground {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
h2 {
    text-align: center;
    margin: 0 0 0.5em 0;
    padding: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
}
.textBox img,
.contactFlex img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.section {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    background-size: cover;
    background-position: center;
    padding: 2.5em 0;
    background-repeat: no-repeat;
}

.section-contact {
    background-image: url("Images/backgroundImages/Rantapenkki.jpg");
    padding-top: 7em;
}

.section-majoitus {
    background-image: url("Images/backgroundImages/Mokitcontent.jpg");
}

.section-veneet {
    background-image: url("Images/backgroundImages/tervatutveneet.jpg");
}
@media (max-width: 700px) {
    .contactFlex {
        flex-direction: column;
    }

    .contentBox {
        width: min(94%, 850px);
        padding: 1.2em;
    }

    .section {
        padding: 1.5em 0;
    }

    .section-contact {
        padding-top: 6em;
    }
}

.section-blog {
    background-image: url("Images/backgroundImages/Rantakauas.jpg");
}

.blogPost {
    display: flex;
    gap: 1.2em;
    padding: 1.2em 0;
    border-top: 1px solid rgba(255, 232, 163, 0.35);
}

.archiveLink {
    text-align: center;
    margin-top: 1.5em;
}

.archiveLink a {
    display: inline-block;
    padding: 0.6em 1em;
    border: 1px solid rgba(255, 232, 163, 0.55);
    border-radius: 8px;
    text-decoration: none;
}

.archiveLink a:hover {
    background: rgba(255, 232, 163, 0.12);
}

.blogPost:first-of-type {
    border-top: none;
}

.blogPost img {
    width: 220px;
    max-width: 35%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.blogText {
    flex: 1;
}

.blogText time {
    display: block;
    color: #ffe8a3;
    font-size: 0.95rem;
    margin-bottom: 0.2em;
}

.blogText h3 {
    margin: 0 0 0.4em 0;
    color: #fff1b8;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.blogText p {
    margin: 0;
    line-height: 1.55;
}

.section-archive {
    min-height: 100vh;

    background:
    linear-gradient(
        rgba(15, 25, 15, 0.45),
                    rgba(15, 25, 15, 0.65)
    ),
    url("Images/backgroundImages/Rantapenkki.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding-top: 7em;
    padding-bottom: 3em;
}

.archiveBox {
    max-width: 950px;
}

.archiveIntro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5em auto;
    line-height: 1.55;
}

.backLink {
    text-align: center;
    margin: 1em 0 2em 0;
}

.backLink a {
    display: inline-block;
    color: #ffe08a;
    text-decoration: none;

    padding: 0.55em 0.9em;
    border: 1px solid rgba(255, 232, 163, 0.55);
    border-radius: 8px;
}

.backLink a:hover {
    color: #fff1b8;
    background: rgba(255, 232, 163, 0.12);
}

.archivePost {
    display: flex;
    gap: 1.2em;

    padding: 1.4em 0;
    border-top: 1px solid rgba(255, 232, 163, 0.28);
}

.archivePost:first-of-type {
    border-top: none;
}

.archivePost img {
    width: 230px;
    max-width: 35%;
    height: 150px;

    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.archivePostText {
    flex: 1;
}

.archivePostText time {
    display: block;
    color: #ffe8a3;
    font-size: 0.95rem;
    margin-bottom: 0.25em;
}

.archivePostText h3 {
    margin: 0 0 0.4em 0;
    color: #fff1b8;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.archivePostText p {
    margin: 0;
    line-height: 1.55;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.archivePost.noImage {
    padding-left: 0;
}

.bottomBackLink {
    margin-top: 2em;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .section-archive {
        padding-top: 6em;
        padding-bottom: 1.5em;
    }

    .archivePost {
        flex-direction: column;
    }

    .archivePost img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.section-hinnasto {
    background-image: url("Images/backgroundImages/Mokitsivu.jpg");
}
.section-sauna {
    background-image: url("Images/backgroundImages/Saunatausta.jpg");
}
.priceTableWrapper {
    overflow-x: auto;
}

.priceTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

.priceTable th,
.priceTable td {
    padding: 0.8em;
    text-align: left;
    border-bottom: 1px solid rgba(255, 232, 163, 0.28);
}

.priceTable th {
    color: #ffe8a3;
    font-size: 1.05rem;
}

.priceTable td:last-child,
.priceTable th:last-child {
    text-align: right;
    white-space: nowrap;
}

.priceNote {
    margin-top: 1em;
    text-align: center;
    color: #fff1b8;
}
.siteFooter {
    background: rgba(15, 25, 15, 0.95);
    color: #fff8df;
    text-align: center;
    padding: 1.5em 1em;
    font-size: 0.95rem;
}

.siteFooter p {
    margin: 0.3em 0;
}

.siteFooter a {
    color: #ffe08a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.siteFooter a:hover {
    color: #fff1b8;
}
