* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    font-size: 0.1vw;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.p-txt{
    margin-bottom: 15rem;
    line-height: 1.5;
}

.p-quote{
    margin-bottom: 10rem;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; 
    will-change: transform, opacity;
}

.reveal.bottom { transform: translateY(15rem); }  /* Twój domyślny wjazd z dołu */
.reveal.top    { transform: translateY(-15rem); } /* Wjazd z góry */
.reveal.left   { transform: translateX(-15rem); } /* Wjazd z lewej */
.reveal.right  { transform: translateX(15rem); }  /* Wjazd z prawej */
.reveal.in     { transform: scale(0.95); }        /* Delikatne powiększenie (fajne dla obrazków) */

.reveal.fast   { transition-duration: 0.4s; } /* Szybkie, dynamiczne mignięcie */
.reveal.normal { transition-duration: 0.8s; }
.reveal.slow   { transition-duration: 1.2s; } /* Dłuższe, płynne pojawianie się */
.reveal.slower { transition-duration: 2s; } /* Bardzo filmowy, powolny efekt */

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.link-wrapper {
    width: 100%;         /* Zmusza diva do rozciągnięcia się na całą szerokość karty */
    display: flex;       /* Sam staje się flexem */
    justify-content: center; /* Centruje przycisk w poziomie */
}

.sekuya-regular {
    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
}

.black-ops-one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.rowdies-light {
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.rowdies-regular {
  font-family: "Rowdies", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rowdies-bold {
  font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
}










body {
    background-color: #FFF;
}

.container {
    background-color: #707070;
    min-height: 100vh;
    width: 100vw;
    
    display: flex;
    flex-direction: column;
}

header{
    background-color: rgb(46, 46, 46, .975);
    min-height: 10vh;
    border-bottom: #111 solid 0.15vw;
    
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.Logo{
    max-height: 8vh;
    width: 45vw;
    font-size: 25rem;

    display: flex;
    justify-content: left;
    align-items: center;
}

.Logo:hover{
    transform: scale(0.995);
}

.Menu{
    height: 8vh;
    width: 50vw;
    
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.item-1{
    height: 60%;
    width: 20%;
    font-size: 10rem;
    color: #111;
    background-color: #333;
    border-radius: 5rem;
    border: #111 solid 1.5rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.item-1:hover {
    transform: scale(1.06);
    margin-bottom: .8vh;
    font-size: 10.5rem;
    color: #E0E0E0;
    background-color: rgba(17, 17, 17);
    border-radius: 5rem;
}

.item-2{
    height: 60%;
    width: 20%;
    font-size: 10rem;
    color: #E0E0E0;
    background-color: #111;
    border-radius: 5rem;
    border: #111 solid 1.5rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.item-2:hover{
    transform: scale(1.06);
    margin-bottom: .8vh;
    font-size: 10.5rem;
    color: #E0E0E0;
    background-color: rgba(17, 17, 17);
    border-radius: 5rem;
}

.item-3{
    height: 60%;
    width: 20%;
    font-size: 10rem;
    color: #111;
    background-color: #333;
    border-radius: 5rem;
    border: #111 solid 1.5rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.item-3:hover{
    transform: scale(1.06);
    margin-bottom: .8vh;
    font-size: 10.5rem;
    color: #E0E0E0;
    background-color: rgba(17, 17, 17);
    border-radius: 5rem;
}

.item-4{
    height: 60%;
    width: 20%;
    font-size: 10rem;
    color: #111;
    background-color: #333;
    border-radius: 5rem;
    border: #111 solid 1.5rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.item-4:hover{
    transform: scale(1.06);
    margin-bottom: .8vh;
    font-size: 10.5rem;
    color: #E0E0E0;
    background-color: rgba(17, 17, 17);
    border-radius: 5rem;
}








article {
    background-color: #2e2e2e;
    flex-grow: 1;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}

.Parts{
   width: 100vw;

    margin: 2vh 0 3vh 0;

    background-color: #2e2e2e;

   display: flex;
   justify-content: center;
   align-items: center;
}

.Main-Title{
    min-width: 0%;
    font-size: 50rem;

    text-align: center;
}

.Title{
    min-width: 0%;
    font-size: 40rem;

    text-align: center;
}



#volume-link{
    width: 40vw;
    height: 10vh;

    margin: 0 2.5vw 0 2.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

.volume-links{
    height: 7vh;
    width: 11vw;

    font-size: 15rem;

    background-color: rgb(179, 177, 177, .9);
    border: #000 solid 2.5rem;
    border-radius: 8rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.3s ease-in-out;
}

.volume-links:hover{
    transform: scale(1.1);
    box-shadow: 0rem 0rem 10rem rgba(255, 255, 255, .2);
}


#volume1{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;

    width: 27vw;
    border: #000 double 7.5rem;
    border-radius: 8rem;

    scroll-margin-top: 15vh;

    background-color: rgb(140, 140, 140, .8);
}

#volume2{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;

    width: 25vw;
    border: #000 double 7.5rem;
    border-radius: 8rem;

    scroll-margin-top: 15vh;

    background-color: rgb(120, 120, 120, .8);
}

#volume3{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    
    width: 25vw;
    border: #000 double 7.5rem;
    border-radius: 8rem;
    
    scroll-margin-top: 15vh;
    
    background-color: rgb(100, 100, 100, .8);
}

#volume4{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    
    width: 25vw;
    border: #000 double 7.5rem;
    border-radius: 8rem;
    
    scroll-margin-top: 15vh;
    
    background-color: rgb(80, 80, 80, .8);
}

#volume5{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    
    width: 25vw;
    border: #000 double 7.5rem;
    border-radius: 8rem;
    
    scroll-margin-top: 15vh;
    
    background-color: rgb(60, 60, 60, .8);
}

#volume6{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    
    width: 25vw;
    border: #000 double 7.5rem;
    border-radius: 10rem;
    
    scroll-margin-top: 15vh;
    

    background-color: rgb(40, 40, 40, .8);
    --shadow-color: rgba(50, 50, 50, 1)
}

.v1bg{
    background-color: rgb(165, 165, 165);
}

.v2bg{
    background-color: rgb(145, 145, 145);
}

.v3bg{
    background-color: rgb(125, 125, 125);
}

.v4bg{
    background-color: rgb(105, 105, 105);
}

.v5bg{
    background-color: rgb(85, 85, 85);
}

.v6bg{
    background-color: rgb(65, 65, 65);
}

.incoming{
    height: 10vh;
    width: 90%;
    border: #000 solid 3rem;
    border-radius: 0.75vw;
    font-size: 17.5rem;
    margin: 2vh 0 2vh 0;

    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

#chapter0{
    height: 6vh;
    width: 80%;
    border: #000 solid 2rem;
    border-radius: 0.75vw;
    font-size: 15rem;
    color: #000;
    margin-top: 10rem;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

#chapter0:hover{
    transform: scale(1.04); 
}

.vl-ani{
    transition: all 0.4s ease-in-out;
}

.vl-ani:hover{
    transform: scale(1.03);
    box-shadow: 0 0 25rem rgba(70, 70, 70, 0.5);
}


.volume-title{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22.5vw;
    height: 12vh;
    margin-top: 1vh;
    border-bottom: #000 solid 2rem;

    font-size: 35rem;
}

.volume{
    width: 22.5vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pakiet{
    min-height: 25vh;
    width: 10vw;
}

.rozdzial{
    height: 6vh;
    width: 100%;
    border: #000 solid 2rem;
    border-radius: 0.75vw;
    font-size: 13rem;
    color: #000;
    margin: 2vh 0 2vh 0;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.rozdzial:hover{
    transform: scale(1.05); 
}




footer{
    overflow: hidden;

    background-color: #2e2e2e;
    min-height: 10vh;
    border-top: #111 0.15vw solid;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.socialmedia-box{
    min-width: 25vw;
    height: 7.5vh;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.socialmedia{
    width: auto;
    height: 7.5vh;

    background-color: #FFF;
    border-radius: 50%;
    cursor: pointer;

    transition: all .15s ease-in-out;
}

.socialmedia img{
    width: auto;
    height: 7.5vh;
    object-fit: contain;
}

.socialmedia-yt:hover{
    background-color: red;
    transform: scale(1.03);
    box-shadow: 0rem 0rem 20rem rgba(255, 0, 0, .35);
    margin-bottom: 0.5vh;
}

.socialmedia-dc:hover{
    background-color: #5865F2;
    transform: scale(1.03);
    box-shadow: 0rem 0rem 20rem rgba(88, 101, 242, .35);
    margin-bottom: 0.5vh;
}

.socialmedia-tt:hover{
    background-color: #DD00FF;
    transform: scale(1.03);
    box-shadow: 0rem 0rem 20rem rgba(221, 0, 255, .35);
    margin-bottom: 0.5vh;
}