/* GLOBALNE */
*{}
/* font */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Quicksand:wght@300..700&display=swap');
/* font-family: "Abril Fatface", sans-serif */
/* font-family: "Quicksand", serif  */
/* kolory */
:root{
--kolor-czerwony: #c21d1d;
--kolor-niebieski: #2143db;
--kolor-fioletowy: #4a007c;
--kolor-zielony: #76b517;
--kolor-zolty: #f3c728;

--kolor-glowny: #666666;
--kolor-uzupelniajacy: #7d7d7d;
--kolor-jasny: #8c8c8c;
--kolor-sredni: #707070;
--kolor-ciemny: #3d3d3d;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; 
}
*{
    box-sizing: border-box;
    transition: 1s ease-out;
}
html{
    scroll-behavior: smooth;
    font-size: 16px;
}
body{
    font-size: 1rem;
}
section, footer{
    min-height: 100vh;
}

img{
    max-width: 100%;
}
h3{
    font-family: "Abril Fatface", sans-serif;
    /* font-size: clamp(2rem, 8vh, 10rem); */
}
span, a{
    font-family: "Quicksand", serif;
}

/* SCROLL */



/* NAWIGACJA */
nav{
    /* background-color: red; */
    /* background-color: var(--kolor-ciemny); */
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 180px;

    /* background-color: rgba(61, 61, 61, 0.85); */

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000;
}
nav .zawartosc{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 0;
    margin: 0;
    text-align: left;
}
/* nav .zawartosc ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
} */
nav a{
    font-family: "Quicksand", sans-serif;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;

    transition: color 0.3s ease;
}
nav a:hover{
    color: var(--kolor-uzupelniajacy);
}
nav a.promocja{
    position: relative;
}
nav a.promocja::after{
    height: 20px;
    left:40%
}

/* nav mobile */
.burger{
    /* background-color: var(--kolor-glowny); */
    color: var(--kolor-jasny);

    position: fixed !important;
    /* top: 2rem; */
    right: 2rem;
    top: 2rem;

    padding: 1.1rem 1.2rem;
    cursor: pointer;

    display: none;
    /* ukrywamy burgera na desktop */
    z-index: 999;
}
.burger:hover{
    background-color: var(--kolor-uzupelniajacy);

}
.nakladka{
    background-color: var(--kolor-ciemny);
    opacity: .9;

    position: fixed !important;
    top: 0;
    right: 0;
    z-index: 9998;

    height: 100%;
    width: 0%;
    /* domyślnie niewidoczne, szerokość 0 - ten parametr będzie dynamicznie zmieniany skryptem */
    overflow: hidden;
    /* żeby elementy wystające poza box były ukryte */

    display: flex;
    justify-content: center;
    align-items: center;

}
.zamknijX{
    color: var(--kolor-jasny);
    background-color: var(--kolor-glowny);
    font-size: 3rem;
    padding: .5rem 1.1rem;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    /* względem kontenera */
    top: 2rem;
    right: 2rem;
}
.zamknijX:hover{
    background-color: var(--kolor-uzupelniajacy);
}
.nakladka ol{
    flex-direction: column;
    /* background-color: aqua; */
    gap: 2vh;
}
.nakladka ol li{}
.nakladka ol li a{
    /* background-color: blueviolet; */
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 2vh 0;
    color: var(--kolor-jasny);
}
.nakladka ol li a:hover{
    background-color: var(--kolor-glowny);
}


/* WSZYSTKIE SEKCJE */
section{}
.zawartosc{
    max-width: 1400px;
    /* background-color: red; */
    padding: 2rem;
}

/* POSZCZEGÓLNE SEKCJE */
#pierwsza{
}
.home {
    /* background-color: red; */

    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home img{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;

    filter: blur(4px);
    transform: scale(1.05);
}
.home h1{
    position: relative;
    z-index: 2;

    font-family: "Abril Fatface", serif !important;
    font-size: 10vw;
    color: black;
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-top: -20vh;
}
.home h1 span{
    color: var(--kolor-fioletowy);
    font-family: "Abril Fatface", serif;
}
.home a{
    position: relative;
    z-index: 2;
    font-family: "Abril Fatface", serif;
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 4px;
}
.home::before{
    content: "";
    position: absolute;
    inset: 0;

    /* background: rgba(0, 0, 0, 0.05); */
    z-index: 1;
}
#pierwsza .zawartosc{}
#logo{}
#pierwsza h1{}
#pierwsza a{}
#pierwsza a:hover{}

/* STYLE SCROLL */
/* width */
::-webkit-scrollbar {
  width: 0;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/********************************/
/* STYLE SCROLL DRUGA */
/* width */
#druga .zawartosc::-webkit-scrollbar {
  width: 0;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: yellowgreen;
}
/********************************/
/* DLA WSZYSTKICH SEKCJI */
#pierwsza a{
    font-size: 4vh;
    padding: 2rem;
}

