@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600;800&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))
{
    width:100% !important;
    max-width:100% !important;
}
/* === ZMIENNE I GŁÓWNY KONTENER === */
.event-page-wrapper {
    --color-dark-blue: #141f33;
    --color-orange: #ed4f00;
    --color-white: #ffffff;
}

.anton-font{
    font-family: "Anton", sans-serif !important;
}

.event-page-wrapper
{
    font-family: "Poppins", sans-serif !important;
}
/* === SEKCJA GŁÓWNA (HERO) === */
.event-hero {
    position: relative;
    padding: 4rem 2rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: var(--color-dark-blue);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-image: url("../img/product_page_background.jpg");
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(20, 31, 51, 0.9) 0%, rgba(20, 31, 51, 0.7) 100%);
}
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* === LEWA KOLUMNA === */
.hero-details {
    flex: 1 1 58%; /* Zajmuje więcej miejsca */

}
.event-meta-info {

    color: #ed4f00;
    font-size:30px;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}
.event-meta-info.location {
    font-size: 1rem;
    color: white;
    opacity: 0.7;
}
.event-title {
    font-family: 'Barlow', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.3em;
    text-transform: uppercase;
    margin: 1rem 0 2.5rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1.2px;
}

/* LICZNIK */
.countdown-timer { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--color-orange);
    border-radius: 50%;
}
.timer-unit .timer-digits {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.timer-unit .timer-label {
    font-size: 14px;
    font-weight: 300;
    text-transform: lowercase;
}

.add-to-calendar-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.add-to-calendar-link:hover { color: var(--color-orange); }

/* === PRAWA KOLUMNA (KARTA ZAKUPU) === */
.hero-cta-card,.cta-card-down {

    background-color: var(--color-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: sticky;
    top:100px;
    padding: 0 30px ;
    margin-left: auto
}
.cta-card-down
{
    display: none;
}

@media screen and (max-width: 720px)
{
    .cta-card-down
    {
        display: block;
    }
}
.hero-cta-wrapper
{
    max-width: 260px;
    height:100%;
    position:relative;
    flex: 0 0 260px;
    text-align: center;
    align-self: flex-start; /* Zapobiega rozciąganiu się w pionie */
}

.hero-cta-wrapper::before
{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../img/tlo-kup-bilet.png');
    background-position: center;

    background-size: contain;
    opacity: 0.1;
    z-index: -1;
}

.cta-header { padding-top: 0.75rem;  }
.cta-header h2 { margin: 0; text-transform: uppercase; font-size: 4rem !important; }
.cta-header p { margin: 0; font-size: 1.2rem; opacity: 1; }
.cta-body { padding-top:0; padding-bottom:1.5rem}
.cta-ticket-img { max-width: 222px; border-radius: 6px; }
.price-section .price-label { font-size: 2rem; font-weight: 500; display: block;  }
.price-section .price-amount {
    margin-top:20px;
    text-transform: lowercase;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 1.2px;
    font-family: "Anton", Sans-serif;
}
.price-section .price-note { font-size: 0.8rem; opacity: 0.9; margin: 0.5rem 0 1.5rem 0; }
.purchase-form { display: flex; gap: 10px; }
.purchase-form .quantity-input {
    width: 70px; border: 2px solid var(--color-dark-blue);
    background: #fff; color: var(--color-dark-blue);
    border-radius: 8px; text-align: center; font-size: 1.2rem; font-weight: 700;
}
.purchase-form .cta-button {
    flex-grow: 1; display: flex; align-items: center; justify-content: center;
    background-color: var(--color-dark-blue); padding: 0.8rem; border-radius: 8px;
    text-decoration: none; color: var(--color-white); font-weight: 700;
    transition: all 0.2s ease; border: none; cursor: pointer; font-size: 1rem;
}
.purchase-form .cta-button:hover { background-color: #000; }

/* === RESPONSIVE === */

.hero-details {
    flex: 1 1 600px;
    text-align: center; /* <-- DODANA WŁAŚCIWOŚĆ */
}

/* 2. Wyśrodkowanie kółek licznika wewnątrz ich kontenera */
.countdown-timer {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center; /* <-- DODANA WŁAŚCIWOŚĆ */
}

.hero-cta-card
{
    color: #141f33;
}

.cta-header h2
{
    font-size: 32px;
}

.cta-header p
{
    color:white;
    font-size: 18px;
}

.price-note
{
    color: white;
}

.price-note span
{
font-size: 16px;
}

.event-footer
{
    background-color: #ed4f00;
    color:white;
    font-weight: bold;
    text-align: center;
    padding: 8px 8px;
}

.mobile-cta-wrapper {
    display: none;
    margin-top: 2rem;
}

/* --- Style dla ekranów mniejszych niż 1020px --- */
@media (max-width: 1019.98px) {

    /* 1. Ukryj boczny panel "Kup Bilet" */
    .hero-cta-card {
        display: none;
    }

    .hero-cta-wrapper
    {
        max-width: 100%;
    }

    /* 2. Pokaż nowy, pomarańczowy przycisk pod licznikiem */
    .mobile-cta-wrapper {
        display: block;
    }

    .cta-button-mobile {
        display: inline-block;
        background-color: #ed4f00; /* Twój pomarańczowy kolor */
        color: #ffffff;
        padding: 1rem 2.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.2s ease;
    }
    .cta-button-mobile:hover {
        background-color: #d14600;
        transform: scale(1.05);
    }
}

@media (max-width: 699.98px) {
    /* Zmniejszamy odstępy między kółkami na mobilach */
    #countdown-timer {
        gap: 0.75rem;
        justify-content: center;
    }

    /* Kluczowa poprawka dla kółek */
    .timer-unit {
        /* "Powiedz" kółkom, aby nigdy się nie kurczyły */
        flex-shrink: 0;

        /* Opcjonalnie: Możemy je lekko zmniejszyć dla lepszego wyglądu,
           ale zachowując stały, a nie procentowy, rozmiar */
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    /* Dopasowanie wielkości czcionki do mniejszych kółek */
    .timer-unit span:first-child {
        font-size: 1.6rem;
    }
    .timer-unit span:last-child {
        font-size: 0.7rem;
    }
}

.details-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    padding: 1rem 4rem;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}
.meta-item i {
    font-size: 2rem;
    color: #ed4f00; /* Twój pomarańczowy akcent */
}
.meta-text .meta-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}
.meta-text .meta-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Główna, jasna treść sekcji --- */
.details-content {
    background-color: #ffffff;

    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.pr-4
{
    padding: 4rem 2rem ;
}
.details-title {
    color: #ed4f00;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.3em;
    letter-spacing:1.2px;
}
.details-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #141f33;
    margin-bottom: 2rem;
}
.details-content p {
    font-size: 18px;
    line-height: 1.5em;
    color: #324A6D;
}


/* Lista z "checkboxami" */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0;
    display: inline-block; /* Aby wyśrodkować blok listy */
    text-align: left;
}
.checklist li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.checklist i {
    color: #ed4f00; /* Kolor ikony "ptaszka" */
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .details-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .details-title { font-size: 2rem; }
    .details-subtitle { font-size: 1.2rem; }
}

