/* Zmienne globalne */
:root {
    --primary: #1a1a1a;
    --accent: #003b95;
    --bg: #f8f9fb;
    --white: #ffffff;
    --radius: 24px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --b-blue: #003b95;
    --b-green: #008009;
}

html {
    scroll-behavior: smooth;
}

/* Reset i ustawienia bazowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navbar --- */
/* Główne ustawienia paska */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stan po przewinięciu (dodawany przez JS) */
.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    transition: color 0.3s;
}

.navbar.scrolled .logo {
    color: var(--primary);
}

/* Menu linki */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.navbar.scrolled .nav-link {
    color: var(--primary);
}

.nav-link:hover {
    opacity: 0.7;
}

/* Przycisk ZAREZERWUJ */
.btn-nav {
    background: var(--white);
    color: var(--primary) !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar.scrolled .btn-nav {
    background: var(--b-blue); /* Twój granatowy kolor */
    color: white !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.menu-toggle {
    display: none; /* Domyślnie ukryty na komputerze */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100; /* Musi być na samym wierzchu */
}

/* Styl pojedynczej kreski */
.bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff; /* Biały kolor na start (na tle zdjęcia) */
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar.scrolled .bar {
    background-color: #1a1a1a;
}

/* Styl dla mobile (ukrywamy menu domyślnie) */
@media (max-width: 768px) {
    /* Ukrywamy listę domyślnie poza ekranem */
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        right: -100%; /* Menu jest schowane po prawej stronie */
        width: 100%;
        height: 100vh;
        background: var(--white); /* Białe tło menu */
        gap: 30px;
        transition: 0.4s ease-in-out;
        z-index: 1001; /* Musi być wyżej niż wszystko inne */
    }

    /* Klasa dodawana przez JS - pokazuje menu */
    .nav-menu.active {
        right: 0;
    }

    /* Styl linków wewnątrz rozwiniętego menu */
    .nav-menu .nav-link {
        color: var(--primary) !important;
        font-size: 1.5rem;
        font-weight: 700;
    }

    /* Przycisk Zarezerwuj w menu mobilnym */
    .nav-menu .btn-nav {
        background: var(--b-blue);
        color: white !important;
        width: 80%;
        text-align: center;
    }

    /* Ustawienie hamburgera, żeby zawsze był na wierzchu */
    .menu-toggle {
        display: flex;
        z-index: 1002; /* Wyżej niż samo menu, żeby dało się je zamknąć */
        position: relative;
    }

    /* Animacja kresek na X (opcjonalnie, ale super wygląda) */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(4.5px) rotate(45deg);
        background-color: var(--primary); /* Zmiana koloru na czarny przy otwartym menu */
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        transform: translateY(-4.5px) rotate(-45deg);
        background-color: var(--primary);
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px); 
    transform: scale(1.05); 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.1) 50%,
        var(--bg, #fff) 100% 
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3; /* Zwiększone, by być nad overlay */
    width: 100%;
}

