﻿ :root {
            --primary-green: #2d5016;
            --light-green: #4a7c23;
            --accent-gold: #d4af37;
            --bg-cream: #faf8f3;
            --text-dark: #2c3e2d;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* GĂłrny pasek jÄ™zykĂłw */
        .top-lang-bar {
            background: #1a3a0d;
            padding: 0.5rem 0;
            text-align: center;
            position: relative;
            z-index: 1001;
        }
        
        .top-lang-bar .lang-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .top-lang-bar .lang-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            border-radius: 3px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .top-lang-bar .lang-link:hover,
        .top-lang-bar .lang-link.active {
            color: var(--white);
            background: rgba(255,255,255,0.15);
        }
        
        .top-lang-bar .lang-link img {
            width: 16px;
            height: 11px;
            object-fit: cover;
            border-radius: 2px;
        }
        
        /* GĹ‚Ăłwna nawigacja */
        .main-nav {
            background: var(--primary-green);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        .main-nav .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-nav a {
            color: var(--white);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
        }
        

        .logo-nav img {
            display: block;
            width: min(412px, 68vw);
            height: auto;
            max-height: 80px;
            object-fit: contain;
        }
        .logo-nav i {
            color: var(--accent-gold);
            font-size: 1.3rem;
        }
        
        .nav-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        
        .nav-links a:hover {
            color:  var(--white);
        }
        
        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .hamburger {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 5px 0;
            transition: 0.3s;
            border-radius: 3px;
        }
        
        /* Hero Section - przesuniÄ™ty w dĂłĹ‚ bo navbar jest na gĂłrze */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background-image: 
                        url(/img/bg/bg01.webp);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: #0776A2;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: #097aa7;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Sections */
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            margin: 1rem auto 0;
        }
        
        /* Offer Grid */
        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .offer-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        
        .offer-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .offer-card-content {
            padding: 1.5rem;
        }
        
        .offer-card h3 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
         
/* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background: var(--white);
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-green);
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: #f5f5f5;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1.5rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* Definitions Section */
        .definitions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .definition-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--accent-gold);
        }
        
        .definition-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .term {
            font-weight: 700;
            color: var(--light-green);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            aspect-ratio: 1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* Contact */
        .contact-section {
            background: var(--primary-green);
            color: var(--white);
        }
        
        .contact-section .section-title {
            color: var(--white);
        }
        
        .contact-section .section-title::after {
            background: var(--accent-gold);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .contact-info h3 {
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .contact-info a {
            color: var(--white);
            border-bottom: 1px dotted var(--accent-gold);
        }
        
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background: #1a3a0d;
            color: var(--white);
            text-align: center;
            padding: 2rem 0;
        }
        
        footer a {
            color:  var(--white);
        }
        .footer-main {
            text-align: left;
        }

        .footer-columns {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            text-align: left;
        }

        .footer-col {
            flex: 1 1 260px;
            width: auto;
            min-width: 0;
        }

        .footer-col p {
            margin: 0 0 1rem;
            line-height: 1.6;
        }

        .footer-main a {
            overflow-wrap: anywhere;
        }
        .footer-copyright {
            max-width: 900px;
            margin: 1.75rem auto 0;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            line-height: 1.65;
            text-align: center;
        }

        .footer-copyright p {
            margin: 0.75rem auto 0;
        }

        .footer-copyright .copyright-main {
            margin-top: 0;
        }

        .footer-copyright a {
            color: #ffffff;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                padding: 1.5rem 0 0.5rem;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .main-nav .nav-container {
                flex-wrap: wrap;
            }

            .footer-columns {
                flex-direction: column;
                gap: 1.5rem;
            }

            .footer-col {
                width: 100%;
            }
        }
        
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Highlight box */
        .highlight-box {
            background: linear-gradient(135deg, var(--light-green), var(--primary-green));
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        
        .highlight-box h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        /* WCAG link underline */
        a:not(.lang-link):not(.product-link) {
            
            text-underline-offset: 3px;
            text-decoration-thickness: 1.5px;
        }
        
        .nav-links a {
            text-decoration: none;
        }
        
    
