/* ==========================================================
   Zmienne
   ========================================================== */
:root {
    --font-base: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --color-text: #1f2328;
    --color-muted: #656d76;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f6f7;
    --color-primary: #b5006d;
    --color-border: #e1e4e8;
    --container: 1200px;
    --header-h: 70px;
    --offcanvas-w: 300px;
    --transition: .3s ease;
}

/* ==========================================================
   Reset
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

body.no-scroll { overflow: hidden; }

/* ==========================================================
   Layout
   ========================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px;
    outline: 1px solid #eee;
    background:#fefefe;
}
.site-header .container,
.site-footer .container{
    outline: unset;
    padding: 12px 24px;
}
.section { padding: 60px 0; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--color-primary); color: #fff; padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h);
}
.logo {
font-size: 24px;
color: #1d1d1d;
    font-family: "Bona Nova", serif;
    font-weight: 500;}
.logo:hover { text-decoration: none; }

.nav-desktop ul { display: flex; gap: 28px; }
.nav-desktop a { color: var(--color-text); font-weight: 500; }
.nav-desktop a.active,
.nav-desktop a:hover { color: var(--color-primary); text-decoration: none; }

.nav-desktop {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

nav.nav-desktop .tel{
    padding:4px 16px;
    outline:1px solid #1d1d1d;
    color: #1d1d1d;
}
nav.nav-desktop .tel:hover{
    background:#1d1d1d;
    color:#fafafa;
}

.menu-toggle {
    display: none;
    background: none; border: 0; padding: 8px;
    font-size: 1.5rem; color: var(--color-text);
}

/* ==========================================================
   Off-canvas
   ========================================================== */
.offcanvas {
    position: fixed; top: 0; right: 0; z-index: 300;
    width: var(--offcanvas-w); max-width: 85vw; height: 100%;
    background: var(--color-bg);
    padding: 70px 24px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
}
.offcanvas.is-open { transform: translateX(0); visibility: visible; }

.offcanvas-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: 0; font-size: 1.5rem; color: var(--color-text); padding: 8px;
}
.offcanvas li + li { border-top: 1px solid var(--color-border); }
.offcanvas a { display: block; padding: 14px 0; color: var(--color-text); font-weight: 500; }
.offcanvas a.active { color: var(--color-primary); }

.offcanvas-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0, 0, 0, .5);
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.offcanvas-overlay.is-open { opacity: 1; visibility: visible; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    font-size: .9rem;
    color: var(--color-muted);
}
.footer-inner {
    display: flex; flex-wrap: wrap; gap: 16px;
    align-items: center; justify-content: space-between;
}
.footer-inner p { margin: 0; }
.social { display: flex; gap: 16px; }
.social a { color: var(--color-muted); font-size: 1.1rem; }
.social a:hover { color: var(--color-primary); }

/* ==========================================================
   Responsywność
   ========================================================== */
@media (max-width: 991px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

.content ul {
    padding-left: 5%;
    margin: 12px 0;
    list-style-type: disc;
}


  /* ====== KOLORY – zmień pod swój salon ====== */
  /* Sekcja */
  .cennik details {
    border-bottom: 1px solid #1d1d1d;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .cennik summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-size: 20px;
  }
  .cennik summary::-webkit-details-marker { display: none; }
  .cennik summary:focus-visible { outline: 2px solid #1d1d1d; outline-offset: -2px; }

  /* Strzałka */
  .cennik summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #1d1d1d;
    border-bottom: 2px solid #1d1d1d;
    transform: rotate(-45deg);          /* > zamknięte */
    transition: transform .1s ease;
    flex-shrink: 0;
    margin-left: 8px;
  }
  .cennik details[open] summary::after { transform: rotate(45deg); } /* v otwarte */
  
  /* Lista zabiegów */
  .cennik ul {
    list-style: none;
    margin: 0;
    padding: 8px 24px;
  }
  .cennik li {
    display: flex;
    align-items: baseline;
    padding: 6px 0;
  }
  .cennik li .zabieg { flex-shrink: 1; }
  .cennik li::after { content: none; }
  .cennik li .kropki {
    flex: 1;
    border-bottom: 2px dotted #1d1d1d33;
    min-width: 20px;
    margin:4px 0;
  }
  .cennik li .cena {
    font-weight: 500;
    white-space: nowrap;
  }

  @media (prefers-reduced-motion: reduce) {
    .cennik summary::after { transition: none; }
  }

/* ======================== Moje ======================== */

main{
    min-height: 90dvh;
    background:#fafafa;
}

a.button {
    padding: 12px 36px;
    outline: 1px solid #1d1d1d;
    border-radius: 2px;
    text-decoration: unset;
    color: #1d1d1d;
   
    display: inline-block;
}
a.button:hover{
    color:#fafafa;
    background:#1d1d1d;
}

a.button::after {
    content: " \f061"; /* Kod Unicode dla ikony fa-solid fa-arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Wymagane dla darmowych ikon w stylu Solid */
    margin-left: 8px; /* Opcjonalnie: odstęp od tekstu przycisku */
    transition: 200ms;
}
a.button:hover::after{
    margin-left: 12px;
}

.home_content h1{
    font-size: 16vw;
    margin: 0;
    line-height: 1;
    padding: 0;
    width: 100%;
    overflow: hidden;
    font-family: "Bona Nova", serif;
    font-weight: 500;
}
.home_content .inner {
    display: grid;
    grid-template-columns: auto auto;
    gap: 48px;
}

.home_content .inner .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.nowosci_title{
    font-size:4vw;
}

.nowosci{
    display: flex;
    flex-direction: column;
    gap:48px;
}

p{
    word-break: break-word;
}

.nowosci .nowosc {
    display: grid;
    grid-template-columns: auto auto;
    gap: 48px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    box-sizing: border-box;
}

.nowosci .nowosc .image {
    width: 100%;
    max-width: 480px;
    min-width: 480px;  
}

@media (max-width: 991px) {
    .home_content .inner {
        display: grid;
        grid-template-columns: auto;
        gap: 24px;
    }
    .home_content h1 {
        font-size: 25vw;
    }
    .home_content img {
        max-width: 100%;
        height: auto;
        display: block;
        width: 100%;
        max-height: 340px;
        object-fit: cover;
    }
    .nowosci {
        gap: 24px;
    }
    .nowosci .nowosc {
        display: grid;
        grid-template-columns: auto;
        gap: 24px;
        padding: 12px 0;
        border-top: 1px solid #eee;
    }
    .nowosci .nowosc .image{
        width:100%;
        min-width: unset;
        max-width: unset;
        max-height: 360px;
        object-fit: cover;
    }
}