.cta-card-clone {
    /* Domyślnie klon jest całkowicie ukryty i niewidoczny */
    position: fixed;
    top: 40px; /* Odstęp od góry */
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); /* Startowy efekt dla animacji */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Styl, który pokazje sklonowaną kartę z animacją */
.cta-card-clone.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Klasa, która ukrywa oryginalną kartę, gdy klon jest widoczny */
.hero-cta-card.original-card-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.agenda-section {
    position: relative; /* Potrzebne dla tła */
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Montserrat', sans-serif; /* Użyj tej samej czcionki co w hero */
}

/* Nakładka z siatką geometryczną (opcjonalnie) */
.agenda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* WAŻNE: Podmień na ścieżkę do Twojego obrazka z siatką */
    background-image: url('https://via.placeholder.com/1920x500.png?text=Twoja+Grafika+w+Tle');
    background-position: center;
    background-size: cover;
    opacity: 0.1; /* Ustawia przezroczystość siatki */
}

.agenda-content {
    position: relative; /* Aby treść była nad tłem */
    max-width: 1200px;
    margin: 0 auto;
}

.agenda-content ol
{
    list-style: disc !important;
    padding:0 ;
}
.audience-list
{
    padding-left: 0;
}
.agenda-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ed4f00; /* Twój pomarańczowy akcent */
    margin: 0 0 2.5rem 0;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-item {
    display: flex;
    align-items: baseline;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-item::before {
    content: '>'; /* Znak zachęty */
    font-family: monospace;
    font-size: 1.5rem;
    color: #ed4f00;
    margin-right: 1.5rem;
}

.agenda-time {
    font-weight: 700;
    flex-shrink: 0;
    width: 140px; /* Stała szerokość dla równego ułożenia */
}

.agenda-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsywność */
@media (max-width: 768px) {
    .agenda-title {
        font-size: 2rem;
    }
    .agenda-item {
        font-size: 1rem;
    }
    .agenda-time {
        width: 110px;
    }
}

.gallery-section {
    position: relative; /* Niezbędne do pozycjonowania strzałek */
    padding: 0;
    margin: 0;

}

.gallery-scroll-container {
    display: flex;
    overflow-x: auto;
    /* Usuwamy scroll-snap, ponieważ JS będzie kontrolował przewijanie */
    scroll-behavior: smooth; /* Zapewnia płynne przewijanie */

    /* Ukrycie paska przewijania */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}
.cta-button-mobile
{
    color:white !important;
}
.gallery-item {

    position: relative;
    overflow: hidden;

    height: 400px;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gwarantuje, że zdjęcie wypełnia pole bez zniekształceń */
    display: block;
}

/* --- Style dla strzałek --- */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(20, 31, 51, 0.7); /* Ciemnoniebieskie, półprzezroczyste tło */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.gallery-arrow:hover {
    background-color: #ed4f00; /* Pomarańczowy akcent po najechaniu */
    transform: translateY(-50%) scale(1.1);
}
.gallery-arrow.prev {
    left: 20px;
}
.gallery-arrow.next {
    right: 20px;
}

/* --- Responsywność --- */
@media (max-width: 992px) {
    .gallery-item {
        flex-basis: 50%; /* Dwa zdjęcia w widoku na tabletach */
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex-basis: 100%; /* Jedno zdjęcie w widoku na telefonach */
    }
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .gallery-arrow.prev { left: 10px; }
    .gallery-arrow.next { right: 10px; }
}
.audience-section {
    position: relative;
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Roboto', sans-serif; /* Użyj tej samej czcionki co w hero */
}

/* Nakładka z siatką geometryczną (opcjonalnie, tak jak w poprzedniej sekcji) */
.audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* WAŻNE: Podmień na ścieżkę do Twojego obrazka z siatką */
    background-image: url('https://via.placeholder.com/1920x400.png?text=Twoja+Grafika+w+Tle');
    background-position: center;
    background-size: cover;
    opacity: 0.1; /* Ustawia przezroczystość siatki */
}