/* --- ANIMACJA I TREŚĆ --- */
.hero-content {
    max-width: 600px;
    color: var(--white, #fff);
    animation: heroFadeIn 1.2s ease-out forwards; 
    opacity: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.booking-info {
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* --- PRZYCISK --- */
.btn-primary {
    display: inline-block;
    background-color: var(--b-blue, #003b95);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #002d72;
    box-shadow: 0 8px 25px rgba(0, 59, 149, 0.4);
}




/* --- OPTYMALIZACJA MOBILNA --- */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-badge {
        justify-content: center;
    }

    .hero-img {
        filter: blur(4px);
    }
}




/* --- Amenities (Udogodnienia) --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.amenity-pill {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: 600;
}

.amenity-pill span {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

/* --- Sekcje ogólne --- */
.section {
    padding: 60px 0;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.mainSwiper {
    border-radius: var(--radius);
    height: 500px;
    box-shadow: var(--shadow);
}

.mainSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* --- Formularz Kontaktowy --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input, 
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-family: inherit;
}

.btn-send {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: white;
}

/* --- Kalendarz --- */
.calendar-card {
    width: 100%;
    overflow: visible;
    text-align: center;
}

#inline-calendar {
    margin: 0 auto 20px auto;
    width: 100% !important;
    display: flex;
    justify-content: center;
}

/* Flatpickr Customization */
.flatpickr-calendar.inline {
    width: auto !important;
    max-width: fit-content !important;
    margin: 0 auto;
    border: none;
    box-shadow: none;
    background: transparent;
}

.flatpickr-months {
    display: flex !important;
}

.flatpickr-current-month .numInputWrapper {
    pointer-events: none;
}

.flatpickr-current-month .numInputWrapper span {
    display: none !important;
}

.flatpickr-current-month input.cur-year {
    background: transparent !important;
    cursor: default !important;
    font-weight: 700 !important;
}

.flatpickr-monthDropdown-months {
    pointer-events: none !important;
    appearance: none;
    -webkit-appearance: none;
    font-weight: 700 !important;
}

/* Wyświetlanie wybranych dat */
.selection-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f1f3f6;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.s-box {
    text-align: center;
}

.s-box small {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
}

.s-box b {
    font-size: 1.2rem;
    color: #003b95;
}

.s-arrow {
    font-size: 1.5rem;
    color: #ccc;
}

.btn-booking-new {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    background: #003b95;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.btn-booking-new:not([disabled]) {
    opacity: 1;
}

.btn-booking-new:not([disabled]):hover {
    background: #002d72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 59, 149, 0.3);
}

/* --- Opinie & Slider --- */
.review-card {
    min-width: 100%;
    box-sizing: border-box;
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar {
    width: 44px;
    height: 44px;
    background-color: var(--b-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
  }

  .user-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
  }

  .country {
    font-size: 12px;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
  }

  .score-badge {
    background-color: var(--b-blue);
    color: white;
    padding: 8px;
    border-radius: 6px 6px 6px 0;
    font-weight: 700;
    font-size: 16px;
  }

  .review-content {
    text-align: left;
  }

  .date-added {
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 4px;
  }

  .review-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
  }

  .review-body {
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1a;
  }

  .smile-icon {
    color: var(--b-green);
    font-size: 20px;
    flex-shrink: 0;
  }

  /* Karuzela */
  .slider-viewport {
    overflow: hidden;
  }
  .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-out;
  }

  .dots {
    text-align: center;
    margin-top: 15px;
  }
  .dot {
    height: 8px;
    width: 8px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
  }
  .dot.active { background: var(--b-blue); }

/* --- Footer --- */
.footer {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Responsive Web Design (RWD) --- */
@media (min-width: 992px) {
    #inline-calendar {
        min-width: 615px;
    }
    .flatpickr-month:first-child .flatpickr-next-month {
        display: none !important;
    }
    .flatpickr-month:last-child .flatpickr-prev-month {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .flatpickr-calendar {
        width: 300px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/*O NAS*/
/* --- Główna sekcja --- */
.overlap-section {
    padding: 120px 0;
    background-color: #f9f9f9;
    
}

.overlap-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 50px;
}

/* --- Zdjęcie --- */
.overlap-image {
    width: 65%;
    height: 600px;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    
    /* Animacja wejściowa */
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.overlap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    
}

/* --- Box z tekstem --- */
.overlap-content {
    position: absolute;
    left: 0;
    width: 45%;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 5;

    /* Animacja wejściowa */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.2s;
}

.sub-title {
    color: var(--b-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.overlap-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* --- Statystyki (Bonus) --- */
.stats-mini {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat {
    font-size: 0.9rem;
    color: #777;
}

.stat strong {
    color: var(--b-blue);
    display: block;
    font-size: 1.2rem;
    
    /* Animacja bonusu */
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- KLASY AKTYWNE --- */
.overlap-image.appear, 
.overlap-content.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Wyskakiwanie numerów jeden po drugim */
.overlap-content.appear .stat strong {
    opacity: 1;
    transform: translateY(0);
}

.overlap-content.appear .stat:nth-child(1) strong { transition-delay: 0.6s; }
.overlap-content.appear .stat:nth-child(2) strong { transition-delay: 0.8s; }
.overlap-content.appear .stat:nth-child(3) strong { transition-delay: 1.0s; }

/* --- Responsywność --- */
@media (max-width: 992px) {
    .overlap-section {
        padding: 30px 0;
    }
    .overlap-wrapper {
        flex-direction: column;
        padding-bottom: 0;
    }
    .overlap-image {
        width: 100%;
        height: 350px;
        margin-bottom: -40px;
        border-radius: 20px 20px 20px 20px;
        transform: translateY(30px); /* Na mobile wjeżdża z dołu */
    }
    .overlap-content {
        position: relative;
        width: 92%;
        left: 0;
        margin: 0 auto;
        padding: 40px 25px;
        text-align: center;
        transform: translateY(30px); /* Na mobile wjeżdża z dołu */
    }
    .stats-mini {
        justify-content: center;
        gap: 15px;
    }
    .overlap-content h2 {
        font-size: 1.8rem;
    }
}


/* --- INTRO --- */
/* --- OGÓLNE USTAWIENIA GALERII --- */
.gallery-section {
    padding: 10px 0;
    overflow: hidden;
}

/* --- NAGŁÓWEK SEKCI (INTRO) --- */
.gallery-intro {
    padding: 100px 0 60px;
    text-align: center;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 15px 0 25px;
}

/* --- GRID GALERII --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.6s ease,
                filter 0.6s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* --- ANIMACJE PRZEŁĄCZANIA (JS) --- */
.gallery-item.switching {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    filter: blur(10px);
}

.gallery-item.incoming {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

/* --- EFEKT OVERLAY (NAPIS PO NAJECHANIU) --- */
.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 59, 149, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.img-overlay span {
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    padding: 10px 24px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.show-hint .img-overlay,
.gallery-item:hover .img-overlay {
    opacity: 1;
}

.gallery-item.show-hint .img-overlay span,
.gallery-item:hover .img-overlay span {
    transform: translateY(0);
}

/* --- LIGHTBOX (PODGLĄD ZDJĘĆ) --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
}

/* --- SCROLL ANIMATION (GALLERY INTRO) --- */
.animate-on-scroll .sub-title,
.animate-on-scroll h2,
.animate-on-scroll p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.appear .sub-title,
.animate-on-scroll.appear h2,
.animate-on-scroll.appear p {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.appear .sub-title {
    transition-delay: 0.2s;
}

.animate-on-scroll.appear h2 {
    transition-delay: 0.4s;
}

.animate-on-scroll.appear p {
    transition-delay: 0.6s;
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 992px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px; /* Miejsce na ładniejszy pasek */
        -webkit-overflow-scrolling: touch;
        gap: 0;
        /* Ukrywamy standardowy, brzydki pasek przewijania */
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }

    /* Ukrywamy scrollbar dla Chrome/Safari/Edge */
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 100%; /* Pełna szerokość - brak podglądu sąsiednich zdjęć */
        height: 480px;
        scroll-snap-align: center;
        background-color: transparent; /* Usuwamy czarne tło */
        padding: 0 15px; /* Odstęp od krawędzi ekranu */
        box-sizing: border-box;
        position: relative;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px; /* Zaokrąglone rogi samego zdjęcia */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Delikatny cień zamiast tła */
    }

    .gallery-item .img-overlay {
        position: absolute;
        /* Musimy uwzględnić padding 15px, żeby overlay nie był szerszy niż zdjęcie */
        top: 0;
        left: 15px; 
        right: 15px;
        bottom: 0;
        /* Zaokrąglamy rogi nakładki tak samo jak zdjęcia */
        border-radius: 24px;
        /* To dotnie niebieski kolor w rogach */
        overflow: hidden;
    }

    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    /* --- NOWOCZESNY PASEK POSTĘPU (Symulowany przez CSS) --- */
    /* Jeśli nie używasz biblioteki typu Swiper, najładniejszy pasek 
       uzyskasz stylizując natywny scrollbar w ten sposób:
    */
.gallery-grid {
        display: flex;
        /* Zmieniamy na mandatory, by zdjęcie idealnie centrowało się na środku */
        scroll-snap-type: x mandatory;
        overflow-x: scroll; /* Wymuszamy scroll zamiast auto */
        padding-bottom: 50px; /* Więcej miejsca pod spodem na pasek */
        gap: 0;
        
        /* Dla Firefox */
        scrollbar-width: thin;
        scrollbar-color: #003b95 #e0e0e0;
    }

    /* --- STAŁY I ŁADNY PASEK (Chrome, Safari, Android, iOS) --- */
    .gallery-grid::-webkit-scrollbar {
        height: 6px; /* Nieco grubszy, by łatwiej było go zauważyć */
        display: block !important;
    }

    .gallery-grid::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
        margin: 0 40px; /* Zmniejszyłem margines, by pasek był nieco dłuższy i stabilniejszy */
    }

    .gallery-grid::-webkit-scrollbar-thumb {
        background-color: #003b95; /* Twój kolor niebieski */
        border-radius: 10px;
        /* Kluczowe dla iOS/Safari: obramowanie czasem wymusza widoczność */
        border: 1px solid #f0f0f0; 
    }
}

@media (max-width: 768px) {
    .gallery-intro h2 {
        font-size: 2.5rem;
    }
}



