		@import "tailwindcss";
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }
        html {
            scroll-behavior: smooth;
        }
        .section-header::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #0ea5e9;
            margin: 16px auto 0;
        }
        .gallery-item .overlay {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        #hero-section {
            transition: background-image 0.5s ease-in-out;
        }
        #cookie-banner {
            transition: transform 0.5s ease-in-out;
        }

        /* --- STYLE DLA AUTORSKIEJ GALERII --- */
        #custom-gallery-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        #custom-gallery-overlay.visible {
            opacity: 1;
            visibility: visible;
        }
        #gallery-content-wrapper {
            position: relative;
            width: 90%;
            height: 90%;
            display: flex;
            flex-direction: column;
        }
        #main-image-container {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        #main-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        #gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            text-align: center;
            padding: 20px 10px 10px;
            font-size: 1rem;
        }
        #thumbnail-container {
            flex-shrink: 0;
            width: 100%;
            height: 100px;
            overflow-x: auto;
            white-space: nowrap;
            text-align: center;
            padding-top: 10px;
        }
        .thumbnail-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 4px;
            transition: border-color 0.2s ease, opacity 0.2s ease;
            opacity: 0.7;
        }
        .thumbnail-img:hover {
            opacity: 1;
        }
        .thumbnail-img.active {
            border-color: #0ea5e9;
            opacity: 1;
        }
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 5px;
            z-index: 1001;
            transition: background-color 0.2s;
        }
        .gallery-nav:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        #prev-btn { left: 10px; }
        #next-btn { right: 10px; }
        #close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            z-index: 1001;
            transition: background-color 0.2s;
        }
        #close-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }