@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap');

* {
    box-sizing: border-box;
    transition: 200ms ease;

    cursor: none;

     /* outline: 1px solid rgba(255, 0, 0, 0.3); */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Intel One Mono", monospace;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Bebas Neue', sans-serif;
}

.cursor {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 150ms ease;
}

.cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    right: -6px;
    height: 3px;
    background-color: red;
    transform: translateY(-50%);
}

.cursor::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    bottom: -6px;
    width: 3px;
    background-color: red;
    transform: translateX(-50%);
}

.cursor.hover::before,
.cursor.hover::after {
    background-color: white;
}

/*NAWIGACJA MOBILE*/

.burger {
    color: rgb(255, 0, 0);
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 200;
    font-size: 3rem;
    padding: .3rem;
    cursor: pointer;
    display: none;
}

.burger:hover {
    color: rgb(255, 255, 255);
}

.nakladka {
    opacity: .9;
    background-color: rgb(71, 0, 0);
    position: fixed;
    z-index: 150;
    right: 0;
    height: 100%;
    width: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 300ms ease;
}

.zamknijX {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    padding: .5rem;
    cursor: pointer;
    color: white;
}

.zamknijX:hover {
    color: rgb(255, 0, 0);
}

.nakladka ol {
    width: 100%;
}

.nakladka ol li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 900;
    font-size: 2rem;
    padding: 2rem 0;
    margin-bottom: 2vh;
}

.nakladka ol li a:hover {
    background-color: white;
    color: red;
}


/*NAWIGACJA DESKTOP*/

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.651);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    /* right: 50%; */
    /* margin: 0 auto; */
    z-index: 100;
    /* width: 40%; */
    padding: 1rem 3rem;
    border-radius: 2rem;
}

nav ol {
    display: flex;
    gap: 5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

nav a:hover {
    color: red;
}


/*WSPÓLNE DLA SEKCJI*/

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem;
}


/*HOME*/

#HOME {
    background: url("../img/background.png") center/cover no-repeat;
    align-items: flex-start;
    padding-left: 10rem;
    justify-content: flex-start;
}

#HOME .zawartosc {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}


/*INFO */

#INFO {
    background-color: rgb(46, 32, 32);
}

#INFO .zawartosc {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    color: white;
}

#INFO article {
    flex: 1 1 200px;
    max-width: 600px;
}

#INFO h1 {
    color: red;
    font-size: 60px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

#INFO p {
    letter-spacing: 0.05rem;
}

#INFO .zawartosc img {
    max-width: 520px;
    width: 100%;
}


/*COLLECTION*/

#COLLECTION {
    position: relative;
    padding: 6rem 4rem;
    gap: 0;
}

#COLLECTION .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#COLLECTION .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nakładka ciemności na tło */
#COLLECTION .background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* Wszystko nad tłem */
#COLLECTION > *:not(.background) {
    position: relative;
    z-index: 1;
}

/* Nagłówek sekcji */
.collection-header {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.collection-header h2 {
    font-size: clamp(60px, 10vw, 120px);
    color: red;
    line-height: 1;
    letter-spacing: 0.05em;
}

.collection-header p {
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2rem;
    font-size: 13px;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Hero: zdjęcie + tekst */
.collection-hero {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 5rem;
}

.collection-hero__img {
    flex: 1;
}

.collection-hero__img img {
    width: 100%;
    display: block;
}

.collection-hero__tekst {
    flex: 0 0 380px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collection-hero__tekst p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

/* Przycisk */
.przycisk {
    display: inline-block;
    background-color: transparent;
    border: 1px solid red;
    color: red;
    text-decoration: none;
    padding: 0.9rem 2rem;
    font-size: 13px;
    letter-spacing: 0.25rem;
    text-align: center;
    text-transform: uppercase;
    align-self: flex-start;
}

.przycisk:hover {
    background-color: red;
    color: white;
}

/* Cytat */
.collection-cytat {
    width: 100%;
    max-width: 1200px;
    border-top: 1px solid rgba(255,0,0,0.4);
    border-bottom: 1px solid rgba(255,0,0,0.4);
    padding: 3rem 4rem;
    margin-bottom: 4rem;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
}

.collection-cytat p {
    color: white;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.6;
    font-style: italic;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.collection-cytat span {
    color: red;
    font-size: 24px;
    letter-spacing: 0.15rem;
    font-style: normal;
}

/* Galeria 3 kolumny */
.collection-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

.collection-galeria__item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: 400ms ease, 400ms ease;
}

.collection-galeria__item:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}


/*SHOP*/

#SHOP {
    background-color: rgb(95, 34, 34);
    gap: 2rem;
}

#SHOP h2 {
    font-size: 60px;
    color: white;
    letter-spacing: 0.1em;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1;
    overflow: hidden;

    height: 600px;
}