#pierwsza{
    min-height: 110vh;
}

#druga{
    background-color: var(--kolor-glowny);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#druga .zawartosc{
    background-color: var(--kolor-glowny);
    /* background-color: yellowgreen; */
    background: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 200px;
    padding-right: 100px;
}
#druga article{
    background-color: var(--kolor-glowny);
    flex: 1 1 250px;
    padding: 2rem;
    position: relative;
}
#druga article::before{
    background-color: var(--kolor-glowny);
    padding: 2rem;
    display: inline;
    display: block;
    height: 200px;
    text-align: center;
    font-size: 7cqw;
    transition: 4s;
}
#druga article:hover::before{
    height: 400px;
}

#trzecia{
    background-color: var(--kolor-uzupelniajacy);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#trzecia .zawartosc{
    /* background-color: yellowgreen; */
    position: relative;
    background: none;
    display: flex;
    gap: 1rem;
    padding-left: 200px;
    padding-right: 200px;
    /* width: calc(100% - 200px); */
}
#trzecia .ukryty-tekst{
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: black;
    padding: 20px;
    /* max-width: 80%; */
}
#trzecia .leather .ukryty-tekst {
    margin-left: 20px;
    margin-top: 50px; /
    text-align: justify; 
}
#trzecia .cotton .ukryty-tekst {
    margin-left: 20px; 
    margin-top: 50px;  
    text-align: left;
}
#czwarta{
    background-color: var(--kolor-glowny);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#czwarta .zawartosc{
    /* background-color: yellowgreen; */
    background: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 200px;
    padding-right: 100px;
}
#piata{
    background-color: var(--kolor-uzupelniajacy);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#piata .zawartosc{
    /* background-color: yellowgreen; */
    background: none;
    display: flex;
    gap: 1rem;
    padding-left: 200px;
    padding-right: 200px;
}
#szosta{
    background-color: var(--kolor-glowny);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#szosta .zawartosc{
    /* background-color: yellowgreen; */
    width: 100%;
    background: none;
    display: flex;
    gap: 1rem;
    /* padding: 0 20px; */
    padding-left: 200px;
    padding-right: 200px;
}


/* zbiorcze dla wszystkich zawartosci artykułów */
#druga article{
    flex: 1 0 300px;
    position: relative;
    /* background-color: blue; */
    height: 80vh;
    overflow: hidden;
}
#druga article span{
    position: absolute;
    z-index: 9;
}
#druga article .fotodina{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#druga article .fotolola{
    position: relative;
    z-index: 8;
}
#druga article .fotomela{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}

#druga article h3{
    /* position: absolute; */
    z-index: 9;
}
#druga article figure {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  cursor: grab;
  /* Prevents dragging the whole page when reaching the end of the element */
  overscroll-behavior-x: contain;
}

section figure {
  cursor: grab;
  overscroll-behavior-x: contain;
}

section figure.is-dragging {
  cursor: grabbing;
  user-select: none;
}

#druga figure img{

}
#druga article .apla{
    background-color: var(--kolor-zolty);
    position: absolute;
    inset: 0;
}



#trzecia article{
    flex: 1 0 300px;
    position: relative;
    /* background-color: violet; */
    height: 80vh;
    overflow: hidden;
}
#trzecia article span{
    position: absolute;
    z-index: 9;
}
#trzecia article .fotoleather{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#trzecia article .fotocotton{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#trzecia article h3{
    /* position: absolute; */
    z-index: 9;
}
#trzecia article figure{
    position: relative;
    overflow: hidden;
}
#trzecia article figure::after{
    content: "←";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.35);
    font-size: 1.2rem;
    font-weight: 700;
    pointer-events: none;
    opacity: 0.75;
    animation: trzeciSwipeHint 1.6s ease-in-out infinite;
}
#trzecia article .apla{
    background-color: var(--kolor-czerwony);
    position: absolute;
    inset: 0;
}

