/* === styles.css === */
/* Stylizacja w klimacie pola z klubniką: soczyste czerwienie, zieleń liści, biel śmietanki, naturalne akcenty */
/* Bez Google Fonts – używamy systemowych szeryfowych i bezszeryfowych */

/* Reset i podstawy */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif; /* elegancki, naturalny szeryf */
    background: #f9f7f3; /* delikatna śmietankowa biel */
    color: #2c1810; /* głęboki brąz czekolady – czytelny */
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Kontener centrujący */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* === BLOKI – kontrastowe, inspirowane klubniką === */

/* Blok 1: Oferta (czerwony jak dojrzała klubnika) */
#oferta {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%); /* soczysta czerwień */
    color: #fff;
    min-height: 470px;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 8px solid #8B0000; /* ciemniejszy akcent */
}

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

#oferta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

#oferta .btn-primary {
    display: inline-block;
    background: #fff;
    color: #b71c1c;
    padding: 1rem 2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#oferta .btn-primary:hover {
    background: #ffeb3b;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Blok 5: Opinie (jasnozielony jak liście) */
#opinie {
    background: #e8f5e9;
    border-top: 6px solid #4caf50;
    border-bottom: 6px solid #4caf50;
}

#opinie h2 {
    color: #2e7d32;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.review {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border-left: 6px solid #81c784;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.review p:first-child {
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

/* Blok 3: Produkty i artykuł (kremowy z akcentami) */
#produkty {
    background: #fff8e1;
    border-top: 6px solid #ffb300;
}

#produkty h2,
#produkty h3 {
    color: #ff6f00;
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-list {
    list-style: none;
    margin-bottom: 3rem;
}

.product-list li {
    background: #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px dashed #ffcc80;
    font-family: 'Courier New', Courier, monospace;
    color: #5d4037;
}

/* Artykuł – wyróżniony */
.article-tip {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #ff6f00;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.15);
    margin-top: 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-tip p {
    margin-bottom: 1.2rem;
}

.article-tip strong {
    color: #e65100;
}

.article-tip em {
    display: block;
    margin-top: 2rem;
    font-style: italic;
    color: #6d4c41;
    text-align: center;
    font-size: 0.95rem;
}

/* Blok 2: Newsletter (delikatny róż jak wnętrze klubniki) */
#newsletter {
    background: #fce4ec;
    border-top: 6px solid #ec407a;
    text-align: center;
}

#newsletter h2 {
    color: #c2185b;
    margin-bottom: 1rem;
}

#newsletter p {
    color: #880e4f;
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.subscribe-form input[type="email"] {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #f06292;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s;
}

.subscribe-form input[type="email"]:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.2);
}

.subscribe-form button {
    background: #e91e63;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: #c2185b;
    transform: scale(1.05);
}

/* Blok 4: Specjaliści (jasna zieleń) */
#specjalisci {
    background: #f1f8e9;
    border-top: 6px solid #689f38;
}

#specjalisci h2 {
    color: #33691e;
    text-align: center;
    margin-bottom: 2rem;
}

.specialist {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border-right: 6px solid #8bc34a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.specialist h4 {
    color: #558b2f;
    margin-bottom: 0.5rem;
}

/* Blok 4.1: Edukacja */
.edukacja {
    background: #fffde7;
    border-top: 6px solid #fbc02d;
}

.edukacja h3 {
    color: #f57f17;
    text-align: center;
    margin-bottom: 1.5rem;
}

.edukacja p {
    font-style: italic;
    color: #5d4037;
    line-height: 1.7;
}

/* Blok 5.2: Zostaw opinię */
.zostaw-opinie {
    background: #fff3e0;
    border-top: 6px solid #ff8f00;
    text-align: center;
}

.zostaw-opinie h3 {
    color: #e65100;
    margin-bottom: 1.5rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.review-form input,
.review-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #ffb74d;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #ff8f00;
    box-shadow: 0 0 0 4px rgba(255, 143, 0, 0.2);
}

.review-form textarea {
    min-height: 120px;
    resize: vertical;
}

.review-form button {
    background: #ff6f00;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.review-form button:hover {
    background: #e65100;
    transform: translateY(-2px);
}

/* Blok 6: Kontakt i mapa */
#kontakt {
    background: #e3f2fd;
    border-top: 6px solid #1e88e5;
}

#kontakt h2 {
    color: #1565c0;
    text-align: center;
    margin-bottom: 1.5rem;
}

#kontakt p {
    text-align: center;
    font-weight: bold;
    color: #0d47a1;
    margin-bottom: 2rem;
}

#kontakt iframe {
    border: 4px solid #90caf9;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Stopka */
.footer {
    background: #263238;
    color: #eceff1;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    margin-top: 3rem;
}

.footer p {
    opacity: 0.9;
}

/* === MOBILNA WERSJA === */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 1.5rem 0.8rem;
    }

    #oferta {
        min-height: 400px;
        padding: 2rem 1rem;
    }

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

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

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input[type="email"],
    .review-form input,
    .review-form textarea {
        font-size: 1rem;
    }

    .product-list li,
    .review,
    .specialist {
        padding: 1rem;
    }

    .article-tip {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

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

    #oferta .btn-primary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .container {
        padding: 1rem 0.5rem;
    }
}