.slide {
    flex: 0 0 auto;
    transition: all 400ms ease;
    opacity: 0.4;
    transform: scale(0.82);
    width: 28%;
}

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

.slide.next-slide {
    opacity: 0.45;
    transform: scale(0.82);
}

.slide img {
    width: 100%;
    display: block;
}

.slide-label {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 0.2rem;
    margin-top: 0.75rem;
    text-transform: uppercase;
}

.slide.active .slide-label {
    color: white;
}

.slider-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    /* cursor: pointer; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-btn:hover {
    border-color: red;
    color: red;
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255,255,255,0.3);
}

.dot.active {
    background-color: red;
}


/*CONTACT*/

#CONTACT {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;

     overflow: hidden;
}

#CONTACT .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#CONTACT .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#CONTACT .zawartosc {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    
}

#CONTACT .tekst {
    color: white;

    max-width: 600px;
    padding: 6rem;
    align-self: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

#CONTACT .przycisk {
    color: white;

    text-decoration: none;
    padding: 0.7rem 2rem;
    
    background-color: red;
    text-align: center;
    border-radius: 2rem;
    border: none;
    align-self: center;
}

#CONTACT .przycisk:hover {
    background-color: white;
    color: red;
}

#CONTACT .dolna {
    display: flex;
    gap: 8rem;
    padding: 4rem 6rem;
    color: white;
}

#CONTACT .kolumna {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

#CONTACT .kolumna h3 {
    color: red;
    font-size: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

#CONTACT .kolumna a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

#CONTACT .kolumna a:hover {
    color: red;
}

#CONTACT .forma {
    display: flex;
}

#CONTACT .forma input {
    flex: 1;
    background-color: rgba(255, 0, 0, 0.24);
    border: none;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 12px;
    letter-spacing: 0.1rem;
    font-family: "Intel One Mono", monospace;
}

#CONTACT .forma input::placeholder {
    color: rgba(255,255,255,0.4);
}

#CONTACT .forma button {
    background-color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    /* cursor: pointer; */
    letter-spacing: 0.1rem;
    font-family: "Intel One Mono", monospace;
}

#CONTACT .forma button:hover {
    background-color: red;
    color: white;
}

#CONTACT .kolumna p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}


/*MEDIA*/

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .burger {
        display: block;
    }

    /* HOME */
    #HOME {
        padding-left: 2rem;
        padding-right: 2rem;
        justify-content: center;
        align-items: center;
    }

    /* INFO */
    #INFO .zawartosc {
        flex-direction: column;
        width: 100%;
    }

    #INFO article {
        max-width: 100%;
    }

    /* COLLECTION */
    #COLLECTION {
        padding: 4rem 1.5rem;
    }

    .collection-hero {
        flex-direction: column;
        gap: 2rem;
    }

    .collection-hero__tekst {
        flex: 1;
        width: 100%;
    }

    .collection-cytat {
        padding: 2rem 1.5rem;
    }

    .collection-galeria {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .collection-galeria__item img {
        height: 300px;
    }

    /* SHOP */
    .slider-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .slider-btn {
        display: none;
    }

    .slider {
        flex-direction: column;
        height: auto;
        overflow: visible;
        align-items: center;
    }

    .slide,
    .slide.active,
    .slide.prev-slide,
    .slide.next-slide {
        width: 100%;
        opacity: 1;
        transform: scale(1);
    }

    .slider-dots {
        display: none;
    }

    .slider p{
        color: white;
    }

    /* CONTACT */
    #CONTACT {
        padding: 0;
    }

    #CONTACT .tekst {
        padding: 3rem 1.5rem;
    }

    #CONTACT .dolna {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    #CONTACT .kolumna h3 {
        font-size: 16px;
    }

    section {
        padding: 4rem 1.5rem;
    }

     .cursor {
        display: none;
    }

    * {
        cursor: auto;
    }
}
