/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Główne ustawienia body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d1810;
    max-width: 1090px;
    margin: 0 auto;
    background: #f5f0e8;
}

.container {
    padding: 40px 20px;
}

/* Nagłówki */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #7d1e1e;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #7d1e1e;
    text-align: center;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #a02d2d;
}

h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #c93a3a;
    font-weight: 600;
}

/* Blok 1: Hero Section - Pole z truskawkami */
.hero-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 50%, #8b1e1e 100%);
    color: #fff;
    min-height: 470px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 30, 30, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.15em;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Przycisk CTA w hero */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #c92a2a;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 3px solid #fff;
}

.cta-button:hover {
    background: #ffe0e0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Sekcja specjalistów - Jasny krem z akcentami truskawek */
.specialists-section {
    background: #fff9f0;
    border-top: 4px solid #ff6b6b;
    border-bottom: 4px solid #ff6b6b;
}

.specialists-section h2 {
    color: #7d1e1e;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.specialist-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.15);
    border: 2px solid #ffe0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
    border-color: #ff6b6b;
}

.specialist-card h3 {
    color: #a02d2d;
    border-bottom: 2px solid #ffe0e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Sekcja opinii - Ciemniejszy odcień z białym tekstem */
.reviews-section {
    background: linear-gradient(to bottom, #8b1e1e 0%, #a02d2d 100%);
    color: #fff;
}

.reviews-section h2 {
    color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    color: #2d1810;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-left: 5px solid #ff6b6b;
}

.review-card h4 {
    color: #c93a3a;
    margin-bottom: 12px;
}

/* Sekcja produktów - Zielony jak liście truskawek */
.products-section {
    background: linear-gradient(135deg, #d4f1d4 0%, #a8e6a8 100%);
    color: #1e4d1e;
}

.products-section h2 {
    color: #2d5f2d;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.15);
    border: 2px solid #c8e6c9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
    border-color: #66bb6a;
}

.product-card h3 {
    color: #2e7d32;
}

/* Artykuł - Wyróżnienie */
.featured-article {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.2);
    border: 3px solid #ff6b6b;
    position: relative;
}

.featured-article::before {
    content: '🍓';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2.5em;
    background: #fff;
    padding: 0 10px;
}

.featured-article h2 {
    color: #7d1e1e;
    text-align: left;
    margin-bottom: 20px;
}

.featured-article p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #2d1810;
}

/* Sekcja newsletter - Różowy pastelowy */
.newsletter-section {
    background: linear-gradient(135deg, #ffe0e0 0%, #ffccd5 100%);
    color: #6d1e1e;
}

.newsletter-section h2 {
    color: #7d1e1e;
}

.newsletter-section p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 3px solid #ff6b6b;
    border-radius: 50px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #c92a2a;
}

.submit-button {
    padding: 15px 35px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.submit-button:hover {
    background: #c92a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 42, 42, 0.4);
}

/* Sekcja media mentions - Jasny beżowy */
.media-mentions-section {
    background: #faf5ef;
    border-top: 4px solid #a8e6a8;
    border-bottom: 4px solid #a8e6a8;
}

.media-mentions-section h2 {
    color: #2d5f2d;
}

.media-mentions-section p {
    line-height: 1.9;
    font-size: 1.05em;
    text-align: justify;
}

/* Sekcja zostaw opinię - Kremowy z czerwonymi akcentami */
.leave-review-section {
    background: #fff5f0;
}

.leave-review-section h2 {
    color: #7d1e1e;
}

.leave-review-section > .container > p {
    text-align: center;
    margin-bottom: 25px;
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    border-color: #c92a2a;
}

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

.review-form .submit-button {
    width: 100%;
}

/* Sekcja kontaktowa - Zielono-biała */
.contact-section {
    background: linear-gradient(to bottom, #e8f5e9 0%, #c8e6c9 100%);
    color: #1e4d1e;
}

.contact-section h2 {
    color: #2d5f2d;
}

.contact-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
    border: 3px solid #66bb6a;
}

/* Footer - Ciemny bordowy */
.footer-section {
    background: #5d1010;
    color: #ffe0e0;
    text-align: center;
    padding: 30px 20px;
}

.footer-section p {
    margin: 0;
}

.domainName {
    color: #ff6b6b;
    font-weight: 600;
}

/* Responsywność - Wersja mobilna */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.2em;
    }

    .container {
        padding: 30px 15px;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-section h1 {
        font-size: 1.6em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1.1em;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-article {
        padding: 25px 20px;
    }

    .featured-article::before {
        left: 20px;
        font-size: 2em;
    }

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

    .newsletter-form input[type="email"] {
        min-width: 100%;
    }

    .submit-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.4em;
    }

    .hero-section {
        min-height: 350px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .specialist-card,
    .product-card,
    .review-card {
        padding: 20px;
    }

    .featured-article {
        padding: 20px 15px;
    }
}
