/* Global Styles */
        :root {
            --primary: #070b20; /* Navy Black - główny kolor */
            --secondary: #0a1028; /* Deep Night - akcent */
            --accent: #3a4a8a; /* Lighter accent color */
            --light: #f8f9fa;
            --dark: #06081b; /* Starless - tło stopki */
            --text: #333;
            --text-light: #6c757d;
            --icon-color: #6c7fc5; /* Nowy kolor ikon */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
            font-size: 16px;
        }

        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background-color: var(--primary);
            color: white;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            height: 100px;
            width: auto;
            transition: all 0.3s ease;
        }

        @media (max-width: 992px) {
            .header-logo {
                height: 90px;
            }
        }

        @media (max-width: 768px) {
            .header-logo {
                height: 80px;
            }
        }

        @media (max-width: 400px) {
            .header-logo {
                height: 60px;
            }
        }

        .header-logo:hover {
            transform: scale(1.05);
        }

        /* Mobile menu button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            text-decoration: none;
        }

        nav ul li a:hover {
            color: var(--icon-color);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a.active {
            color: var(--icon-color);
        }

        nav ul li a.active::after {
            width: 100%;
        }

        /* Login Link */
        .login-link {
            margin-left: 30px;
            padding: 8px 15px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .login-link:hover {
            background-color: rgba(255,255,255,0.2);
            color: white;
        }

        /* Mobile menu styles */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            transition: all 0.3s;
        }

        nav {
            transition: transform 0.3s ease;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 120px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transform: translateY(-150%);
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 15px 0;
            }

            .login-link {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        /* Hero Section */
        .tour-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../Images/tokarnia-hero.jpg') center/cover no-repeat;
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }

        .tour-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .tour-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .tour-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        @media (max-width: 768px) {
            .tour-hero {
                height: 50vh;
                min-height: 400px;
            }
            
            .tour-hero h1 {
                font-size: 2rem;
            }
            
            .tour-hero p {
                font-size: 1rem;
            }
        }

        /* Tour Content */
        .tour-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .tour-main {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .tour-sidebar {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }

        @media (max-width: 992px) {
            .tour-container {
                grid-template-columns: 1fr;
            }
            
            .tour-sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .tour-main, 
            .tour-sidebar {
                padding: 20px;
            }
        }

        .tour-section {
            margin-bottom: 40px;
        }

        .tour-section h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }

        .tour-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .tour-section h3 {
            color: var(--primary);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }

        .tour-section p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .tour-section ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .tour-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .tour-section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: var(--accent);
            border-radius: 50%;
        }

        .highlight-box {
            background: rgba(58, 74, 138, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }

        /* Timeline */
        .timeline {
            position: relative;
            margin: 30px 0;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            background-color: var(--accent);
            border-radius: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 1px;
            height: calc(100% - 15px);
            background-color: var(--accent);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .timeline-time {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 5px;
        }
        
        .timeline-content {
            background: rgba(58, 74, 138, 0.05);
            padding: 15px;
            border-radius: 5px;
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            loading="lazy";
        }

        /* Restaurant Info */
        .restaurant-card {
            display: flex;
            align-items: center;
            margin-top: 20px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .restaurant-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-right: 15px;
        }

        /* Price Table */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .price-table th, 
        .price-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        .price-table th {
            background-color: var(--primary);
            color: white;
        }

        .price-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .price-extra {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 5px;
        }

        /* Booking Form */
        .booking-form {
            margin-top: 30px;
        }

        .booking-form h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .ticket-selection {
            margin: 15px 0;
        }

        .ticket-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .ticket-label {
            display: flex;
            align-items: center;
        }

        .ticket-label input {
            margin-right: 10px;
        }

        .ticket-price {
            font-weight: 600;
            color: var(--primary);
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .form-checkbox input {
            width: auto;
            margin-right: 10px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            border: none;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
            border: 2px solid var(--accent);
        }

        .btn-primary:hover {
            background-color: white;
            color: var(--primary);
        }

        .btn-block {
            display: block;
            width: 100%;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        }

        .social-links {
            margin: 20px 0;
        }

        .social-links a {
            color: var(--icon-color);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s;
            filter: brightness(1.5);
        }

        .social-links a:hover {
            color: white;
            filter: brightness(1.8);
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 100;
            transition: all 0.3s;
        }

        @media (max-width: 576px) {
            .whatsapp-float {
                bottom: 80px;
                right: 20px;
            }
        }

        @media (max-width: 400px) {
            .whatsapp-float {
                bottom: 70px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* Book Now Float */
        .booknow-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: var(--accent);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 100;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
            line-height: 1.2;
            padding: 5px;
        }

        @media (max-width: 576px) {
            .booknow-float {
                bottom: 140px;
                right: 20px;
            }
        }

        @media (max-width: 400px) {
            .booknow-float {
                bottom: 120px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
        }

        .booknow-float:hover {
            transform: scale(1.1);
        }

        /* Cookies Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            color: white;
            padding: 15px;
            z-index: 999;
            text-align: center;
            display: none;
        }

        .cookie-banner p {
            margin-bottom: 10px;
        }

        .cookie-banner a {
            color: var(--icon-color);
            text-decoration: none;
        }

        .cookie-banner a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        @media (max-width: 400px) {
            .cookie-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cookie-btn {
                width: 100%;
                max-width: 200px;
            }
        }

        .cookie-btn {
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cookie-btn-accept {
            background: var(--accent);
            color: white;
            border: none;
        }

        .cookie-btn-decline {
            background: transparent;
            color: white;
            border: 1px solid white;
        }