/* ===============================
   OGÓLNE USTAWIENIA STRONY
   Styl: Dżungla / Tropikalny
   =============================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    max-width: 1090px;
    margin: 0 auto;
    font-family: "Trebuchet MS", "Verdana", "Arial", sans-serif; /* bez Google Fonts */
    background-color: #0f1f17; /* ciemna zieleń dżungli */
    color: #eef5ee;
    line-height: 1.6;
}

/* ===============================
   SEKCJE – WSPÓLNE
   =============================== */

section {
    padding: 48px 36px;
}

h1, h2, h3 {
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 16px;
}

/* ===============================
   BLOK 1 – OFFER
   =============================== */

#offer {
    min-height: 470px;
    background: linear-gradient(135deg, #1c3b2a, #2e5a3e);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 4px solid #6fbf73;
}

#offer h1 {
    font-size: 2.6rem;
    color: #e8ffe9;
}

#offer h2 {
    font-size: 1.4rem;
    color: #b7e4c7;
}

#offer p {
    max-width: 720px;
    font-size: 1.05rem;
}

/* Link jako przycisk */
#offer .btn {
    margin-top: 26px;
    align-self: flex-start;
    background-color: #6fbf73;
    color: #10261b;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

#offer .btn:hover {
    background-color: #8fe39a;
    transform: translateY(-2px);
}

/* ===============================
   BLOK – PRODUKTY
   =============================== */

#products {
    background-color: #1b2f24;
}

#products ul {
    list-style: none;
    margin-bottom: 32px;
}

#products li {
    padding: 10px 0;
    border-bottom: 1px solid #355f47;
}

/* Wyróżnienie artykułu */
#products article {
    background-color: #f1fff4;
    color: #1a2f23;
    padding: 32px;
    border-radius: 8px;
    border-left: 6px solid #6fbf73;
}

#products article h3 {
    color: #245c3a;
}

/* ===============================
   BLOK – SPECJALIŚCI
   =============================== */

#specialists {
    background-color: #243f31;
}

#specialists ul {
    list-style: square;
    padding-left: 20px;
}

#specialists li {
    margin-bottom: 10px;
}

/* ===============================
   BLOK – EDUKACJA I MEDIA
   =============================== */

#education-media {
    background-color: #16261d;
    border-top: 3px solid #3fa36c;
    border-bottom: 3px solid #3fa36c;
}

/* ===============================
   BLOK – OPINIE
   =============================== */

#reviews {
    background-color: #2c4a3a;
}

#reviews ul {
    list-style: none;
}

#reviews li {
    background-color: rgba(0,0,0,0.25);
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 6px;
}

/* ===============================
   BLOK – FORMULARZ SUBSKRYPCJI
   =============================== */

#subscribe {
    background-color: #1f3529;
}

form {
    max-width: 420px;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 5px;
    border: 1px solid #6fbf73;
    background-color: #0f1f17;
    color: #eaffea;
}

input::placeholder,
textarea::placeholder {
    color: #9acfae;
}

button {
    background-color: #6fbf73;
    color: #10261b;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #8fe39a;
    transform: translateY(-2px);
}

/* ===============================
   BLOK – DODANIE OPINII
   =============================== */

#add-review {
    background-color: #20382b;
}

/* ===============================
   BLOK – KONTAKT / MAPA
   =============================== */

#contact {
    background-color: #122018;
}

#contact iframe {
    margin-top: 20px;
    border-radius: 6px;
}

/* ===============================
   STOPKA
   =============================== */

footer {
    background-color: #0b1510;
    text-align: center;
    padding: 22px;
    font-size: 0.9rem;
    color: #9acfae;
}

/* ===============================
   WERSJA MOBILNA
   =============================== */

@media (max-width: 768px) {

    section {
        padding: 32px 20px;
    }

    #offer h1 {
        font-size: 2rem;
    }

    #offer {
        min-height: 470px;
    }

    body {
        font-size: 0.95rem;
    }

    #products article {
        padding: 22px;
    }
}
