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

html {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    max-width: 1090px;
    margin: 0 auto;
    background: #f9f9f9;
    color: #2d1b0f;
    padding: 0 15px;
}

/* === KOLORYSTYKA W STYLU POLA Z KLUBNIKĄ === */
/* Czerwony klubnikowy: #c41e3a */
/* Zielony liści: #3d8b3d */
/* Kremowy beż pola: #fdf6e3 */
/* Ciemny brąz ziemi: #2d1b0f */
/* Jasny beż tła: #fdf6e3 */

/* === BLOK 1: OFERTA (hero) === */
#oferta {
    min-height: 470px;
    background: linear-gradient(135deg, #c41e3a 0%, #a1162e 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

#oferta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ffffff22" d="M50 15c-10 0-18 8-18 18s8 18 18 18 18-8 18-18-8-18-18-18zm0 10c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8z"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

#oferta h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

#oferta p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

#oferta .button {
    display: inline-block;
    background: #3d8b3d;
    color: #fff;
    padding: 14px 36px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(61, 139, 61, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#oferta .button:hover {
    background: #2e6b2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 139, 61, 0.5);
}

/* === OGÓLNE SEKCJE === */
section {
    margin: 40px 0;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fdf6e3;
}

/* Kontrastowe tła dla różnych bloków */
#specjalisci { background: #fff; border: 2px solid #c41e3a; }
#opinie { background: #e8f5e8; }
#zostaw-opinie { background: #fff3e6; }
#formularz { background: #f0f8f0; }
#aktywnosc-specjalistow { background: #f9f9ed; }
#produkty { background: #fff; border-left: 8px solid #c41e3a; }
#kontakt { background: #f5f5dc; }

section h2, section h3 {
    color: #c41e3a;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

section h2::after, section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #3d8b3d;
    border-radius: 2px;
}

/* === LISTY === */
ul {
    list-style: none;
}

ul li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
}

ul li::before {
    content: '🍓';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

/* === ARTYKUŁ (wyróżniony) === */
#produkty article {
    margin-top: 50px;
    padding: 35px;
    background: #fff;
    border: 3px dashed #c41e3a;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.15);
}

#produkty article h3 {
    font-size: 1.9rem;
    color: #2d1b0f;
    text-align: center;
    margin-bottom: 25px;
}

#produkty article p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05rem;
    color: #333;
}

#produkty article p:first-of-type {
    font-weight: bold;
    color: #3d8b3d;
}

/* === FORMULARZ === */
#formularz form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

#formularz input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.1rem;
    border: 2px solid #c41e3a;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

#formularz input[type="email"]:focus {
    border-color: #3d8b3d;
    box-shadow: 0 0 0 4px rgba(61, 139, 61, 0.2);
}

#formularz button {
    background: #3d8b3d;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(61, 139, 61, 0.3);
}

#formularz button:hover {
    background: #2e6b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 139, 61, 0.4);
}

/* === MAPA === */
#kontakt iframe {
    border-radius: 16px;
    border: 3px solid #c41e3a;
    margin-top: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* === FOOTER === */
footer {
    text-align: center;
    padding: 25px;
    background: #2d1b0f;
    color: #fdf6e3;
    font-size: 0.95rem;
    margin-top: 50px;
    border-radius: 16px 16px 0 0;
}

footer p {
    margin: 0;
}

.domainName {
    color: #c41e3a;
    font-weight: bold;
}

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

    #oferta {
        padding: 40px 20px;
        min-height: 400px;
    }

    #oferta h1 {
        font-size: 2.2rem;
    }

    #oferta p {
        font-size: 1.1rem;
    }

    section {
        padding: 25px 20px;
        margin: 25px 0;
    }

    #formularz form {
        padding: 0 10px;
    }

    ul li {
        font-size: 1rem;
        padding-left: 28px;
    }

    ul li::before {
        font-size: 1.2rem;
    }

    #produkty article {
        padding: 25px;
    }

    #produkty article h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    #oferta h1 {
        font-size: 1.9rem;
    }

    #oferta .button {
        padding: 12px 28px;
        font-size: 1.1rem;
    }

    section h2, section h3 {
        font-size: 1.5rem;
    }

    #formularz input[type="email"],
    #formularz button {
        font-size: 1rem;
    }
}
