/* 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;
        }

        /* NOWE: Optymalizacja czcionek dla mobile */
        @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;
        }

        /* NOWE: Responsywność logo */
        @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 */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../Images/wieliczka-hero.jpg') center/cover no-repeat;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        /* NOWE: Lepsze przyciski na małych ekranach */
        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                display: block;
                width: 100%;
                max-width: 250px;
                margin: 5px auto;
            }
        }

        @media (max-width: 400px) {
            .btn {
                min-width: 90%;
                padding: 12px 15px;
            }
        }

        /* Tour Content */
        .tour-container {
            padding: 60px 0;
        }

        .tour-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .tour-header-content {
            order: 1;
        }

        .tour-header-image {
            order: 2;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .tour-header-image img {
            width: 100%;
            height: auto;
            display: block;
            loading="lazy";
        }

        .tour-title {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
            line-height: 1.3;
        }

        .tour-section {
            margin: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
        }

        .section-title span {
            color: var(--accent);
        }

        .tour-section h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .tour-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .highlights-list {
            list-style: none;
            padding: 0;
        }

        .highlights-list li {
            padding: 12px 0;
            position: relative;
            padding-left: 35px;
            line-height: 1.6;
        }

        .highlights-list li i {
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 14px;
            font-size: 1.2rem;
        }

        /* Price Table */
        .price-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .price-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }

        .price-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        .price-table tr:hover {
            background-color: #f9f9f9;
        }

        .price-table .highlight {
            font-weight: bold;
            color: var(--accent);
        }

        .euro-price {
            font-size: 0.9em;
            color: var(--text-light);
            display: block;
            margin-top: 5px;
        }

        /* Ticket Info */
        .ticket-info {
            background: #fff8e1;
            padding: 20px;
            border-left: 4px solid #ffc107;
            margin: 30px 0;
            border-radius: 8px;
        }

        .ticket-info h3 {
            margin-top: 0;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .gallery-item {
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
            loading="lazy";
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Booking Form */
        .booking-form-container {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
        }

        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* 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;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
            border: 2px solid var(--accent);
        }

        .btn-primary:hover {
            background-color: white;
            color: var(--primary);
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .ticket-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
            transition: background-color 0.3s;
        }

        .ticket-button:hover {
            background-color: #2d3b6a;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
            position: relative;
            padding-right: 30px;
            cursor: pointer;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            content: '-';
            transform: rotate(0deg);
        }

        .faq-answer {
            display: none;
            padding-top: 10px;
            color: var(--text-light);
        }

        .faq-answer.show {
            display: block;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 30px 0;
        }

        .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;
        }

        /* NOWE: Lepsze pozycjonowanie WhatsApp na małych ekranach */
        @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);
        }

        /* Improved Itinerary Section */
        .tour-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 30px 20px;
            font-family: 'Segoe UI', Roboto, sans-serif;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .section-title span {
            color: var(--accent);
            font-weight: 700;
        }

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            margin: 0 auto;
        }

        /* Timeline styling */
        .timeline-container {
            position: relative;
            padding-left: 30px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }

        .timeline-marker {
            position: relative;
            width: 30px;
        }

        .timeline-circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--accent);
            z-index: 2;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 9px;
            top: 20px;
            bottom: -30px;
            width: 2px;
            background: var(--accent);
            z-index: 1;
        }

        .timeline-item:last-child .timeline-line {
            display: none;
        }

        .timeline-content {
            flex: 1;
            padding-left: 20px;
        }

        .timeline-time {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 5px;
            font-size: 16px;
        }

        .timeline-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .timeline-card h4 {
            margin-top: 0;
            color: var(--primary);
            font-size: 18px;
            display: flex;
            align-items: center;
        }

        .timeline-card h4 i {
            margin-right: 10px;
            color: var(--accent);
        }

        .timeline-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Visitor Info Box */
        .info-box {
            background: #f0f7ff;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin-top: 40px;
        }

        .info-box-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .info-box-header i {
            font-size: 24px;
            color: var(--accent);
            margin-right: 10px;
        }

        .info-box-header h3 {
            margin: 0;
            color: var(--primary);
            font-size: 20px;
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }

        .info-list li i {
            width: 20px;
            color: var(--accent);
            margin-right: 10px;
            text-align: center;
        }

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.highlight-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.highlight-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.highlight-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-header-image {
        order: 1;
    }
    
    .tour-header-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .timeline-container {
        padding-left: 20px;
    }
    
    .timeline-marker {
        width: 20px;
    }
    
    .timeline-circle {
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        padding-left: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .price-table {
        display: block;
        overflow-x: auto;
    }
}

/* 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);
}