/* =========================================================
   Ogólne ustawienia – styl „Kover” (tkany dywan)
   Bez zewnętrznych fontów
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    max-width: 1090px;
    margin: 0 auto;
    font-family: "Georgia", "Times New Roman", serif;
    background: #2b1d14;
    color: #f4efe9;
    line-height: 1.6;
}

/* =========================================================
   Sekcje – kontrastowe, „tkane” kolory
========================================================= */

section {
    padding: 48px 42px;
    border-bottom: 6px solid rgba(0, 0, 0, 0.25);
}

/* =========================================================
   Blok 1 – oferta
========================================================= */

#hero {
    min-height: 470px;
    background:
        repeating-linear-gradient(
            45deg,
            #7a1f1f,
            #7a1f1f 12px,
            #8f2a2a 12px,
            #8f2a2a 24px
        );
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #fff7e6;
}

#hero p {
    max-width: 720px;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* Link-przycisk */
#hero .btn {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 34px;
    background: #f2c14e;
    color: #3a220e;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

#hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25);
}

/* =========================================================
   Formularz
========================================================= */

#subscribe {
    background:
        repeating-linear-gradient(
            90deg,
            #1f3b4d,
            #1f3b4d 14px,
            #25485f 14px,
            #25485f 28px
        );
}

#subscribe h2 {
    margin-bottom: 20px;
    color: #e8f4ff;
}

#subscribe form {
    max-width: 420px;
}

#subscribe input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 22px;
    border: none;
    margin-bottom: 14px;
    font-size: 1rem;
}

#subscribe button {
    padding: 12px 30px;
    border-radius: 22px;
    border: none;
    background: #e8b44f;
    color: #2c1b0c;
    font-weight: bold;
    cursor: pointer;
}

#subscribe button:hover {
    opacity: 0.9;
}

/* =========================================================
   Specjaliści
========================================================= */

#specialists {
    background:
        repeating-linear-gradient(
            135deg,
            #3f2d54,
            #3f2d54 16px,
            #4c3766 16px,
            #4c3766 32px
        );
}

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

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

/* =========================================================
   Opinie
========================================================= */

#reviews {
    background:
        repeating-linear-gradient(
            45deg,
            #1e4620,
            #1e4620 14px,
            #255a29 14px,
            #255a29 28px
        );
}

#reviews ul {
    list-style: none;
    margin-bottom: 24px;
}

#reviews li {
    padding: 12px 18px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 10px;
    border-radius: 12px;
}

#reviews textarea {
    width: 100%;
    min-height: 100px;
    border-radius: 16px;
    border: none;
    padding: 14px;
    margin-bottom: 12px;
}

#reviews button {
    padding: 10px 26px;
    border-radius: 20px;
    border: none;
    background: #d6b36a;
    font-weight: bold;
    cursor: pointer;
}

/* =========================================================
   Produkty i artykuł
========================================================= */

#products {
    background:
        repeating-linear-gradient(
            90deg,
            #5a3b1e,
            #5a3b1e 18px,
            #6b4724 18px,
            #6b4724 36px
        );
}

#products ul {
    margin-bottom: 36px;
}

#products li {
    margin-bottom: 8px;
}

/* Wyraźne wyróżnienie artykułu */
#products article {
    background: #f5efe6;
    color: #2b1b0f;
    padding: 32px;
    border-radius: 28px;
    box-shadow: inset 0 0 0 4px #c9a86a;
}

#products article h3 {
    margin-bottom: 18px;
}

#products article p {
    margin-bottom: 14px;
}

/* =========================================================
   Edukacja i media
========================================================= */

#education-media {
    background:
        repeating-linear-gradient(
            135deg,
            #16384a,
            #16384a 16px,
            #1c465c 16px,
            #1c465c 32px
        );
}

/* =========================================================
   Lokalizacja
========================================================= */

#location {
    background:
        repeating-linear-gradient(
            45deg,
            #3a1f2b,
            #3a1f2b 14px,
            #4a2736 14px,
            #4a2736 28px
        );
}

#location iframe {
    margin-top: 16px;
    border-radius: 18px;
}

/* =========================================================
   Stopka
========================================================= */

footer {
    background: #1a120c;
    text-align: center;
    padding: 22px;
    font-size: 0.9rem;
}

/* =========================================================
   Wersja mobilna
========================================================= */

@media (max-width: 768px) {

    body {
        padding: 0 10px;
    }

    section {
        padding: 32px 22px;
    }

    #hero h1 {
        font-size: 1.9rem;
    }

    #hero {
        min-height: 470px;
    }

    #products article {
        padding: 22px;
    }
}