.audience-content {
    position: relative; /* Aby treść była nad tłem */
    max-width: 1200px; /* Nieco szerszy kontener dla listy */
    margin: 0 auto;
}

.audience-title {
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ed4f00; /* Twój pomarańczowy akcent */
    margin: 0 0 2.5rem 0;
    line-height:1.3em;
    letter-spacing:1.2px
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;

}

.audience-item {
    display: flex;
    align-items: flex-start; /* Wyrównanie do góry */
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.audience-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

.audience-item .list-icon {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ed4f00;
    margin-right: 1.5rem;
    line-height: 1.5; /* Lepsze wyrównanie w pionie */
}

/* Responsywność */
@media (max-width: 768px) {
    .audience-title {
        font-size: 2rem;
    }
    .audience-item {
        font-size: 1rem;
    }
}

.final-cta-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Roboto', sans-serif;
}

.final-cta-content {
    max-width: 1200px;
    margin: 0 auto;

}

.final-cta-title {
    color: #ed4f00; /* Twój pomarańczowy akcent */
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.3em;
    letter-spacing:1.2px;
}

.final-cta-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #141F33; /* Twój ciemnoniebieski kolor */
    margin-bottom: 2.5rem;
    line-height: 1.2em;
}

.final-cta-content p {
    font-size: 18px;
    line-height: 1.5em;
    color: #324A6D;
    margin-bottom: 1.5rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .final-cta-title {
        font-size: 2rem;
    }
    .final-cta-subtitle {
        font-size: 1.2rem;
    }
    .final-cta-content p {
        font-size: 1rem;
    }
}