@keyframes trzeciSwipeHint {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-50%) translateX(-4px);
        opacity: 0.75;
    }
}
#czwarta article{
    flex: 1 0 300px;
    position: relative;
    height: 80vh;
    overflow: hidden;
}
#czwarta article span{
    position: absolute;
    z-index: 8;
}
#czwarta article .fotomery{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#czwarta article .fototola{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#czwarta article .fotoluna{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#czwarta article h3{
    z-index: 9;
}
#czwarta article .apla{
    background-color: var(--kolor-niebieski);
    position: absolute;
    inset: 0;
}
#piata article{
    flex: 1 0 300px;
    position: relative;
    height: 80vh;
    overflow: hidden;
}
#piata article span{
    position: absolute;
    z-index: 8;
}
#piata article .fotoroxy{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}
#piata article .fotonika{
    /* background-color: pink; */
    position: relative;
    z-index: 8;
}

#piata article h3{
    z-index: 9;
}
#piata article .apla{
    background-color: var(--kolor-zielony);
    position: absolute;
    inset: 0;
}
#szosta .wizualna{
    flex: 1;
    position: relative;
    min-height: 600px;
}
#szosta .wizualna .apla{
    background-color: var(--kolor-fioletowy);
    position: absolute;
    top: 50px;
    left: 0;
    width: 42%;
    height: 80%;
    z-index: 1;
}
#szosta .wizualna figure{
    position: absolute;
    top: 50px;
    left: 20%;
    width: 80%;
    z-index: 2;
    margin: 0;
}
#szosta .wizualna h3{
    font-size: 7rem;
    color: black;
    position: absolute;
    top: 10px;
    left: 25%;
    z-index: 3;
}
#szosta .wizualna figure{
    position: absolute;
    top: 150px;
    left: 20%;
    width: 80%;
    z-index: 2;
    margin: 0;
}
#szosta .tekstowa{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    padding-right: 2rem;
}
#szosta .tekstowa h3{
    font-size: 2rem;
    margin: 0;
}
#szosta .tekstowa span{
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
 #szosta .przycisk{
    display: inline-block;
    background-color: var(--kolor-fioletowy);
    color: var(--kolor-zolty);
    padding: 12px 32px;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: filter 0.3s ease;
}
#szosta .przycisk:hover{
    filter: brightness(75%);
}
/* dla poszczególnych imion */
#druga .dina{
    /* background-color: green; */
}
#druga .dina span{
    /* background-color: purple; */
    top: 0;
    left: 0;
}
#druga .dina h3{
    font-size: 7cqw;
    top: 20%;
    right: 0;
}
#druga .dina .fotodina{
    /* background-color: aqua; */
    width: 85%;
    height: 100%;
    left: 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#druga .dina figure{
    /* padding: 1rem; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
}
#druga .dina figure img{
    flex-shrink: 0;
}
#druga .dina .apla{
    /* background-color: red; */
    right: 15%;
    top: 0;
    width: 85%;
    height: 100%;
}

#druga .lola{
    /* background-color: green; */
}
#druga .lola span{
    /* background-color: purple; */
    left: 0;
    bottom: 0;
}
#druga .lola h3{
    font-size: 7cqw;
    margin-top: 10px;
    text-align: right;
    order: 2;
}
#druga .lola .fotolola{
    /* background-color: blue; */
    position: absolute;
    top: 0;
    width: 90%;
    height: 70%;
    left: 5%;
    /* right: 0; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}
#druga .lola figure{
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
}
#druga .lola figure img{
    /* top: 80%; */
    flex-shrink: 0;
}
#druga .lola .apla{
    /* background-color: purple; */
    /* top: 0; */
    width: 100%;
    height: 50%;
    top: 15%;
    left: 0;
    z-index: 1;

    /* bottom: 0; */
    /* left: -2px; */
}
#druga .mela{
    /* background-color: saddlebrown; */
    /* width: 70%; */
}
#druga .mela span{
    /* background-color: violet; */
    right: 0;
    /* bottom: 700px; */
    top: 0;
}
#druga .mela h3{
    font-size: 7cqw;
    margin-top: 10px;
    text-align: left;
}
#druga .mela .fotomela{
    /* background-color: blue; */
    width: 85%;
    height: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#druga .mela figure{
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
}
#druga .mela figure img{
    flex-shrink: 0;
}
#druga .mela .apla{
    /* background-color: violet; */
    width: 100%;
    height: 100%;
    /* top: 0; */
    left: 15%;
    bottom: 0;
}

