* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #fff7f1;
    color: #3b2a22;
}
.discount-floating {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}
/*HERO – TŁO I PODSTAWOWY STYL */
.hero {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('hero.jpg') center/cover no-repeat;
    padding: 120px 40px;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEWA STRONA: ZDJĘCIE + OPIS SPECJALISTKI*/
.hero-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 45%;
}

/* Zdjęcie specjalistki — kwadratowe*/
.spec-img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border: 3px solid rgba(255,255,255,0.6);
}

/* Opis specjalistki */
.spec-desc h2 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #ffd9a6;
}

.spec-desc p {
    font-size: 16px;
    line-height: 1.5;
}

/*PRAWA STRONA: OPALANIE NATRYSKOWE*/
.hero-right {
    max-width: 45%;
    text-align: right;
}

.hero-right h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffd9a6;
}

.hero-right p {
    font-size: 18px;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-left {
        flex-direction: column;
        align-items: center;
    }
}

/* Ustawienie dwóch bloków obok siebie */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 80px 40px;
    color: white;
}

/* Lewy blok – Twój obecny tekst */
.hero-content {
    max-width: 50%;
}

/* Prawy blok – zdjęcie + opis */
.hero-specialist {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Zdjęcie specjalistki */
.hero-specialist img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.6);
}

/* Opis specjalistki */
.hero-desc h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #ffd9a6;
}

.hero-desc p {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsywność */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-specialist {
        max-width: 100%;
    }

    .hero-specialist {
        flex-direction: column;
    }
}


/* TOP NAV */

#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(6px);
    padding: 12px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 9999;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#top-nav nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

#top-nav nav a {
    text-decoration: none;
    color: #6a4e3b;
    font-weight: 600;
    font-size: 15px;
}

.nav-visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* SEKCJE */

.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px 30px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.section-subtitle {
    margin-bottom: 20px;
    color: #7a5b46;
}

/* PANELE */

.panel-soft {
    background: #fffdf8;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.panel-gradient {
    background: linear-gradient(135deg, #ffe7cf, #fff7f1);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.panel-strong {
    background: #f4e0cf;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.panel-content {
    margin-top: 10px;
}

/* IKONY / KARTY */

.icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.panel-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.panel-card h3 {
    margin-bottom: 8px;
}

/* LISTY */

.extra-list {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
    color: #6a4e3b;
    font-size: 15px;
}

.extra-list li {
    margin-bottom: 4px;
}

.steps-list {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 15px;
}

.steps-list li {
    margin-bottom: 8px;
}

/* INFO NOTE */

.info-note {
    margin-top: 10px;
    font-size: 14px;
    color: #5a4333;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 12px;
    border-radius: 10px;
}

/* REF LINKI */

.ref-link,
.ref-link-inline {
    display: inline-block;
    margin-top: 10px;
    color: #b6763c;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.ref-link::after,
.ref-link-inline::after {
    content: "↗";
    margin-left: 4px;
    font-size: 12px;
}

.ref-link:hover,
.ref-link-inline:hover {
    color: #8f5629;
    text-decoration: underline;
}

/* GALERIA */

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

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery img.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
/* FAQ */

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.faq-item h3 {
    margin-bottom: 6px;
}

/* rezerwacja */

.rezerwacja {
    padding: 60px 40px;
    text-align: center;
}

.rezerwacja h2 {
    font-size: 36px;
    color: #d88a3b; /* Twój złoto-brązowy kolor */
    margin-bottom: 20px;
}

.rezerwacja-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    display: inline-block;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.rezerwacja-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rezerwacja-box li {
    font-size: 20px;
    margin: 12px 0;
}

.rezerwacja-box a {
    color: #d88a3b; /* pastelowe złoto jak „Twoja specjalistka” */
    text-decoration: none;
}

.rezerwacja-box a:hover {
    text-decoration: underline;
}

/* ANIMACJE SEKCJI */

.section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* cennik */
.slide-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.cennik {
    padding: 60px 40px;
    text-align: center;
}
.cennik-box-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.cennik h2 {
    font-size: 36px;
    color: #d88a3b; 
    margin-bottom: 20px;
}

.cennik-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);

    width: 320px; 
    text-align: left;
}


.cennik-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.cennik-box h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 20px;
}

.cena {
    font-size: 22px;
    font-weight: bold;
    color: #d88a3b;
}

.cennik-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.cennik-box ul li {
    margin-bottom: 8px;
    font-size: 18px;
}
a {
    color: #d88a3b; /* Twój kolor przewodni */
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

a:hover {
    background: rgba(216, 138, 59, 0.15); /* delikatne złote podświetlenie */
    color: #000; /* lekka zmiana koloru tekstu */
    box-shadow: 0 3px 10px rgba(0,0,0,0.15); /* miękki cień */
    transform: translateY(-2px); /* subtelne uniesienie */
}
/* Powiększone zdjęcie – modal */
.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.img-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255,255,255,0.4);
    animation: zoomIn 0.25s ease;
}

/* Animacja wejścia */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
#opinia {
    padding-bottom: 400px; 
}
/* === TELEFONY (małe ekrany) === */
@media (max-width: 600px) {

    body {
        font-size: 18px; 
        line-height: 1.6;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    p, li {
        font-size: 18px;
    }

    .hero {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        text-align: center;
    }

    .spec-img {
        width: 200px;
        height: auto;
    }
}
@media (max-width: 600px) {

    .cennik-box-container {
        display: block;
    }

    .cennik-box {
        width: 100%;
        margin-bottom: 25px;
        padding: 20px;
    }

    .cennik h2 {
        font-size: 28px;
    }

    .cennik-box h3 {
        font-size: 22px;
    }

    .cennik-box h4 {
        font-size: 18px;
    }

    .cena {
        font-size: 20px;
    }
}


@media (max-width: 600px) {
    section {
        padding: 50px 20px;
    }
}
@media (max-width: 600px) {
    .faq-item {
        padding: 20px;
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .rezerwacja-box {
        padding: 20px;
        font-size: 18px;
    }
}
@media (max-width: 600px) {

    article {
        font-size: 20px;          
        line-height: 1.7;         
        padding: 20px;            
    }

    article h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    article a {
        font-size: 20px;         
        padding: 12px 0;         
        display: block;          
    }

    article ul {
        margin-top: 15px;
    }

    article li {
        margin-bottom: 12px;
        font-size: 20px;
    }
}

/* Discount badges */
.cennik-box-container {
    position: relative;
}

/* Standout discount card — global fixed floating */
.discount-floating {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 260px;
    background: linear-gradient(135deg, #fff8ef 0%, #ffd9a6 50%, #ffb676 100%);
    color: #3b2a22;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.discount-floating::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,159,28,0.06);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.discount-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 8px 10px 8px 26px;
    width: 100%;
}

.discount-link svg { flex: 0 0 auto; }

.discount-floating .discount-inner { text-align: left; font-weight: 700; }
.discount-floating .discount-inner strong { display:block; font-size:18px; color:#b55a18; }
.discount-floating .discount-inner span { display:block; font-weight:600; font-size:13px; margin-top:6px; color:#5a3826; }



@media (max-width: 900px) {
    .discount-floating { position: fixed; bottom: 20px; top: auto; right: 16px; left: auto; width: calc(100% - 32px); transform: translateX(0); }
}

/* ensure page has extra space at bottom so anchors can scroll */
main {
    padding-bottom: 160px;
}

/* avoid fixed header covering targets */
.section {
    scroll-margin-top: 120px;
}
