/* ===== Zmienne ===== */
:root {
    --bg: #121212;
    --text: #f0f0f0;
    --gray: #bbbbbb;
    --light-gray: #222222;
    --border: #333333;
    --font: 'Manrope', sans-serif;
    --transition: 0.3s ease;
    --spacing-xs: 12px;
    --spacing-sm: 24px;
    --spacing-md: 48px;
    --spacing-lg: 100px;
    --spacing-xl: 160px;
    --container-padding: 60px;
    --bottom-bar-height: 120px;
    font-size: 16px;
    --font-heading-condensed: 'Oswald', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

body.slider-page {
    padding-bottom: 0;
    overflow: hidden;
    height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

::selection {
    background-color: #ffffff;
    color: #000000;
}

::-moz-selection {
    background-color: #ffffff;
    color: #000000;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 250px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.95); }
}

/* ===== Dolny pasek ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent !important;
    z-index: 100;
    padding-top: 20px;
    padding-bottom: 20px;

}


.bottom-bar-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.logo-light { display: block; }
.logo-dark { display: none; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    margin: 0;
}

.main-nav a {
    font-weight: 600;
    font-family: var(--font-heading-condensed);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: border-color 0.3s;
}

.main-nav a:hover { border-color: currentColor; }

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: border-color 0.3s;
}

.social-links a:hover { border-color: currentColor; }

.slider-controls {
    display: flex;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.slider-arrow:hover { background-color: rgba(255, 255, 255, 0.2); }

.bottom-footer {
    text-align: center;
    padding: 10px 20px 5px;
    font-size: 0.75rem;
    color: var(--gray);
    background-color: transparent;
}

.bottom-footer a {
    color: var(--gray);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

.bottom-footer a:hover { border-bottom-color: currentColor; }

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 101;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.nav-toggle:hover { background-color: rgba(255, 255, 255, 0.2); }

.nav-toggle span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.nav-toggle span:nth-child(1) { transform: translate(-50%, -50%); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }
.nav-toggle.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===== Slider ===== */
.slider-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== Overlay ===== */
.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.info-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.info-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid currentColor;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.info-content {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.info-overlay.active .info-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.info-content h2 {
    font-family: var(--font-heading-condensed);
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.info-desc {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.info-desc a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.info-desc a:hover {
    opacity: 0.7;
}

.info-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-contact a {
    font-size: 1.2rem;
    font-weight: 400;
    padding-bottom: 4px;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-contact a:hover {
    opacity: 0.7;
}

/* ===== Podstrony ===== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-weight: 400;
    font-size: 2.058rem;
    margin-bottom: 60px;
}

.section-subtitle {
    font-weight: 400;
    font-size: 1.618rem;
    margin-bottom: 20px;
}

/* About */
.about-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
}

.services-list li {
    font-size: 1rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.services-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray);
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-info a {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
}

/* Newsy */
.news-list {
    padding-top: 60px;
}

.news-list .section-title {
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.news-card {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-image {
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: var(--spacing-sm);
    background-color: var(--light-gray);
}

.news-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s;
}

.news-link:hover .news-image img {
    transform: scale(1.03);
}

.news-title {
    font-weight: 400;
    font-size: 1.618rem;
    margin-bottom: 10px;
}

.news-date {
    color: var(--gray);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.news-description {
    font-size: 1rem;
    max-width: 700px;
}

/* Artykuł */
.article-content {
    padding: var(--spacing-xl) 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 400;
    padding: 8px 18px;
    border: 2px solid transparent;
    border-radius: 30px;
}

.back-link:hover {
    border-color: currentColor;
}

.article-title {
    font-weight: 400;
    font-size: 2.058rem;
    margin-bottom: 20px;
}

.article-meta {
    color: var(--gray);
    font-size: 0.75rem;
    margin-bottom: 60px;
}

.article-body {
    max-width: 800px;
}

.article-body img {
    width: 100%;
    border-radius: 2px;
    margin: 40px 0;
}

.article-body p {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Sklep */
.sklep-message p {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 700px;
}

/* Polityka */
.privacy-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ===== Dynamiczne kolory nawigacji ===== */
.bottom-bar {
    color: #fff;
}

.bottom-bar .main-nav a,
.bottom-bar .social-links a,
.bottom-bar .bottom-footer a {
    color: #fff;
}

.bottom-bar .nav-toggle {
    border-color: #fff;
}

.bottom-bar .nav-toggle span {
    background-color: #fff;
}

.bottom-bar .logo-light { display: block; }
.bottom-bar .logo-dark { display: none; }

.bottom-bar .slider-arrow {
    border-color: #fff;
    color: #fff;
}

.bottom-bar.light-slide {
    color: #111 !important;
}

.bottom-bar.light-slide .main-nav a,
.bottom-bar.light-slide .social-links a,
.bottom-bar.light-slide .bottom-footer a {
    color: #111 !important;
}

.bottom-bar.light-slide .nav-toggle {
    border-color: #111 !important;
}

.bottom-bar.light-slide .nav-toggle span {
    background-color: #111 !important;
}

.bottom-bar.light-slide .logo-light { display: none !important; }
.bottom-bar.light-slide .logo-dark { display: block !important; }

.bottom-bar.light-slide .slider-arrow {
    border-color: #111 !important;
    color: #111 !important;
}

/* ===== Responsywność ===== */
@media (max-width: 1024px) {
    .bottom-bar-container {
        flex-wrap: nowrap;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .social-links {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg);
        transform: translateY(100%);            /* menu schowane na dole */
        transition: transform 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 99;
        visibility: hidden;                     /* zapobiega interakcji */
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);               /* wysuwa się od dołu */
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-nav a {
        font-size: 1.3rem;
    }

    .main-nav .mobile-social-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 var(--container-padding);
    }

    .logo-img {
        height: 80px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2.058rem;
    }

    .slide.mobile-full {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #000;
    }

    .info-overlay {
        background-color: rgba(18, 18, 18, 0.92);
    }
}

/* ===== Podstrony w jasnym motywie ===== */
body.light-page {
    --bg: #fafafa;
    --text: #1a1a1a;
    --gray: #888888;
    --light-gray: #f0f0f0;
    --border: #dddddd;
}

body.light-page .bottom-bar .main-nav a,
body.light-page .bottom-bar .social-links a,
body.light-page .bottom-bar .bottom-footer a {
    color: #1a1a1a;
}

body.light-page .bottom-bar .nav-toggle {
    border-color: #1a1a1a;
}

body.light-page .bottom-bar .nav-toggle span {
    background-color: #1a1a1a;
}

body.light-page .logo-light {
    display: none !important;
}
body.light-page .logo-dark {
    display: block !important;
}

body.light-page .slider-arrow {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

body.light-page .info-overlay {
    background-color: rgba(250, 250, 250, 0.92);
}
body.light-page .info-content h2,
body.light-page .info-desc,
body.light-page .info-contact a {
    color: #1a1a1a;
}

body.light-page .bottom-bar {
    background-color: var(--bg) !important;
}

body.light-page .bottom-footer {
    background-color: var(--bg) !important;
}

/* Slajd z wideo */
.video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .video-slide.mobile-full video {
        object-fit: contain;
        background-color: #000;
    }
}

/* ===== Linki w overlayu ===== */
.info-contact a,
.info-desc a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.info-contact a:hover,
.info-desc a:hover {
    opacity: 0.7;
}

body.light-page .info-contact a,
body.light-page .info-desc a {
    color: #1a1a1a;
}

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 300;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.9rem;
    margin: 0;
    color: #aaaaaa;
}

.cookie-text a {
    color: #f0f0f0;
    text-decoration: underline;
}

.cookie-accept {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 24px;
    font-family: var(--font);
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

.cookie-accept:hover {
    background-color: #fff;
    color: #121212;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Ikony w overlayu */
.info-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.info-icons img {
    width: 32px;
    height: 32px;
    display: block;
}

.info-icons .icon-dark {
    display: none;
}

body.light-page .info-icons .icon-light {
    display: none;
}
body.light-page .info-icons .icon-dark {
    display: block;
}

/* ===== Ikony w linkach (menu mobilne i overlay) ===== */
.mobile-social-links a,
.info-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-social-links img,
.info-contact img {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.mobile-social-links .icon-dark,
.info-contact .icon-dark {
    display: none;
}

body.light-page .mobile-social-links .icon-light,
body.light-page .info-contact .icon-light {
    display: none;
}
body.light-page .mobile-social-links .icon-dark,
body.light-page .info-contact .icon-dark {
    display: block;
}

.mobile-social-links a {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: inherit;
    padding: 8px 0;
}

.mobile-social-links a:hover {
    opacity: 0.8;
}

.info-contact a {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-bottom: 2px;
}

.info-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== Desktop social – tylko ikony ===== */
.desktop-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.desktop-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s;
}

.desktop-social a:hover {
    border-color: currentColor;
}

.desktop-social a span {
    display: none;
}

.desktop-social img {
    width: 22px;
    height: 22px;
    display: block;
}

.desktop-social .icon-dark {
    display: none;
}

body.light-page .desktop-social .icon-light,
.bottom-bar.light-slide .desktop-social .icon-light {
    display: none;
}

body.light-page .desktop-social .icon-dark,
.bottom-bar.light-slide .desktop-social .icon-dark {
    display: block;
}

@media (max-width: 1024px) {
    .mobile-social-links a span {
        display: none;
    }
    .mobile-social-links a {
        width: 48px;
        height: 48px;
        justify-content: center;
    }
}

/* ===== Ikony social w pasku (bez podpisów) ===== */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s;
}

.social-icons a:hover {
    border-color: currentColor;
}

.social-icons img {
    width: 22px;
    height: 22px;
    display: block;
}

.social-icons .icon-dark {
    display: none;
}

body.light-page .social-icons .icon-light,
.bottom-bar.light-slide .social-icons .icon-light {
    display: none;
}
body.light-page .social-icons .icon-dark,
.bottom-bar.light-slide .social-icons .icon-dark {
    display: block;
}

@media (max-width: 1024px) {
    .social-icons {
        margin-left: 0;
        order: 2;
    }
    .slider-controls {
        order: 3;
    }
}

/* ===== Kolejność w pasku mobilnym ===== */
@media (max-width: 1024px) {
    .bottom-bar-container .logo {
        order: 0;
    }
    .bottom-bar-container .slider-controls {
        order: 1;
    }
    .bottom-bar-container .social-icons {
        order: 2;
    }
    .bottom-bar-container .nav-toggle {
        order: 3;
        margin-left: auto;
    }
    .bottom-bar-container .main-nav {
        order: 4;
    }
}

/* ===== Dowolna grafika w menu mobilnym ===== */
.mobile-decor {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.mobile-decor img {
    width: 120px;
    height: auto;
    display: block;
}

.mobile-decor .decor-dark {
    display: none;
}

body.light-page .mobile-decor .decor-light,
.bottom-bar.light-slide .mobile-decor .decor-light {
    display: none;
}
body.light-page .mobile-decor .decor-dark,
.bottom-bar.light-slide .mobile-decor .decor-dark {
    display: block;
}

@media (min-width: 1025px) {
    .mobile-decor {
        display: none;
    }
}

/* ===== Kolejność elementów w desktopie ===== */
@media (min-width: 1200px) {
    .bottom-bar-container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .logo {
        order: 0;
        margin-right: 20px;
    }

    .main-nav {
        order: 1;
        flex: 0 1 auto;
        max-width: 35%;
    }

    .slider-controls {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        order: 2;
    }

    .social-icons {
        order: 3;
        margin-left: auto;
    }

    .nav-toggle {
        order: 4;
        display: none;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .bottom-bar-container {
        gap: 20px;
    }
    .slider-controls {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Machająca ręka ===== */
.wave-hand {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.wave-hand-img {
    width: 70px;
    height: auto;
    transform-origin: 70% 70%;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
}

/* Naprawa: ręka nie blokuje przycisku zamknięcia */
.wave-hand,
.wave-hand-img {
    pointer-events: none;
}


/* ===== Animacja wejścia dolnego paska (poprawiona) ===== */
.bottom-bar {
    bottom: -180px;                      /* schowany niżej, poza ekranem */
    transition: bottom 0.6s ease, color 0.3s;
}

.bottom-bar.show {
    bottom: 0;                           /* wjeżdża na swoje miejsce */
}


/* ===== Poprawki mobilne ===== */
@media (max-width: 768px) {
    body.slider-page {
        padding-bottom: 80px; /* dolny pasek nie zasłania */
        height: auto;
    }

    .slider-wrapper {
        height: 100vh; /* pełny ekran */
        position: fixed;
        top: 0;
        left: 0;
    }

    .slide {
        height: 100%;
        background-position: center center;
        background-size: cover;
    }

    .slide.mobile-full {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #000;
    }

    .bottom-bar {
        bottom: 0;
        transition: none; /* usuwamy przesunięcie, które mogło wpływać */
        transform: none;
    }
}




/* ===== Poprawki overlayu na telefonach ===== */
/* ===== Poprawki mobilne – przycisk menu, pasek nawigacji ===== */
@media (max-width: 768px) {
    .bottom-bar {
        bottom: 0 !important;
        transform: none !important;
        transition: none !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .bottom-bar-container {
        gap: 12px;
        flex-wrap: nowrap;
        padding: 0 15px;
        align-items: center;
    }

    .logo-img {
        height: 55px;
        width: auto;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .slider-controls {
        gap: 6px;
    }

    .social-icons {
        margin-left: 0;
        gap: 6px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        margin-left: auto;
        position: relative;
        right: 0;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

    .bottom-footer {
        font-size: 0.7rem;
        padding: 8px 10px 5px;
    }
}

/* ===== Poprawki mobilne – slajdy i overlay ===== */
@media (max-width: 768px) {
    /* Slajdy zajmują przestrzeń od góry do paska dolnego */
    .slider-wrapper {
        height: calc(100vh - 70px);   /* 70px – wysokość paska, możesz dostosować */
        top: 0;
    }

    .slide {
        background-position: center center;
        background-size: cover;
    }

    .slide.mobile-full {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #000;
    }

    /* Overlay info – mniejszy font i grafika */
    .info-content {
        padding: 10px;
        max-width: 90%;
    }

    .info-content h2 {
        font-size: 2.2rem;          /* było 3.5rem */
        margin-bottom: 20px;
    }

    .info-desc {
        font-size: 1.1rem;          /* było 1.4rem */
        margin-bottom: 30px;
    }

    .info-contact a {
        font-size: 1rem;            /* było 1.2rem */
    }

    .wave-hand-img {
        width: 50px;                /* było 70px */
        height: auto;
    }

    .info-icons img {
        width: 28px;
        height: 28px;
    }

    /* Przycisk menu – upewniamy się, że jest na wierzchu */
    .nav-toggle {
        z-index: 110;
    }
}

/* ===== Osobne wersje slajdów ===== */
.mobile-slide {
    display: none;
}

@media (max-width: 768px) {
    .desktop-slide {
        display: none;
    }
    .mobile-slide {
        display: block;
    }
}