/* style.css - Styl Holistyczny (Light & Nature) */
:root {
    --primary-color: #7d9685;
    /* Szałwiowa zieleń - natura */
    --accent-color: #decfb8;
    /* Piaskowy beż - ciepło */
    --text-color: #4a4a4a;
    /* Ciemny szary zamiast czarnego */
    --bg-light: #ffffff;
    --bg-offwhite: #f9fbf9;
    /* Bardzo delikatna zieleń/biel */
    --bg-soft-green: #edf2ee;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.8;
    font-weight: 300;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #2c3e35;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hasło kaligraficzne */
.script-quote {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    text-transform: none;
    line-height: 1.2;
    margin: 20px 0;
}

.subtitle-script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: -15px;
    margin-bottom: 30px;
}


/* Nawigacja */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* HERO SECTION */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2073&auto=format&fit=crop');
    height: 90vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 5px;
}

/* Przyciski */
.btn-holistic {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.hero-overlay .btn-holistic {
    background-color: transparent;
    border: 1px solid #fff;
}

.btn-holistic:hover,
.hero-overlay .btn-holistic:hover {
    background-color: #5a6e61;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* SEKCJE Z TŁEM (Parallax Breaks) */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.bg-stones {
    background-image: url('https://images.unsplash.com/photo-1447752875215-b2761acb3c5d?q=80&w=2070&auto=format&fit=crop');
}

.bg-leaves {
    background-image: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=1920&auto=format&fit=crop');
}

/* OGÓLNE SEKCJE TEKSTOWE */
.text-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
}

.bg-light-green {
    background-color: var(--bg-soft-green);
    max-width: 100%;
    padding: 80px 20px;
}

.text-left {
    text-align: left;
}

.text-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Większy podpis pod nagłówkiem „Twoje ciało nie kłamie”.
   Selektor musi być bardziej szczegółowy niż .text-section p. */
.text-section p.intro-subtitle {
    font-size: 1.9rem;
    line-height: 1.25;
}


/* Układy kolumnowe (Tekst Główny i O mnie) */
.two-columns,
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.box-highlight {
    background: var(--bg-offwhite);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.quote-text {
    font-size: 1.3rem !important;
    color: var(--primary-color);
    font-style: italic;
    margin: 30px 0 !important;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}

.profile-img {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.cert-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.cert-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.cert-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* METODY KARTY */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.3s;
    border-top: 3px solid transparent;
}

.method-card:hover {
    transform: translateY(-5px);
    border-top: 3px solid var(--primary-color);
}

.method-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--bg-soft-green);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e35;
}

.method-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.disclaimer {
    font-size: 0.85rem !important;
    color: #888;
    margin-top: 40px;
    text-align: center;
}

