/*
Theme Name: Blocksy Child
Template: blocksy
Version: 1.0
*/

/* =========================
   SAUNA HERO
========================= */

.sauna-hero {
    position: relative;
}

.sauna-hero img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    display: block;
}

/* Gradient overlay for readability */
.sauna-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.1) 70%,
        rgba(0,0,0,0) 100%
    );
}

.sauna-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    color: white;
    z-index: 2;
}

.sauna-hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.sauna-hero-overlay .sauna-region {
    font-size: 18px;
    opacity: 0.95;
}


/* =========================
   SAUNA SINGLE LAYOUT
========================= */

.sauna-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-top: 60px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .sauna-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sauna-hero img {
        height: 55vh;
    }

    .sauna-hero-overlay h1 {
        font-size: 32px;
    }
}

/* Region styling inside hero */
.sauna-region {
    color: #ffffff;
    font-weight: 500;
}

/* Section heading */
.sauna-main h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Description */
.sauna-description {
    line-height: 1.7;
    font-size: 17px;
}

/* Sidebar card */
.sauna-card {
    background: #F7F3EE;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.sauna-card p {
    margin-bottom: 16px;
}