/* dla materiałów */
#trzecia .leather{
    /* background-color: green; */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
#trzecia .leather span{
    /* background-color: purple; */
    right: 0;
    top: 0;
}
#trzecia .leather h3{
    color: var(--kolor-niebieski);
    font-size: 7cqw;
    margin-top: 10px;
    text-align: left;
    order: 2;
}
#trzecia .leather .fotoleather{
    /* background-color: blue; */
    width: 70%;
    height: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#trzecia .leather figure{
    /* background-color: violet; */
    order: 1;
    /* left: 0; */
    display: flex;
    overflow-x: scroll;
    bottom: 0;
}
#trzecia .leather .apla{
    /* background-color: green; */
    top: 0;
    left: 30%;
    width: 100%;
    height: 100%;
}
#trzecia .cotton{
    /* background-color: green; */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
#trzecia .cotton span{
    /* background-color: purple; */
    position: absolute;
    left: 0;
    bottom: 0;
}
#trzecia .cotton h3{
    color: var(--kolor-niebieski);
    font-size: 7cqw;
    margin-top: 10px;
    text-align: left;
}
#trzecia .cotton .fotocotton{
    /* background-color: blue; */
    position: absolute;
    right: 0;
    width: 70%;
    height: 100%;
    /* left: 0; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#trzecia .cotton figure{
    /* background-color: violet; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
}
#trzecia .cotton figure img{
}
#trzecia .cotton .apla{
    top: 0;
    width: 70%;
    height: 100%;
}
/* dla imion czwartej sekcji */
#czwarta .mery{
    /* background-color: green; */
}
#czwarta .mery span{
    /* background-color: purple; */
    right: 0;
    top: 0;
}
#czwarta .mery h3{
    display: flex;
    flex-direction: column;
    font-size: 7cqw;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
}
#czwarta .mery .fotomery{
    /* background-color: aqua; */
    width: 70%;
    height: 85%;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#czwarta .mery figure{
    /* padding: 1rem; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
}
#druga .mery figure img{
    flex-shrink: 0;
}
#czwarta .mery .apla{
    top: 0;
    width: 100%;
    height: 50%;
}

#czwarta .tola{
    /* background-color: yellow; */
}

#czwarta .tola span{
    /* background-color: purple; */
    left: 0;
    bottom: 0;
    z-index: 9;
}
#czwarta .tola h3{
    display: flex;
    flex-direction: column;
    font-size: 7cqw;
    position: relative;
    bottom: 8%;
    /* top: 0; */
    margin-top: 10px;
    text-align: center;
    order: 2;
}
#czwarta .tola .fototola{
    /* background-color: blue; */
    right: 80px;
    position: absolute;
    
    width: 65%;
    height: 82%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#czwarta .tola figure{

    /* background-color: darkblue; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
    transform: rotateX(180deg);
}
#czwarta .tola figure img{
    transform: rotateX(180deg);
    flex-shrink: 0;
}
#czwarta .tola .apla{
    /* background-color: green; */
    width: 100%;
    height: 50%;
    top: 30%;
}
#czwarta .luna{
    /* background-color: yellow; */

}
#czwarta .luna span{
    /* background-color: purple; */
    left: 2px;
    bottom: 10px;
    /* left: 2; */
    z-index: 9;
}
#czwarta .luna h3{
    display: flex;
    flex-direction: column;
    font-size: 7cqw;
    position: relative;
    bottom: 8%;
    margin-top: 10px;
    text-align: right;
    order: 2;
}
#czwarta .luna .fotoluna{
    /* background-color: blue; */
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 87%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#czwarta .luna figure{
    /* background-color: darkblue; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
    transform: rotateX(180deg);
}
#czwarta .luna figure img{
    transform: rotateX(180deg);
    flex-shrink: 0;
}
#czwarta .luna .apla{
    width: 100%;
    height: 70%;
    top: 50%;
}
#piata .roxy{
    /* background-color: yellow; */
    
}
#piata .roxy span{
    /* background-color: purple; */
    left: 0;
    top: 10px;
    z-index: 9;
}
#piata .roxy h3{
    color: var(--kolor-zolty);
    display: flex;
    flex-direction: column;
    font-size: 7cqw;
    /* left: 0; */
    position: relative;
    bottom: 3%;
    text-align: left;
    order: 2;
}
#piata .roxy .fotoroxy{
    /* background-color: blue; */
    position: relative;
    left: 40%;
    width: 56%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#piata .roxy figure{
    /* background-color: darkblue; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
    transform: rotateX(180deg);
}
#piata .roxy figure img{
    transform: rotateX(180deg);
    flex-shrink: 0;
}
#piata .roxy .apla{
    /* background-color: pink; */
    width: 80%;
    height: 100%;
    /* top: 50%; */

}