/* NEWSLETTER */
.newsletter-section {
    background-color: var(--accent-color);
    padding: 60px 20px;
    text-align: center;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.newsletter-form input {
    padding: 12px 15px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
}

.newsletter-form button {
    margin-top: 0;
}

/* DOKUMENTY PRAWNE ROZWIJANE (ACCORDION) */
.legal-section {
    background-color: #eef2ef;
    padding: 40px 20px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-dropdown {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.legal-dropdown summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-color);
    list-style: none;
    /* Ukrywa domyślną strzałkę w niektórych przeglądarkach */
    position: relative;
    outline: none;
}

/* Custom strzałka */
.legal-dropdown summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.legal-dropdown[open] summary::after {
    content: '−';
}

/* Usunięcie domyślnej strzałki w Safari/Chrome */
.legal-dropdown summary::-webkit-details-marker {
    display: none;
}

.legal-content {
    padding: 0 20px 20px 20px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content p {
    margin-bottom: 10px;
}

/* MENU HAMBURGER (Zero-JS) */
.menu-checkbox {
    display: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    user-select: none;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* RESPONSYWNOŚĆ MOBILE */
@media (max-width: 768px) {
    .script-quote {
        font-size: 2.5rem;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .two-columns,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        box-sizing: border-box;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        border-top: 1px solid #f0f0f0;
    }

    .menu-checkbox:checked~.nav-menu {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .lang-switcher {
        margin-top: 20px;
    }

    .text-section p.intro-subtitle {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .text-section p.pakiety-subtitle {
        font-size: 1.5rem;
        line-height: 1.25;
    }
}

.lang-switcher a img:hover {
    opacity: 1 !important;
}

/* --- POPRAWKI DO SEKCJI "O MNIE" (CERTYFIKATY) --- */
.certificates {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Układ 2-kolumnowy dla listy certyfikatów */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 20px;
}

/* Responsywność - na telefonach wracamy do jednej kolumny */
@media (max-width: 768px) {
    .two-col-list {
        grid-template-columns: 1fr;
    }
}

/* Wyśrodkowanie pionowe obrazka w sekcji O mnie */
.about-grid {
    align-items: center;
}

/* --- PIERWSZA SEKCJA „O MNIE” — WERSJA POPRAWIONA --- */
.about-feature-section {
    background: #fff;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.about-feature-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(820px, 70%) minmax(300px, 30%);
    min-height: 540px;
    max-width: 1440px;
    margin: 0 auto;
    background: var(--bg-offwhite);
    overflow: hidden;
}

.about-feature-hero::after {
    display: none;
}

.about-feature-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 68px 2.5vw 68px 4vw;
}

.section-eyebrow {
    display: none;
}

.about-feature-copy h2 {
    font-size: clamp(1.9rem, 2.15vw, 2.7rem);
    line-height: 1.16;
    letter-spacing: 0.02em;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 980px;
    margin: 0 0 26px 0;
    text-wrap: balance;
}

.about-feature-copy .about-lead {
    max-width: 760px;
    font-size: 1.06rem;
    line-height: 1.9;
    margin-bottom: 0;
}

.about-feature-photo {
    position: relative;
    z-index: 1;
    min-height: 540px;
    overflow: visible;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 26px 26px 0;
    box-sizing: border-box;
}

.about-feature-photo::before {
    display: none;
}

.about-feature-photo .profile-img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-story {
    max-width: 1100px;
    margin: 0 auto;
    padding: 55px 20px 10px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-story p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-story .quote-text {
    margin-top: 0 !important;
    font-size: 1.55rem !important;
    line-height: 1.55;
}

.about-feature-section .certificates {
    max-width: 1100px;
    padding: 35px 20px 85px;
}

.about-feature-section .certificates h3 {
    margin-top: 0 !important;
}

@media (max-width: 1100px) {
    .about-feature-hero {
        grid-template-columns: 1.38fr 0.62fr;
        min-height: 500px;
    }

    .about-feature-copy {
        padding: 58px 3.5vw 58px 4.5vw;
    }

    .about-feature-copy h2 {
        font-size: clamp(1.75rem, 2.45vw, 2.25rem);
        max-width: 760px;
    }

    .about-feature-copy .about-lead {
        max-width: 680px;
    }

    .about-feature-photo {
        min-height: 500px;
        padding: 22px 22px 22px 0;
    }
}

@media (max-width: 820px) {
    .about-feature-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-feature-photo {
        min-height: 420px;
        order: -1;
        padding: 24px;
    }

    .about-feature-photo::before {
        display: none;
    }

    .about-feature-photo .profile-img {
        object-fit: cover;
        object-position: center 20%;
        border-radius: 24px;
    }

    .about-feature-copy {
        padding: 50px 24px 45px;
    }

    .about-feature-copy h2 {
        font-size: 1.9rem;
        line-height: 1.18;
        letter-spacing: 0.02em;
        max-width: none;
        text-wrap: pretty;
    }

    .about-feature-copy .about-lead,
    .about-story p {
        font-size: 1.02rem;
        line-height: 1.8;
    }

    .about-story {
        padding: 45px 24px 5px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-story .quote-text {
        font-size: 1.35rem !important;
    }

    .about-feature-section .certificates {
        padding: 25px 24px 65px;
    }
}

/* --- BUTTON WTÓRNY DLA BANERU COOKIE --- */
.btn-secondary-cookie {
    background-color: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-secondary-cookie:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.text-section p.pakiety-subtitle {
    font-size: 1.6rem;
    line-height: 1.25;
}