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

/* Główne style body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    max-width: 1090px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5016 100%);
}

/* Container */
.container {
    padding: 20px;
    max-width: 100%;
}

/* Blok 1: Hero - Oferta sprzedażowa */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #1a4d2e 50%, #0f3d1f 100%);
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f0f8e8;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(138, 193, 82, 0.03) 35px, rgba(138, 193, 82, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(106, 168, 79, 0.03) 35px, rgba(106, 168, 79, 0.03) 70px);
    opacity: 0.6;
}

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

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #d4f1a7;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #b8e986;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.15em;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e8f5d7;
    line-height: 1.8;
}

/* Przycisk CTA */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #8ab852 0%, #6aa84f 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(138, 184, 82, 0.4);
    border: 3px solid #a8d45f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #a8d45f 0%, #8ab852 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(168, 212, 95, 0.6);
}

/* Blok opinii */
.reviews {
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5d7 100%);
    padding: 60px 20px;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(138, 193, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(106, 168, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2d5016;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.review-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.15);
    border-left: 5px solid #8ab852;
    transition: all 0.3s ease;
    position: relative;
}

.review-item::before {
    content: '🌿';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2em;
    opacity: 0.2;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.25);
    border-left-color: #6aa84f;
}

.review-item h3 {
    color: #1a4d2e;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.review-item p {
    color: #4a4a4a;
    font-style: italic;
    line-height: 1.7;
}

/* Formularz opinii */
.review-form-section {
    background: linear-gradient(135deg, #6aa84f 0%, #4d7c3a 100%);
    padding: 60px 20px;
    color: #f0f8e8;
}

.review-form-section h2 {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 700;
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.05em;
    background: rgba(255, 255, 255, 0.95);
    color: #2d2d2d;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(168, 212, 95, 0.5);
}

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

.review-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8ab852 0%, #6aa84f 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-form button:hover {
    background: linear-gradient(135deg, #a8d45f 0%, #8ab852 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Blok specjalistów */
.specialists {
    background: linear-gradient(135deg, #3a5a2a 0%, #2d4521 100%);
    padding: 60px 20px;
    color: #f0f8e8;
}

.specialists h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #d4f1a7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.specialist-item {
    background: rgba(240, 248, 232, 0.12);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(168, 212, 95, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialist-item::before {
    content: '🍃';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4em;
    opacity: 0.1;
    transform: rotate(15deg);
}

.specialist-item:hover {
    background: rgba(240, 248, 232, 0.2);
    border-color: rgba(168, 212, 95, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.specialist-item h3 {
    color: #b8e986;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

.specialist-item p {
    color: #e8f5d7;
    line-height: 1.7;
}

/* Blok produktów i usług */
.products {
    background: linear-gradient(135deg, #fafdf5 0%, #f0f8e8 100%);
    padding: 60px 20px;
}

.products h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2d5016;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.product-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.12);
    border-top: 4px solid #8ab852;
    transition: all 0.3s ease;
    position: relative;
}

.product-item::after {
    content: '🌴';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 2.5em;
    opacity: 0.1;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(45, 80, 22, 0.2);
    border-top-color: #6aa84f;
}

.product-item h3 {
    color: #1a4d2e;
    margin-bottom: 18px;
    font-size: 1.4em;
    font-weight: 600;
}

.product-item p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 12px;
}

.product-item .price {
    color: #6aa84f;
    font-weight: 700;
    font-size: 1.15em;
    margin-top: 15px;
}

/* Artykuł ekspercki - wyróżnienie */
.expert-article {
    background: linear-gradient(135deg, #8ab852 0%, #6aa84f 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.3);
    border: 3px solid #a8d45f;
    position: relative;
    overflow: hidden;
}

.expert-article::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: slide 20s linear infinite;
    pointer-events: none;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.expert-article h2 {
    color: #ffffff;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.expert-article p {
    color: #f0f8e8;
    font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.expert-article p:first-of-type::first-letter {
    font-size: 3.5em;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    margin: 5px 10px 0 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Działalność medialna */
.media-mentions {
    background: linear-gradient(135deg, #4d7c3a 0%, #3a5a2a 100%);
    padding: 60px 20px;
    color: #f0f8e8;
}

.media-mentions h2 {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 30px;
    color: #d4f1a7;
    font-weight: 700;
}

.media-mentions p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.9;
    text-align: justify;
    color: #e8f5d7;
    background: rgba(240, 248, 232, 0.1);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #8ab852;
}

/* Formularz kontaktowy */
.contact-form-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a4d2e 100%);
    padding: 60px 20px;
    color: #f0f8e8;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 20px;
    color: #d4f1a7;
    font-weight: 700;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 35px;
    color: #e8f5d7;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.subscription-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.05em;
    background: rgba(255, 255, 255, 0.95);
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.subscription-form input[type="email"]:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(168, 212, 95, 0.5);
}

.subscription-form button {
    padding: 16px 40px;
    background: linear-gradient(135deg, #8ab852 0%, #6aa84f 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.subscription-form button:hover {
    background: linear-gradient(135deg, #a8d45f 0%, #8ab852 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Lokalizacja */
.location {
    background: linear-gradient(135deg, #e8f5d7 0%, #d4f1a7 100%);
    padding: 60px 20px;
}

.location h2 {
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 25px;
    color: #2d5016;
    font-weight: 700;
}

.location p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #1a4d2e;
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.3);
    border: 4px solid #8ab852;
}

.map-container iframe {
    display: block;
}

/* Footer - Copyright */
.copyright {
    background: linear-gradient(135deg, #1a4d2e 0%, #0f3d1f 100%);
    padding: 30px 20px;
    text-align: center;
    color: #b8e986;
    border-top: 3px solid #8ab852;
}

.copyright p {
    font-size: 1em;
    color: #e8f5d7;
}

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

/* Responsywność - wersja mobilna */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.4em;
    }

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

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

    .reviews h2,
    .specialists h2,
    .products h2 {
        font-size: 1.8em;
    }

    .reviews-grid,
    .specialists-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .expert-article {
        padding: 30px 20px;
    }

    .expert-article h2 {
        font-size: 1.6em;
    }

    .expert-article p {
        font-size: 1em;
        text-align: left;
    }

    .subscription-form {
        flex-direction: column;
        padding: 20px;
    }

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

    .subscription-form button {
        width: 100%;
    }

    .review-form {
        padding: 25px 20px;
    }

    .hero {
        min-height: 470px;
        padding: 40px 15px;
    }
}

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

    .hero h2 {
        font-size: 1.2em;
    }

    .container {
        padding: 15px;
    }

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

    .expert-article p:first-of-type::first-letter {
        font-size: 2.5em;
    }
}
