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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Placeholder dla sticky menu - zapobiega skakaniu treści */
.nav-placeholder {
    width: 100%;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation Wrapper */
.nav-wrapper {
    background: linear-gradient(135deg, #9bce52 0%, #88b847 100%);
    transition: all 0.3s ease;
}

.nav-wrapper.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #9bce52 0%, #88b847 100%);
}

.nav-wrapper.nav-sticky .nav {
    padding: 1rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9bce52 0%, #88b847 100%);
    color: white;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    z-index: 900;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    order: -1;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.25rem;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: #e5f7c9; /* jasna zieleń pasująca do tła, lepszy kontrast niż złoty */
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e5f7c9;
    border-radius: 999px;
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    z-index: 1001;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-content {
    max-width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image .image-placeholder {
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.hero-image .image-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-image .image-placeholder p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #9bce52;
}

.btn-primary:hover {
    background: #f9fafb;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #9bce52;
}

.stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.category:hover {
    border-color: #9bce52;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    transition: background 0.3s;
}

.category-header:hover {
    background: #f9fafb;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(155, 206, 82, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bce52;
    font-size: 1.5rem;
}

.category-title h3 {
    font-size: 1.25rem;
}

.chevron {
    transition: transform 0.3s;
    color: #9bce52;
}

.category.active .chevron {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.category.active .category-content {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.category-items {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.category-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #9bce52;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-box {
    margin-top: 4rem;
    background: #9bce52;
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
}

.info-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.info-box p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-light {
    background: white;
    color: #9bce52;
}

.btn-light:hover {
    background: #f3f4f6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content > p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(155, 206, 82, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bce52;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6b7280;
}

.mission-box {
    background: linear-gradient(135deg, rgba(155, 206, 82, 0.2) 0%, rgba(155, 206, 82, 0.3) 100%);
    padding: 3rem;
    border-radius: 1rem;
}

.mission-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.mission-stat-number {
    font-size: 2rem;
    color: #9bce52;
    margin-bottom: 0.5rem;
}

.mission-stat-label {
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(155, 206, 82, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #9bce52;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: #9bce52;
    text-decoration: none;
    font-size: 1.125rem;
}

.contact-card a:hover {
    color: #88b847;
}

.contact-card p {
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9bce52;
    box-shadow: 0 0 0 3px rgba(155, 206, 82, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    background: #9bce52;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #88b847;
}

.hours-box {
    margin-top: 3rem;
    background: #9bce52;
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
}

.hours-content {
    display: flex;
    gap: 1.5rem;
}

.hours-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.hours-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hours-grid p {
    margin-bottom: 0.5rem;
}

.hours-note {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(180px, 1fr));
    column-gap: 3rem;
    row-gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: #9bce52;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    margin-left: 0.35rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #8b5cf6; /* fiolet IKTEL */
}

/* Scroll to top button */
#scrollTopBtn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: none;
    background: #111827;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#scrollTopBtn.visible {
    display: flex;
}

#scrollTopBtn:hover {
    transform: translateY(-2px);
    background: #111827;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    border: 2px dashed #d1d5db;
}

.gallery-item .image-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gallery-item .image-placeholder p {
    font-size: 0.9rem;
}

/* Gallery Mosaic (for About section) */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-mosaic-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-mosaic-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-mosaic-item.large {
    grid-row: 1 / 3;
}

.gallery-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-mosaic-item .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    border: 2px dashed #d1d5db;
}

.gallery-mosaic-item .image-placeholder span {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gallery-mosaic-item .image-placeholder p {
    font-size: 0.9rem;
}

/* Image Placeholder General */
.image-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    padding: 2rem;
}

.image-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.image-placeholder p {
    font-size: 1rem;
}

/* Lightbox for gallery images */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.5rem;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: none;
    background: rgba(17, 24, 39, 0.85);
    color: #f9fafb;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.lightbox-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 300px;
        width: calc(100vw - 300px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    @media (max-width: 480px) {
        .nav-links.active::after {
            left: 80%;
            width: 20%;
        }
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
    }

    .nav-contact-text {
        display: none;
    }

    .nav-contact {
        font-size: 1.25rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image .image-placeholder {
        min-height: 250px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0;
    }

    .products {
        padding: 3rem 0;
    }

    .about {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .faq-section {
        padding: 3rem 0 !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-mosaic-item.large {
        grid-row: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .category-items {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .info-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .info-box h3 {
        font-size: 1.5rem;
    }

    .info-box p {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .hours-box {
        padding: 1.5rem;
    }

    .hours-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .mobile-menu-toggle {
        order: -1;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

