/* Komentarz (PL): Ustawienia bazowe w stylu „łowieckim” – zielenie, brązy, pomarańcze */

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

body {
    margin: 0 auto;
    max-width: 1090px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background-color: #0f120c; /* ciemne tło wokół bloków */
    color: #f5f5f5;
    line-height: 1.6;
    padding: 0 16px 40px;
}

/* Ogólne style bloków */

.block {
    padding: 48px 20px;
    margin: 24px 0;
    border-radius: 14px;
    overflow: hidden;
}

/* Kontrastowe tła dla poszczególnych sekcji */

.block-offer {
    background: linear-gradient(135deg, #1f3b1c, #4c2b12);
    color: #fdfaf4;
    min-height: 470px; /* wymagana wysokość minimalna */
    display: flex;
    align-items: center;
}

.block-products {
    background: #182315;
    color: #f4f4e8;
}

.block-reviews {
    background: #3d2d16;
    color: #fdf5e6;
}

.block-subscribe {
    background: #1d3421;
    color: #f2f7f0;
}

.block-teaching {
    background: #1f1f1a;
    color: #f6f6e9;
}

.block-specialists {
    background: #243124;
    color: #f4f7f3;
}

.block-location {
    background: #2b2215;
    color: #fdf6ea;
}

.block-footer {
    background: #10130f;
    color: #cccccc;
    text-align: center;
    font-size: 0.9rem;
}

/* Nagłówki */

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

h1 {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.1rem;
}

/* BLOK 1 – oferta */

.offer-inner {
    max-width: 640px;
}

.offer-subtitle {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.offer-points {
    padding-left: 20px;
    margin-bottom: 24px;
}

.offer-points li {
    margin-bottom: 6px;
}

/* Przyciski i link-przycisk */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: #f28a1a;
    color: #1b1007;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.4);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #ff9b30;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.45);
}

.btn-secondary {
    background: #f6f0d5;
    color: #243124;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}

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

/* BLOK 3 – produkty i artykuł */

.product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.product-item {
    background: rgba(9, 22, 8, 0.9);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(189, 230, 171, 0.18);
}

/* Wyróżnienie artykułu */

.feature-article {
    background: linear-gradient(135deg, #3d2a10, #234422);
    border-radius: 12px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 212, 128, 0.6);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 14px 30px rgba(0,0,0,0.5);
}

.feature-article h2 {
    margin-bottom: 10px;
}

.feature-article p {
    margin-bottom: 10px;
}

/* BLOK 5 – opinie */

.review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.review-item {
    background: rgba(18, 11, 4, 0.88);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 222, 173, 0.4);
    font-size: 0.95rem;
}

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

.leave-review {
    border-top: 1px dashed rgba(255, 245, 220, 0.4);
    padding-top: 14px;
    font-size: 0.96rem;
}

/* BLOK 2 – formularz subskrypcji */

.block-subscribe {
    text-align: left;
}

.subscribe-text {
    max-width: 520px;
    margin-bottom: 20px;
}

.subscribe-form {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form label {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.subscribe-form input[type="email"] {
    padding: 9px 11px;
    border-radius: 999px;
    border: 1px solid rgba(217, 230, 211, 0.7);
    background: rgba(6, 13, 7, 0.9);
    color: #ffffff;
    outline: none;
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(237, 244, 234, 0.7);
}

.subscribe-form input[type="email"]:focus {
    border-color: #f6f0d5;
    box-shadow: 0 0 0 1px #f6f0d5;
}

/* BLOK 4.1 – edukacja i media */

.block-teaching p {
    max-width: 650px;
}

/* BLOK 4 – specjaliści */

.specialist-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.specialist-item {
    background: rgba(10, 22, 10, 0.95);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(186, 222, 186, 0.3);
    font-size: 0.95rem;
}

/* BLOK 6 – lokalizacja i mapa */

.address {
    font-weight: 500;
    margin-bottom: 16px;
}

.map-wrapper iframe {
    display: block;
    border-radius: 10px;
}

/* BLOK 7 – stopka */

.block-footer p {
    margin: 0;
    padding: 14px 0 6px;
}

/* Linki */

a {
    color: #ffb75c;
}

a:hover,
a:focus {
    color: #ffd28b;
}

/* Responsywność – wersja mobilna */

@media (max-width: 768px) {
    body {
        padding: 0 10px 30px;
    }

    .block {
        padding: 32px 16px;
        margin: 16px 0;
    }

    .offer-inner {
        max-width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .product-list,
    .review-list,
    .specialist-list {
        grid-template-columns: 1fr;
    }

    .feature-article {
        padding: 18px 14px;
    }

    .subscribe-form {
        max-width: 100%;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}

/* Responsywność – większe ekrany */

@media (min-width: 1090px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
}