#piata .nika{
    /* background-color: yellow; */
}
#piata .nika span{
    /* background-color: purple; */
    right: 0;
    top: 10px;
    z-index: 9;
}
#piata .nika h3{
    color: var(--kolor-zolty);
    /* display: flex;
    flex-direction: column;
    font-size: 7cqw; */
     font-size: 7cqw;
    margin-top: 10px;
    text-align: left;
    /* left: 0; */
    position: relative;
    bottom: 3%;
    text-align: left;;
    order: 2;
}
#piata .nika .fotonika{
    /* background-color: blue; */
    /* position: absolute; */
    width: 55%;
    height: 100%;
    /* right: 0; */
    left: 10%;
    /* bottom: 0; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#piata .nika figure{
    /* background-color: darkblue; */
    order: 1;
    display: flex;
    overflow-x: scroll;
    bottom: 0;
    transform: rotateX(180deg);
}
#piata .nika figure img{
    transform: rotateX(180deg);
    flex-shrink: 0;
}
#piata .nika .apla{
    /* background-color: pink; */
    /* position: relative; */
    /* right: 0; */
    width: 100%;
    height: 100%;
    left: 20%; 
}


/* STOPKA */
#stopka{
    background-color: var(--kolor-sredni);
    color: var(--kolor-jasny);
    min-height: 20vh;
    padding: 4vh 20px;
    /* border-radius: 40px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#stopka .zawartosc{
    display: flex;
    gap: 20px;
}
#stopka article{
    flex: 1;
    padding: 10px;
}
#stopka article h3{
    margin-bottom: 20px;
    color: var(--kolor-ciemny);
    opacity: 60%;
}
#stopka article a{
    display: block;
    padding: 10px 0;
    color: var(--kolor-jasny);
}
#stopka article a:hover{
    color: var(--kolor-ciemny);
}
#stopka .komunikat{
    margin-top: 10px;
    color: var(--kolor-uzupelniajacy);
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 1.2em;
}
#stopka input[type=email]{
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 40px;
    margin-bottom: 10px;
}
#stopka input[type=submit]{
    border: 0;
    border-radius: 40px;
    padding: 10px;
    font-weight: 700;
    display: block;
    margin: auto;
}
#stopka input[type=submit]:hover{
    background-color: var(--kolor-ciemny);
    color: var(--kolor-uzupelniajacy);
}

/* MOBILE */
@media (min-width: 1000px) and (max-width: 1330px) {
    nav a{
        font-size: 1.25rem;
    }
    #piata .zawartosc{
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    #piata article{
        width: 100%;
        height: auto;
        min-height: 60vh;
        flex: 1 0 auto;
    }

    #piata .roxy,
    #piata .nika{
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    #piata .roxy .fotoroxy,
    #piata .nika .fotonika{
        position: relative;
        left: auto;
        width: 100%;
        height: 45vh;
        min-height: 280px;
    }

    #piata .roxy .apla,
    #piata .nika .apla{
        width: 100%;
        height: 100%;
        left: 0;
    }

    #piata .roxy h3,
    #piata .nika h3{
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
        text-align: left;
        margin: 0 0 1rem 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    #piata .roxy span,
    #piata .nika span{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: block;
        margin-bottom: 0.5rem;
    }
}
@media (min-width: 601px) and (max-width: 900px){
    nav a{
        font-size: 1.25rem;
    }
     #trzecia{
        padding: 0;
    }
    #trzecia .zawartosc{
        display: block;
        height: 100vh;
        position: relative;
    }
    #trzecia .zawartosc article{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        pointer-events: none;
    }
    #trzecia .zawartosc article.leather{
        z-index: 1;
    }
    #trzecia .zawartosc article.cotton{
        z-index: 2;
    }
    #trzecia .leather .apla{
        top: 65%;
        left: 0;
        width: 100%;
        height: 35%;
        pointer-events: none !important;
    }
    #trzecia .cotton .apla{
        display: none;
    }
    #trzecia .leather .fotoleather{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* display: none; */
    }
    #trzecia .cotton .fotocotton{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    #trzecia .leather figure {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 65%;
        margin: 0;
        z-index: 10;
        overflow: hidden;
    }
    #trzecia .cotton figure {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 65%;
        margin: 0;
        z-index: 5;
        overflow: hidden;
    }
    #trzecia figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease, filter 0.4s ease;
    }
    #trzecia figure {
        cursor: pointer;
        touch-action: manipulation;
        pointer-events: auto;
    }
    #trzecia figure:hover img,
    #trzecia figure:active img,
    #trzecia figure.is-open img{
        transform: scale(1.1);
        filter: brightness(0.3);
    }

    #trzecia .ukryty-tekst{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        color: white;
        font-size: 2vw;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 20;
        pointer-events: none !important;
    }
    #trzecia figure:hover .ukryty-tekst,
    #trzecia figure:active .ukryty-tekst,
    #trzecia figure.is-open .ukryty-tekst{
        opacity: 1;
        visibility: visible;
    }
    #trzecia .leather h3{
        position: absolute;
        left: 20px;
        font-size: 10vw;
        color: var(--kolor-niebieski);
        margin: 0;
        z-index: 10;
        line-height: 1;
        top: auto;
        bottom: 15vh;
        /* pointer-events: none !important; */
    }
    #trzecia .cotton h3{
         position: absolute;
        right: 20px;
        font-size: 10vw;
        color: var(--kolor-niebieski);
        margin: 0;
        z-index: 10;
        line-height: 1;
        top: auto;
        bottom: 5vh;
        /* pointer-events: none !important; */
    }
    #trzecia .leather span {
        position: absolute;
        bottom: auto;
        right: 20px;
        top: 65%;
        left: auto;
        color: black;
        z-index: 10;
        pointer-events: none !important;
    }
    #trzecia .cotton span {
        display: none; 
    }
    #piata .roxy .fotoroxy{
        position: relative;
        top: 
        left: auto;
        width: 100%;
        /* height: 45vh; */
        left: 10%;
    }
    #piata .nika .fotonika{
        position: relative;
        right: auto;
        width: 100%;
        height: 45vh;
        right: 30%;
    }
    #piata .nika h3{
        text-align: left;
        /* right: 10%; */
    }
    #piata .roxy h3{
        text-align: left;
    }
    
}
@media (min-width: 601px) and (max-width: 1200px){
    nav a{
        font-size: 1.25rem;
    }
    #druga .zawartosc,
    #czwarta .zawartosc{
        flex-direction: column;
        align-items: stretch;
    }

    #druga article,
    #czwarta article{
        height: 60vh;
        flex: 1 0 auto;
        width: 100%;
    }
    #trzecia article{
        height: 60vh;
    }
    #piata article{
        height: 60vh;
    }
    #szosta {
        padding: 0;
    }
    
    #szosta .zawartosc {
        display: block;
        height: 100vh;
        width: 100%;
        position: relative;
        padding: 0 !important;
    }

    #szosta .wizualna {
        position: static;
    }
    #szosta .tekstowa {
        position: absolute;
        top: 32vh; 
        right: 10vw; 
        width: 75vw; 
        height: 45vh;
        z-index: 20;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0; 
        transition: opacity 0.4s ease;
        pointer-events: none; 
        text-align: center;
        color: white; 
        padding: 0 5vw;}

    #szosta .wizualna .apla {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%; 
        height: 100%; 
    }
    #szosta .wizualna h3 {
        position: absolute;
        top: 10vh; 
        left: 10vw;
        font-size: 16vw; 
        margin: 0;
        z-index: 10;
        color: black;
    }

    #szosta .wizualna figure {
        position: absolute;
        top: 32vh;
        right: 10vw;
        width: 75vw;
        height: 45vh;
        margin: 0;
        z-index: 5;
    }

    #szosta .wizualna figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: filter 0.4s ease;
    }
    #szosta .wizualna:hover figure img{
        filter: brightness(0.3);
    }
    #szosta .wizualna:hover figure img{
        filter: brightness(0.3);
    }

    #szosta .tekstowa h3,
    #szosta .tekstowa span {
        display: block;
        /* padding: 2rem; */
    }
    #szosta .tekstowa span{
        /* color: red; */
        padding: 2rem;
    }
    #szosta .wizualna:hover ~ .tekstowa,
    #szosta .wizualna:active ~ .tekstowa {
        opacity: 1;
    }

    #szosta .przycisk {
        position: relative;
        bottom: auto; 
        right: auto; 
        /* z-index: 100; */
        /* opacity: 1; */
        display: block;
        margin-top: 2opx;
        pointer-events: auto;
        padding: 12px 28px;
        width: fit-content;
    }

    }


