/* === OGÓLNE USTAWIENIA STRONY === */
body {
    margin: 0 auto;
    max-width: 1090px;
    font-family: 'Verdana', 'Trebuchet MS', sans-serif;
    background-color: #fffaf9;
    color: #3b2f2f;
    line-height: 1.6;
    padding: 0;
}

h1, h2, h3 {
    font-weight: bold;
    text-align: center;
    margin-top: 0;
}

section {
    padding: 40px 25px;
    border-radius: 14px;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* === BLOK 1 – OFERTA === */
#oferta {
    background: linear-gradient(135deg, #ffb6c1, #ffd1dc);
    color: #3b2f2f;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#oferta h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

#oferta p {
    font-size: 1.1em;
    max-width: 700px;
}

#oferta .btn {
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 25px;
    margin-top: 30px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#oferta .btn:hover {
    background-color: #e0559c;
    transform: scale(1.05);
}

/* === BLOK 2 – FORMULARZ === */
#formularz {
    background-color: #fff0f5;
    color: #3b2f2f;
    text-align: center;
}

#formularz form {
    display: inline-block;
    background-color: #ffffff;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#formularz input[type="email"],
#formularz textarea {
    width: 100%;
    max-width: 320px;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ffc0cb;
    border-radius: 10px;
    font-size: 1em;
}

#formularz button {
    background-color: #ff80aa;
    border: none;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 22px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#formularz button:hover {
    background-color: #ff6699;
}

/* === BLOK 3 – PRODUKTY I ARTYKUŁ === */
#produkty {
    background-color: #faf0e6;
    color: #4a2c2a;
}

#produkty ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

#produkty li {
    background-color: #ffe4e1;
    margin: 10px auto;
    padding: 10px 0;
    border-radius: 8px;
    width: 80%;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#produkty li:hover {
    background-color: #ffccd5;
}

/* Artykuł wyróżniony */
#produkty article {
    background-color: #fff8dc;
    border-left: 6px solid #ff69b4;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    box-shadow: 0 2px 8px rgba(255,105,180,0.3);
}

/* === BLOK 4 – SPECJALIŚCI === */
#specjalisci {
    background-color: #e6f9ff;
    color: #2f3b3b;
}

#specjalisci ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

#specjalisci li {
    margin: 8px 0;
    font-weight: bold;
}

/* === BLOK 4.1 – DZIAŁALNOŚĆ === */
#dzialalnosc {
    background-color: #fff5ee;
    color: #3b2f2f;
    font-style: italic;
}

/* === BLOK 5 – OPINIE === */
#opinie {
    background-color: #fdf5e6;
    color: #3b2f2f;
}

#opinie ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

#opinie li {
    margin: 12px auto;
    padding: 10px;
    max-width: 80%;
    background-color: #fffaf0;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

/* BLOK 5.2 – FORMULARZ OPINII */
#dodaj-opinie {
    background-color: #fce4ec;
    text-align: center;
}

#dodaj-opinie form {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 14px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#dodaj-opinie textarea {
    width: 100%;
    max-width: 400px;
    height: 100px;
    padding: 10px;
    border: 2px solid #f48fb1;
    border-radius: 10px;
}

#dodaj-opinie button {
    background-color: #ec407a;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#dodaj-opinie button:hover {
    background-color: #d81b60;
}

/* === BLOK 6 – KONTAKT I MAPA === */
#kontakt {
    background-color: #fff8f0;
    color: #3b2f2f;
    text-align: center;
}

#kontakt iframe {
    border-radius: 12px;
    margin-top: 20px;
}

/* === BLOK 7 – STOPKA === */
footer {
    background-color: #f4c2c2;
    color: #3b2f2f;
    text-align: center;
    padding: 15px 0;
    border-radius: 12px;
    font-weight: bold;
}

/* === PRZYCISKI OGÓLNE === */
button, .btn {
    font-family: inherit;
    letter-spacing: 0.5px;
}

/* === WERSJA MOBILNA === */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    #oferta {
        padding: 30px 10px;
    }

    #oferta h1 {
        font-size: 1.7em;
    }

    #produkty li, #opinie li {
        width: 100%;
    }

    #formularz form, #dodaj-opinie form {
        width: 90%;
    }
}