.event-container
{
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.text-container
{
    max-width: 670px;
}



.animate-bg
{
    overflow: hidden;
    position: relative;
}


/* Twoja treść - musi być nad animacją */
#tsparticles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.agenda-content {
    position: relative; /* Treść musi być nad animacją */
    background-color: transparent !important; /* <-- KLUCZOWA POPRAWKA */
}

.agenda-section div, .audience-list
{
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    padding-bottom:12px;
}

.psm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 31, 51, 0.7); /* Twój ciemnoniebieski z przezroczystością */
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}
.psm-modal-overlay.is-visible {
    display: flex;
    opacity: 1;
}

/* --- Animacja pojawiania się --- */
@keyframes psm-modal-fade-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Główny kontener modala --- */
.psm-modal-content.success-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 420px; /* Idealny rozmiar dla komunikatu */
    padding: 2.5rem 2rem;
    animation: psm-modal-fade-in 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Przycisk zamykania 'x' */
.success-modal .psm-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e9ecef;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.success-modal .psm-modal-close:hover {
    background-color: #dee2e6;
    transform: rotate(90deg);
}

/* Ikona sukcesu */
.success-modal .modal-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: rgba(25, 135, 84, 0.1); /* Jasnozielone tło */
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-modal .modal-icon-wrapper i {
    font-size: 2rem;
    color: #198754; /* Ciemnozielona ikona */
}