@media (max-width: 900px) {

}


@media(max-width:600px)
{
    html, body{
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    nav{
        display: none;
    }
    .burger{
        display: block;
    }
    section{
        min-height: 100vh;
        scroll-margin-top: 0;
    }
    #pierwsza h1{
        font-size: 8vh;
    }
    #pierwsza span{
        font-size: 12vh;
    }
    #pierwsza a{
        font-size: 3vh;
    }
    #druga{
        padding: 2rem 0;
    }
    #druga .zawartosc{
        background-color: var(--kolor-glowny);
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: scroll;
        padding: 2rem;
        scroll-snap-type: x mandatory;
    }
    #druga article{
        /* background-color: red; */
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    #druga article h3{
        font-size: 5rem !important;
        z-index: 20;
    }
  
    #druga figure img{
        /* background-color: green; */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #trzecia{
        padding: 0;
    }
    #trzecia .zawartosc{
        display: block;
        height: 100vh;
        position: relative;
    }
    #trzecia .zawartosc article{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        pointer-events: none;
    }
    #trzecia .zawartosc article.leather{
        z-index: 1;
    }
    #trzecia .zawartosc article.cotton{
        z-index: 2;
    }
    #trzecia .leather .apla{
        top: 65%;
        left: 0;
        width: 100%;
        height: 35%;
        pointer-events: none !important;
    }
    #trzecia .cotton .apla{
        display: none;
    }
    #trzecia .leather .fotoleather{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* display: none; */
    }
    #trzecia .cotton .fotocotton{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    #trzecia .leather figure {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 65%;
        margin: 0;
        z-index: 10;
        overflow: hidden;
    }
    #trzecia .cotton figure {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 65%;
        margin: 0;
        z-index: 5;
        overflow: hidden;
    }
    #trzecia figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease, filter 0.4s ease;
    }
    #trzecia figure {
        cursor: pointer;
        touch-action: manipulation;
        pointer-events: auto;
    }
    #trzecia figure:hover img,
    #trzecia figure:active img,
    #trzecia figure.is-open img{
        transform: scale(1.1);
        filter: brightness(0.3);
    }

    #trzecia .ukryty-tekst{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        color: white;
        font-size: 4vw;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 20;
        pointer-events: none !important;
    }
    #trzecia figure:hover .ukryty-tekst,
    #trzecia figure:active .ukryty-tekst,
    #trzecia figure.is-open .ukryty-tekst{
        opacity: 1;
        visibility: visible;
    }
    #trzecia .leather h3{
        position: absolute;
        left: 20px;
        font-size: 18vw;
        color: var(--kolor-niebieski);
        margin: 0;
        z-index: 10;
        line-height: 1;
        top: auto;
        bottom: 15vh;
        /* pointer-events: none !important; */
    }
    #trzecia .cotton h3{
         position: absolute;
        right: 20px;
        font-size: 18vw;
        color: var(--kolor-niebieski);
        margin: 0;
        z-index: 10;
        line-height: 1;
        top: auto;
        bottom: 5vh;
        /* pointer-events: none !important; */
    }
    #trzecia .leather span {
        position: absolute;
        bottom: auto;
        right: 20px;
        top: 65%;
        left: auto;
        color: black;
        z-index: 10;
        pointer-events: none !important;
    }
    #trzecia .cotton span {
        display: none; 
    }
    
    #czwarta{
        padding: 2rem 0;
    }
    #czwarta .zawartosc{
        background-color: var(--kolor-uzupelniajacy);
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: scroll;
        padding: 2rem;
        scroll-snap-type: x mandatory;
    }
    #czwarta article{
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    #czwarta article h3{
        font-size: 5rem !important;
        z-index: 20;
    }
  
    #czwarta figure img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #czwarta .zawartosc{
        width: 100% !important;
        padding: 0 20px;
    }
    
    #piata {
        padding: 0;
    }

    #stopka .zawartosc{
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    #stopka article{
        width: 100%;
        padding: 8px 0;
    }
    #stopka article h3{
        margin-bottom: 10px;
    }
    #stopka input[type=email]{
        max-width: 100%;
    }
    #stopka input[type=submit]{
        margin: 0;
    }
    #stopka .komunikat{
        margin-top: 8px;
        text-align: center;
    }

    #piata .zawartosc {
        display: block;
        height: 100vh;
        position: relative;
        background-color: var(--kolor-zielony);
    }

    #piata .zawartosc article {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    #piata .apla {
        display: none;
    }

    #piata .roxy .fotoroxy {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 55vw; 
        height: 50vh;
    }
    
    #piata .nika .fotonika {
        position: absolute;
        bottom: 0;
        left: 0;
        top: auto;
        width: 55vw;
        height: 50vh;
    }

    #piata figure, 
    #piata figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
    }

    #piata .roxy span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* wyśrodkowanie w pionie i poziomie */
        font-size: 25vw;
        color: var(--kolor-czerwony); 
        z-index: 10;
        margin: 0;
        line-height: 1;
    }
    #piata .nika span {
        display: none;
    }

    #piata .roxy h3,
    #piata .nika h3 {
        position: absolute;
        font-size: 15vw;
        color: white;
        z-index: 15;
        margin: 0;
        line-height: 1;
    }


    #piata .roxy h3 {
        top: 0; 
        right: 25vh;
    }
    #piata .nika h3 {
        bottom: 0;
        left: 45vw;
    }
    
    #szosta {
        padding: 0;
    }
    
    #szosta .zawartosc {
        display: block;
        height: 100vh;
        width: 100%;
        position: relative;
        padding: 0 !important;
    }

    #szosta .wizualna {
        position: static;
    }
    #szosta .tekstowa {
        position: absolute;
        top: 32vh; 
        right: 10vw; 
        width: 75vw; 
        height: 45vh;
        z-index: 20;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0; 
        transition: opacity 0.4s ease;
        pointer-events: none; 
        text-align: center;
        color: white; 
        padding: 0 5vw;}

    #szosta .wizualna .apla {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%; 
        height: 100%; 
    }
    #szosta .wizualna h3 {
        position: absolute;
        top: 20vh; 
        left: 10vw;
        font-size: 16vw; 
        margin: 0;
        z-index: 10;
        color: black;
    }

    #szosta .wizualna figure {
        position: absolute;
        top: 32vh;
        right: 10vw;
        width: 75vw;
        height: 45vh;
        margin: 0;
        z-index: 5;
    }

    #szosta .wizualna figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: filter 0.4s ease;
    }
    #szosta .wizualna:hover figure img{
        filter: brightness(0.3);
    }
    #szosta .wizualna:hover figure img{
        filter: brightness(0.3);
    }

    #szosta .tekstowa h3,
    #szosta .tekstowa span {
        display: block;
        /* padding: 2rem; */
    }
    #szosta .tekstowa span{
        padding: 1rem;    }
    #szosta .wizualna:hover ~ .tekstowa,
    #szosta .wizualna:active ~ .tekstowa {
        opacity: 1;
    }

    #szosta .przycisk {
        position: relative;
        bottom: auto; 
        right: auto; 
        /* z-index: 100; */
        /* opacity: 1; */
        display: block;
        margin-top: 2opx;
        pointer-events: auto;
        padding: 12px 28px;
        width: fit-content;
    }
}
    
