* {
    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: #222;
}

.container {
    background-color: #222;
    min-height: 100vh;
    width: 100vw;
    
    display: flex;
    flex-direction: column;
}

header{
    background-color: #2e2e2e;
    min-height: 10vh;
    border-bottom: #111 solid 0.15vw;
    
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    opacity: 97.5%;
}

.sticky{
    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: #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-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{
   margin: 5vh 0 5vh 0;
   width: 100vw;

   display: flex;
   justify-content: space-evenly;
   align-items: center;
}



.Top{
    width: 100vw;
    height: 15vh;
    border-bottom: #111 solid 1.5rem;
    font-size: 40rem;
    background-color: rgb(46, 46, 46, .975);

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: all 1s ease-in-out;
}

.Top.is-stuck {
    height: 8vh;
    font-size: 25rem;
}

.link{
    width: 30vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.switch{
    height: 5.5vh;
    width: 10vw;
    border-radius: 4rem;
    border: solid rgb(224, 224, 224, .9) 1rem;
    color: rgb(224, 224, 224, .9);
    cursor: pointer;
    font-size: 13rem;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .35s ease-in-out;
}

.switch:hover{
    transform: scale(1.05);
    margin-bottom: .8vh;
    font-size: 13rem;
    background-color: rgb(224, 224, 224, .8);
    color: #000;
}

.number{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 75vw;
}

.numbers{
    margin: 0 1vw 0 1vw;
}





.Txt{
    min-height: 100vh;
    width: 52.5vw;
    background-color: rgb(34, 34, 34, .9);
    border: #000 double 5rem;
    border-radius: 8rem;
    color: rgb(214, 204, 204);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.Title{
    font-size: 17rem;
    width: 90%;
    border-bottom: #000 1.5rem solid;
    color: rgb(214, 204, 204);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Title > p{
    margin: 5vh 0 4vh 0;
}

.Tekst{
    margin: 5vh 3vw 5vh 3vw;

    font-family: "Rowdies", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 10.5rem;

    line-height: 2;
    text-align: justify;
    hyphens: auto;
    letter-spacing: .25rem;
}

.Tekst p {
    line-height: 1.5; 
    margin-bottom: 12rem; 
}

.Tekst p:last-child {
    margin-bottom: 0;
}











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;
}