/* Teksty w modalu */
.success-modal .modal-main-title {
    font-family: 'Barlow', sans-serif; /* Bardziej wyrazista czcionka dla tytułu */
    font-size: 1.75rem;
    font-weight: 700;
    color: #141f33; /* Twój ciemnoniebieski kolor */
    margin-bottom: 0.5rem;
}
.success-modal .modal-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Przyciski akcji */
.success-modal .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.success-modal .btn {
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

/* Przycisk główny (pomarańczowy) */
.success-modal .btn-primary-custom {
    background-color: #ed4f00;
    border-color: #ed4f00;
    color: #ffffff;
}
.success-modal .btn-primary-custom:hover {
    background-color: #d14600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 79, 0, 0.2);
}

/* Przycisk drugorzędny (tekstowy) */
.success-modal .btn-secondary-custom {
    background: none;
    border: none;
    color: #6c757d;
}
.success-modal .btn-secondary-custom:hover {
    color: #141f33;
    background-color: #f0f0f0;
}

.floating-cart {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ed4f00; /* Twój pomarańczowy kolor */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.2s ease-in-out;
}

.floating-cart:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.floating-cart .fa-shopping-cart {
    font-size: 1.5rem;
}

.cart-item-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.cta-card-clone
{
    top:50% !important;
    transform: translateY(-50%) !important;
}
.add-to-calendar-link, .floating-cart
{
    color:white !important;
    text-decoration:none !important;
}

.details-content p
{
    margin-bottom:0 !important;
}

.gallery-section {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: #141f33;
}

/* Slick domyślnie ukrywa slider przed inicjalizacją, co jest dobre */
.slick-gallery {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
.slick-gallery.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.gallery-item {
    height: 400px; /* Stała wysokość dla całej galerii */
}

/* KLUCZOWA POPRAWKA DLA WIDEO I ZDJĘĆ */
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;

    max-width: 100%;  /* Dodatkowe zabezpieczenie */
    max-height: 100%; /* Dodatkowe zabezpieczenie */

    display: block;


}

/* Style dla strzałek (bez zmian) */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(20, 31, 51, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
.gallery-arrow:hover { background-color: #ed4f00; transform: translateY(-50%) scale(1.1); }
.gallery-arrow.prev { left: 20px; }
.gallery-arrow.next { right: 20px; }


.gallery-item a {
    display: block;
    position: relative;
    height: 100%;
}
.play-icon-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gallery-item a:hover .play-icon-overlay {
    opacity: 1;
}


.workers-slider-section {
    position: relative;
    padding: 2rem 0; /* Dodajemy trochę przestrzeni */
    background-color: #141f33;
}

.workers-carousel-container .slick-slide {
    padding: 0 15px; /* Tworzy odstęp między slajdami */
}
.section-title
{
    color:#ed4f00 !important;
    text-transform: uppercase;
    font-weight: bold;
}

.worker-slide {
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}

.worker-slide a {
    display: block;
    position: relative;
}

.worker-slide a::after {
    content: '\f00e'; /* Ikona lupy z Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: white;
    font-size: 3rem;
    background-color: rgba(20, 31, 51, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.worker-slide a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.worker-photo {
    width: 100%;
    height: 120px; /* Stała wysokość dla wszystkich zdjęć */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.worker-slide a:hover .worker-photo {
    transform: scale(1.05);
}

.worker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    text-align: left;
}

.worker-name {
    margin: 0;
    color: #ffffff;
    font-size: 11px !important;
    font-weight: 400 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Dostosowanie strzałek Slick Carousel */
.slick-carousel-wrapper {
    position: relative;
}

/* Kontener na strzałki - umieszczamy go NAD karuzelą */
.slick-custom-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px; /* Odstęp od krawędzi */
    z-index: 20; /* Bardzo wysoki z-index dla pewności */
    pointer-events: none; /* Pozwala klikać "przez" kontener */
}

/* Styl pojedynczej strzałki */
.slick-custom-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    color: #141f33;
    border: 1px solid #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all; /* Przywracamy klikalność dla samych przycisków */
}
.slick-custom-arrow:hover {
    background-color: #141f33;
    color: #ffffff;
    transform: scale(1.1);
}

.dialog-lightbox-widget
{
    display:none !important;
}

body *
{
    font-family: "Poppins", sans-serif;
}

h1,h2,h3,h4,h5,h6
{
    font-family: "Anton", sans-serif;
}

@media (max-width: 992px) {
    .hero-content-container { flex-direction: column; }
    .hero-details {
        text-align: center;
        flex: 1 1 400px;
    }
    #countdown-timer { justify-content: center; }
    .event-title { font-size: 2.5rem; }
}

.cta-header h2
{
    font-size:60px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 1.2px;
}
.cta-header p
{
    font-size: 15px;
    font-weight: 600;
}
.price-label
{
    font-size: 25px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}
.cta-card-img
{
    max-width:100%;
}
.price-amount
{
    margin-top:20px;
    text-transform: lowercase;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 1.2px;
}
.price-note span:first-child
{

    font-size: 14px;
    font-weight: 600;
    display: block;
}

.price-note span:last-child
{
    font-size: 12px !important;
    display: block;

    font-weight: 600;
}

.hero-cta-card-close
{
    display:none;
}

@media (max-width: 1019.98px) {

    /* 1. Ukryj oryginalny panel "Kup Bilet", który był w prawej kolumnie */
    .hero-cta-card {
        display: none !important;
    }

    .hero-cta-card-close
    {
        display: flex;
        justify-content: right;
        margin-top: 40px;
        padding-right: 16px;
    }
    .hero-cta-card-close .psm-modal-close
    {
        background-color: #e9ecef; /* Jasnoszare tło */
        border: none;
        border-radius: 50%; /* Idealne koło */
        color: #6c757d; /* Ciemniejszy szary kolor ikony */

        /* Wymiary i wyśrodkowanie ikony */
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;

        /* Typografia ikony '×' */
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1;

        /* Interakcje */
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .hero-cta-card-close .psm-modal-close:hover {
        background-color: #dee2e6; /* Ciemniejsze tło po najechaniu */
        color: #141f33; /* Twój główny ciemny kolor */
        transform: rotate(90deg); /* Efekt obrotu */
    }

    /* 2. Pokaż i "przyklej" do dołu ekranu mobilny przycisk "KUP BILET" */
    .mobile-cta-wrapper {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(to top, rgba(20, 31, 51, 0.8), transparent);
        z-index: 1000;
    }

    .cta-button-mobile {
        display: block;
        width: 100%;
        background-color: #ed4f00;
        color: #ffffff;
        padding: 1rem;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* 3. Style dla pełnoekranowego panelu zakupu, który pojawi się po kliknięciu */
    .mobile-fullscreen-panel.is-visible-mobile {
        display: flex !important; /* Pokaż panel */
        flex-direction: column;
        position: fixed !important; /* Nadpisz 'sticky' i 'static' */
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1010;
        border-radius: 0;
        align-self: auto;
        animation: slideUp 0.4s ease-out; /* Animacja wsuwania od dołu */
    }

    .mobile-fullscreen-panel .cta-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Animacja wsuwania się panelu */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

#agenda-particles-background, #audience-content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Warstwa tła */
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}

/* Stan widoczny, dodawany przez JavaScript, gdy element jest na ekranie */
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta-card {
    flex: 0 0 340px;
    background-color: var(--color-orange);
    /* ... inne Twoje style ... */

    /* === POPRAWKA: Dodajemy płynne przejście dla ukrywania === */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Klasa, która ukrywa oryginalną kartę (bez zmian) */
.hero-cta-card.original-card-hidden {
    visibility: hidden;
    opacity: 0;
}

.cta-card-clone {
    position: fixed;
    top: 40px; /* Docelowa pozycja od góry */
    z-index: 9;

    /* 1. Stan początkowy (przed animacją): ukryty i nad ekranem */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-150%); /* Zaczyna wysoko nad ekranem */

    /* 2. Definicja płynnego przejścia */
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Styl, który pokazje sklonowaną kartę z animacją --- */
.cta-card-clone.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Płynnie przesuń na docelową pozycję (top: 40px) */
}

/* --- Klasa, która ukrywa oryginalną kartę --- */
.hero-cta-card.original-card-hidden {
    /* Używamy opacity zamiast visibility, aby uniknąć "przeskoku" layoutu */
    opacity: 0;
    transition: opacity 0.3s ease;
}


#agenda-particles-background,
#audience-content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Klienci mogą swobodnie klikać przez tło */
    overflow: hidden;
}

/* Tworzymy dwie sztuczne warstwy, które będą się poruszać */
#agenda-particles-background::before,
#audience-content-background::before,
#agenda-particles-background::after,
#audience-content-background::after {
    content: "";
    position: absolute;
    /* Rozciągamy warstwy, żeby przy rotacji nie brakowało tła na bokach */
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;

    /* Złożona siatka węzłów i linii w formacie SVG (kolor #ED4F00).
       ZMODYFIKOWANO: Wymuszono brak wypełnienia kształtów (fill='none').
       Kropki są osobnymi wypełnionymi kołami, siatka jest osobnymi kreskami.
    */
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='rgba(237, 79, 0, 0.2)' stroke-width='1.2' fill='none'%3E%3Cpath d='M154 113 L343 85 L412 314 L215 284 Z'/%3E%3Cpath d='M343 85 L512 182 L412 314 Z'/%3E%3Cpath d='M154 113 L105 215 L215 284 L95 395 L285 485 L412 314'/%3E%3Cpath d='M512 182 L555 355 L485 495 L412 314'/%3E%3Cpath d='M285 485 L485 495'/%3E%3C/g%3E%3Cg fill='rgba(237, 79, 0, 0.5)'%3E%3Ccircle cx='154' cy='113' r='2.5'/%3E%3Ccircle cx='343' cy='85' r='3.5'/%3E%3Ccircle cx='512' cy='182' r='2'/%3E%3Ccircle cx='412' cy='314' r='3'/%3E%3Ccircle cx='215' cy='284' r='2.5'/%3E%3Ccircle cx='95' cy='395' r='3.5'/%3E%3Ccircle cx='285' cy='485' r='2'/%3E%3Ccircle cx='485' cy='495' r='3'/%3E%3Ccircle cx='555' cy='355' r='2.5'/%3E%3Ccircle cx='105' cy='215' r='2'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* WARSTWA 1: "Dalsza" - mniejsza siatka, płynie w prawo w dół */
#agenda-particles-background::before,
#audience-content-background::before {
    background-size: 350px 350px;
    opacity: 0.6;
    animation: driftParticlesLayer1 100s linear infinite;
}

/* WARSTWA 2: "Bliższa" - większa siatka, płynie w lewo w górę */
#agenda-particles-background::after,
#audience-content-background::after {
    background-size: 600px 600px;
    opacity: 0.8;
    animation: driftParticlesLayer2 140s linear infinite;
}

/* --- Bezkosztowe animacje CSS (przetwarzane przez kartę graficzną) --- */
@keyframes driftParticlesLayer1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(350px, 350px) rotate(4deg); }
}

@keyframes driftParticlesLayer2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-600px, -600px) rotate(-3deg); }
}