﻿
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #fefcf8;
            color: #1e1e2a;
            scroll-behavior: smooth;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* HEADER / NAV */
        .navbar {
            background: rgba(255, 255, 245, 0.96);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo img {
            height: 52px;
            width: auto;
            transition: opacity 0.2s;
        }
        .logo:hover img {
            opacity: 0.85;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c2c2c;
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: #b87c4f;
        }

        .btn-outline {
            border: 1.5px solid #b87c4f;
            padding: 6px 16px;
            border-radius: 40px;
            background: transparent;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background: #b87c4f;
            color: white !important;
        }

        .cta-btn,
        .offer-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
            box-shadow: 0 10px 24px rgba(112, 74, 46, 0.16);
            border: 1px solid rgba(112, 74, 46, 0.2);
        }

        .cta-btn {
            background: linear-gradient(135deg, #b87c4f 0%, #704A2E 100%);
            color: #ffffff;
            margin-top: 16px;
        }

        .cta-btn:hover,
        .offer-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(112, 74, 46, 0.24);
        }

        .offer-link {
            background: #fffaf4;
            color: #704A2E;
            border-color: #d8c1a8;
        }

        .offer-link:hover {
            background: #704A2E;
            color: #ffffff;
        }

        .menu-icon {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #2c2418;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                padding: 24px;
                border-radius: 28px;
                box-shadow: 0 20px 35px rgba(0,0,0,0.05);
                margin-top: 16px;
            }
            .nav-links.show {
                display: flex;
            }
            .menu-icon {
                display: block;
            }
            .nav-container {
                flex-wrap: wrap;
            }
        }

        /* HERO - pojedynczy, kanciasty obraz */
        .hero-single {
            margin-top: 8px;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2);
        }
        .hero-single img {
            display: block;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            background-position: center 30%;
        }
        @media (max-width: 768px) {
            .hero-single img {
                max-height: 380px;
            }
        }

        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .section-subtitle {
            color: #6b5a4c;
            margin-bottom: 48px;
            font-size: 1.1rem;
            max-width: 700px;
        }
        .title-accent {
            border-left: 5px solid #b87c4f;
            padding-left: 20px;
        }

        /* karty produktów */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }
        .product-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px -8px rgba(0,0,0,0.05);
            border: 1px solid #ede3d6;
            text-align: center;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.15);
            border-color: #b87c4f;
        }
        .product-card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .product-card:hover img {
            transform: scale(1.02);
        }
        .product-card h3 {
            padding: 20px 16px 10px;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
        }
        .btn-more {
            display: inline-block;
            margin: 6px 20px 20px;
            padding: 8px 24px;
            background: #f0e4d8;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: 0.2s;
            color: #2c2418;
        }
        .product-card:hover .btn-more {
            background: #b87c4f;
            color: white;
        }

        /* galeria */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .gallery-item:hover img {
            transform: scale(1.03);
        }
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.92);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        .lightbox.active {
            display: flex;
        }

        /* kontakt */
        .contact-info {
            background: #f5ede3;
            border-radius: 32px;
            padding: 48px 40px;
            text-align: center;
        }
        .contact-info p {
            margin: 20px 0;
            font-size: 1.2rem;
        }
        .contact-info a {
            color: #2c2c2c;
            text-decoration: none;
            border-bottom: 1px solid #b87c4f;
            transition: color 0.2s, border-color 0.2s;
            font-weight: 500;
        }
        .contact-info a:hover {
            color: #b87c4f;
            border-bottom-color: #2c2c2c;
        }
        .contact-info span {
            display: inline-block;
            width: 32px;
            font-weight: 600;
            color: #b87c4f;
        }

        .extra-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }
        .extra-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: 0.25s;
            border: 1px solid #ede3d6;
            text-decoration: none;
            color: inherit;
            display: block;
            text-align: center;
        }
        .extra-card:hover {
            transform: translateY(-6px);
            border-color: #b87c4f;
        }
        .extra-img {
            height: 160px;
            background-size: cover;
            background-position: center;
        }
        .extra-content {
            padding: 20px;
        }
        .extra-content h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .def-list {
            max-width: 900px;
            list-style: none;
            padding: 0;
        }
        .def-list li {
            margin-bottom: 20px;
        }
        .def-list strong {
            color: #704A2E;
        }

        /* LANGUAGES - nowy wzorzec flagi */
        .languages {
            background: #f4efe8;
            padding: 30px 0 20px;
            border-top: 1px solid #e2d5c8;
        }
        .lang-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 22px;
            max-width: 1200px;
            margin: 0 auto;
            list-style: none;
        }
        .lang-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 500;
            color: #2c2c2c;
            transition: color 0.2s;
        }
        .lang-link:hover {
            color: #b87c4f;
        }
        .lang-link img {
            width: 20px;
            height: 13px;
            object-fit: cover;
            border-radius: 2px;
        }

        /* stopka */
        .footer {
            background: #11100e;
            color: #cbc3b5;
            padding: 48px 0 32px;
            font-size: 0.9rem;
        }
        .footer a {
            color: #dbbc98;
            text-decoration: none;
            border-bottom: 1px dotted #5a4a3a;
        }
        .footer a:hover {
            color: #b87c4f;
        }
        .footer-divider {
            margin: 32px 0 24px;
            border-color: #2f2a24;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-col p {
            margin: 8px 0;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.7;
        }
        @media (max-width: 760px) {
            .container { padding: 0 20px; }
            section { padding: 60px 0; }
            .footer-links { flex-direction: column; gap: 24px; }
        }
/* ============================================================
   HERO Z NAPISEM - POPRAWIONY KONTRAST
   ============================================================ */

.hero-single {
    margin-top: 8px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    display: block;
}

.hero-content img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    background-position: center 30%;
}

/* Ciemna nakładka dla lepszego kontrastu */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.18) 0%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.72) 70%,
        rgba(0,0,0,0.92) 100%
    );
    z-index: 1;
}

/* Tekst na hero */
.hero-text {
    position: absolute;
    bottom: 15%;
    left: 10%;
    z-index: 2;
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 10px 30px rgba(0,0,0,0.35);
}

.hero-text h1 {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.8),
        0 4px 30px rgba(0,0,0,0.5),
        0 8px 60px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
    margin-top: 6px;
    margin-bottom: 0;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
    margin-top: 6px;
    opacity: 1;
}

/* Opcjonalna dekoracyjna linia pod napisem */
.hero-text::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #b87c4f;
    margin-top: 15px;
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(184, 124, 79, 0.4);
}

/* Responsywność */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.8rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content img {
        max-height: 380px;
    }
    
    .hero-text {
        bottom: 12%;
        left: 6%;
        max-width: 90%;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-text::after {
        width: 50px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
}