/* ------------------------------
   GLOBAL
------------------------------ */

body {
    background: #f5f1e8;
    color: #3b2a1a;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 600;
}

/* ------------------------------
   HERO
------------------------------ */

.sauna-hero {
    position: relative;
    min-height: 380px;
    background-image: url('img/sauna_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
}
/* delikatny gradient dla lepszej czytelności tekstu */
.sauna-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.05)
    );
    z-index: 1;
}

.sauna-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.45)
    );
}

/* treść hero */
.sauna-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.sauna-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.sauna-hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-hero {
    display: inline-block;
    padding: 12px 26px;
    background: #f9d27b;
    color: #4a321c;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-hero:hover {
    background: #ffe2a8;
    transform: translateY(-2px);
}

/* ------------------------------
   BENEFITY
------------------------------ */

.sauna-benefits {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}
.sauna-benefits {
    background-image: url('img/sauna_interior_panorama.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: #3b2a1a;
}
.sauna-benefits h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.benefit {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit h3 {
    margin-bottom: 8px;
    color: #4a321c;
}

/* ------------------------------
   CENNIK
------------------------------ */

.sauna-pricing {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.sauna-pricing h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.pricing-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.price-box {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.price-box.premium {
    border: 2px solid #f9d27b;
}

.price-box h3 {
    margin-bottom: 8px;
}

.price-box .price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #c27b25;
}

/* ------------------------------
   JAK TO DZIAŁA
------------------------------ */

.sauna-steps {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.sauna-steps h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step span {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f9d27b;
    color: #4a321c;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ------------------------------
   GALERIA
------------------------------ */

.sauna-gallery {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.sauna-gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
}
/* STRZAŁKI */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.lightbox-arrow:hover {
    background: rgba(0,0,0,0.5);
}

.lightbox-arrow.left {
    left: 20px;
}

.lightbox-arrow.right {
    right: 20px;
}

/* Mobile – mniejsze strzałki */
@media (max-width: 768px) {
    .lightbox-arrow {
        font-size: 2.2rem;
        padding: 6px 14px;
    }
}


.sauna-video {
    padding: 60px 20px;
    text-align: center;
}

.sauna-video h2 {
    margin-bottom: 20px;
    color: #4a321c;
    font-size: 2rem;
}

.sauna-mp4 {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}


/* ------------------------------
   CTA KOŃCOWE
------------------------------ */

.sauna-cta {
    text-align: center;
    padding: 40px 20px 60px;
    background: #e9dfcf;
}

.sauna-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.sauna-cta p {
    margin-bottom: 20px;
}

/* ------------------------------
   RESPONSYWNOŚĆ
------------------------------ */

@media (max-width: 768px) {
    .sauna-hero h1 {
        font-size: 2rem;
    }
    .sauna-hero p {
        font-size: 1rem;
    }
}
.sauna-map {
    text-align: center;
    padding: 60px 20px;
    background: #f5f1e8;
}

.sauna-map h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4a321c;
}

.sauna-map p {
    margin-bottom: 25px;
    color: #6b4a2a;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sauna-footer {
    background: #e9dfcf;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 3px solid #d4c7b4;
}

.stopka a {
    display: inline-block;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer-text {
    font-size: 0.9rem;
    color: #4a321c;
    margin-top: 5px;
}
