/* Komentarz (PL): Podstawowe ustawienia strony w stylistyce "Kanadyjski las" */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Trebuchet MS", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #06130c;
    color: #f3f7f5;
}

/* Kontener o maksymalnej szerokości i centrowaniu */
.page-wrapper {
    max-width: 1090px;
    margin: 0 auto;
    background: #08150f;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Ogólne style sekcji */

.section {
    padding: 64px 32px;
}

.section-inner {
    max-width: 980px;
    margin: 0 auto;
}

.section h2,
.section h3 {
    margin-top: 0;
}

.section-intro {
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Blok 1: oferta – wysoki, kontrastowy hero */

.section-offer {
    min-height: 470px; /* Wymagana wysokość minimalna */
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #234b33 0%, #07140c 55%, #020705 100%);
    color: #f5fbf8;
    position: relative;
    overflow: hidden;
}

.section-offer::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 20% 10%, rgba(185, 236, 208, 0.22) 0, transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(132, 196, 161, 0.2) 0, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.offer-inner {
    position: relative;
    z-index: 1;
}

.section-offer h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.offer-lead {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.offer-text {
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 720px;
}

/* Przyciski */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #d6f5c2, #7bcf8c);
    color: #04301a;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #e5fad5, #8ee39f);
}

.btn-secondary {
    background: #145c36;
    color: #e8f7ef;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: #1a7344;
    transform: translateY(-1px);
}

/* Sekcja formularza – jasne tło dla dobrego kontrastu */

.section-form {
    background: #f0f5f2;
    color: #112119;
}

.form-inner {
    max-width: 560px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.subscribe-form label {
    font-weight: 600;
    color: #18291f;
}

.subscribe-form input[type="email"] {
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid #aabbb0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    background-color: #ffffff;
    color: #18291f;
}

.subscribe-form input[type="email"]:focus {
    border-color: #1a7344;
    box-shadow: 0 0 0 3px rgba(41, 141, 91, 0.25);
    background-color: #ffffff;
}

/* Sekcja zespołu – lekko ciemniejsza z zielonym akcentem */

.section-team {
    background: #0b2015;
    color: #f4faf6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.team-member {
    background: rgba(13, 43, 28, 0.9);
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(163, 216, 182, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #d7f2dd;
}

/* Sekcja edukacyjna zespołu – inny odcień dla kontrastu */

.section-team-education {
    background: linear-gradient(135deg, #163427, #0c2116);
    color: #edf8f2;
    padding: 40px 32px 56px;
}

.section-team-education h3 {
    margin-top: 0;
    color: #dff7e8;
}

/* Sekcja opinii – głębsza zieleń / niebieskawa */

.section-reviews {
    background: #051725;
    color: #f1f8fb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.review {
    background: rgba(9, 38, 59, 0.92);
    border-radius: 18px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(174, 212, 233, 0.45);
}

.review h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #e2f2ff;
}

.leave-review {
    margin-top: 32px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(215, 244, 255, 0.06);
    border: 1px dashed rgba(201, 235, 255, 0.5);
}

/* Sekcja produktów – jasne, lekko zielonkawe tło */

.section-products {
    background: hsl(130, 26%, 92%);
    color: #131f16;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.product {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px 22px;
    border: 1px solid #c7d9cc;
    box-shadow: 0 10px 22px rgba(33, 63, 41, 0.08);
}

.product h3 {
    margin-top: 0;
    color: #163628;
}

.product-meta {
    font-size: 0.92rem;
    color: #425747;
    margin-top: 8px;
}

/* Artykuł wyróżniony – mocne obramowanie i tło */

.article-highlight {
    margin-top: 40px;
    padding: 24px 22px 26px;
    border-radius: 20px;
    border-left: 6px solid #2c7b4c;
    background: linear-gradient(135deg, #e8f5eb, #f5fbf8);
    color: #142118;
    box-shadow: 0 20px 40px rgba(22, 54, 33, 0.25);
}

.article-highlight h2 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #154629;
}

.article-highlight p {
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Sekcja kontakt / mapa */

.section-contact {
    background: #0a120e;
    color: #f0f8f4;
}

.address {
    font-weight: 600;
    margin-bottom: 18px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.7);
}

.map-wrapper iframe {
    display: block;
}

/* Stopka */

.section-footer {
    background: #030807;
    color: #b6c0bc;
    padding: 20px 32px;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Linki ogólne */

a {
    color: #c3e7d0;
}

a:hover {
    color: #e1f6ea;
}

/* Responsywność – widok mobilny */

@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .section-offer {
        padding-top: 48px;
        padding-bottom: 48px;
        align-items: flex-start;
    }

    .section-offer h1 {
        font-size: 1.6rem;
    }

    .offer-lead {
        font-size: 1rem;
    }

    .team-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .article-highlight {
        margin-top: 28px;
    }

    .subscribe-form {
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-team-education {
        padding-inline: 20px;
    }
}

/* Bardzo małe ekrany */

@media (max-width: 480px) {
    .section {
        padding-inline: 16px;
    }

    .section-offer h1 {
        font-size: 1.4rem;
    }
}

/* Komentarz (PL): Podstawowe ustawienia strony w stylistyce "Kanadyjski las" */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Trebuchet MS", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #06130c;
    color: #f3f7f5;
}

/* Kontener o maksymalnej szerokości i centrowaniu */
.page-wrapper {
    max-width: 1090px;
    margin: 0 auto;
    background: #08150f;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Ogólne style sekcji */

.section {
    padding: 64px 32px;
}

.section-inner {
    max-width: 980px;
    margin: 0 auto;
}

.section h2,
.section h3 {
    margin-top: 0;
}

.section-intro {
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Blok 1: oferta – wysoki, kontrastowy hero */

.section-offer {
    min-height: 470px; /* Wymagana wysokość minimalna */
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #234b33 0%, #07140c 55%, #020705 100%);
    color: #f5fbf8;
    position: relative;
    overflow: hidden;
}

.section-offer::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 20% 10%, rgba(185, 236, 208, 0.22) 0, transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(132, 196, 161, 0.2) 0, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.offer-inner {
    position: relative;
    z-index: 1;
}

.section-offer h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.offer-lead {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.offer-text {
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 720px;
}

/* Przyciski */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #d6f5c2, #7bcf8c);
    color: #04301a;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #e5fad5, #8ee39f);
}

.btn-secondary {
    background: #145c36;
    color: #e8f7ef;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: #1a7344;
    transform: translateY(-1px);
}

/* Sekcja formularza – jasne tło dla dobrego kontrastu */

.section-form {
    background: #f0f5f2;
    color: #112119;
}

.form-inner {
    max-width: 560px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.subscribe-form label {
    font-weight: 600;
    color: #18291f;
}

.subscribe-form input[type="email"] {
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid #aabbb0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    background-color: #ffffff;
    color: #18291f;
}

.subscribe-form input[type="email"]:focus {
    border-color: #1a7344;
    box-shadow: 0 0 0 3px rgba(41, 141, 91, 0.25);
    background-color: #ffffff;
}

/* Sekcja zespołu – lekko ciemniejsza z zielonym akcentem */

.section-team {
    background: #0b2015;
    color: #f4faf6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.team-member {
    background: rgba(13, 43, 28, 0.9);
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(163, 216, 182, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #d7f2dd;
}

/* Sekcja edukacyjna zespołu – inny odcień dla kontrastu */

.section-team-education {
    background: linear-gradient(135deg, #163427, #0c2116);
    color: #edf8f2;
    padding: 40px 32px 56px;
}

.section-team-education h3 {
    margin-top: 0;
    color: #dff7e8;
}

/* Sekcja opinii – głębsza zieleń / niebieskawa */

.section-reviews {
    background: #051725;
    color: #f1f8fb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.review {
    background: rgba(9, 38, 59, 0.92);
    border-radius: 18px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(174, 212, 233, 0.45);
}

.review h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #e2f2ff;
}

.leave-review {
    margin-top: 32px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(215, 244, 255, 0.06);
    border: 1px dashed rgba(201, 235, 255, 0.5);
}

/* Sekcja produktów – jasne, lekko zielonkawe tło */

.section-products {
    background: hsl(130, 26%, 92%);
    color: #131f16;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.product {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px 22px;
    border: 1px solid #c7d9cc;
    box-shadow: 0 10px 22px rgba(33, 63, 41, 0.08);
}

.product h3 {
    margin-top: 0;
    color: #163628;
}

.product-meta {
    font-size: 0.92rem;
    color: #425747;
    margin-top: 8px;
}

/* Artykuł wyróżniony – mocne obramowanie i tło */

.article-highlight {
    margin-top: 40px;
    padding: 24px 22px 26px;
    border-radius: 20px;
    border-left: 6px solid #2c7b4c;
    background: linear-gradient(135deg, #e8f5eb, #f5fbf8);
    color: #142118;
    box-shadow: 0 20px 40px rgba(22, 54, 33, 0.25);
}

.article-highlight h2 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #154629;
}

.article-highlight p {
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Sekcja kontakt / mapa */

.section-contact {
    background: #0a120e;
    color: #f0f8f4;
}

.address {
    font-weight: 600;
    margin-bottom: 18px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.7);
}

.map-wrapper iframe {
    display: block;
}

/* Stopka */

.section-footer {
    background: #030807;
    color: #b6c0bc;
    padding: 20px 32px;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Linki ogólne */

a {
    color: #c3e7d0;
}

a:hover {
    color: #e1f6ea;
}

/* Responsywność – widok mobilny */

@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .section-offer {
        padding-top: 48px;
        padding-bottom: 48px;
        align-items: flex-start;
    }

    .section-offer h1 {
        font-size: 1.6rem;
    }

    .offer-lead {
        font-size: 1rem;
    }

    .team-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .article-highlight {
        margin-top: 28px;
    }

    .subscribe-form {
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-team-education {
        padding-inline: 20px;
    }
}

/* Bardzo małe ekrany */

@media (max-width: 480px) {
    .section {
        padding-inline: 16px;
    }

    .section-offer h1 {
        font-size: 1.4rem;
    }
}


