* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    font-size: .1vw;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.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;
}

.p-txt{
    margin-bottom: 15rem;
    line-height: 1.5;
}

.p-quote{
    margin-bottom: 10rem;
    line-height: 1.6;
}





body {
    background-color: #F0F0F0;
}

.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: #E0E0E0;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s 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: 7.5vh 0 2.5vh 0;
   width: 100vw;

   display: flex;
   justify-content: center;
}

.Content{
    width: 65vw;
    min-height: 10vh;
    background-color: #272727;
    border-radius: 10rem;
    border: double 5rem #111;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    transition: transform 0.3s ease-in-out,
                box-shadow 0.3s ease-in-out;
}

.Content:hover{
    transform: scale(1.01);
    box-shadow: 0rem 0rem 15rem rgba(0, 0, 0, .25);
}

.Title{
    font-size: 20rem;
    margin: 3vh 0 2vh 0;
    border-bottom: #111 solid 2rem;

    padding: 0 3vw 2.5vh 3vw;

    text-align: center;
}

.ContentText{
    width: 90%;
    font-size: 10rem;
    margin: 7.5rem 0 10rem 0;
    color: #E0E0E0;

    line-height: 1.5; /* Klucz do równych "ścian" tekstu */
    text-align: justify; /* Wyrównanie do lewej i prawej */
    hyphens: auto; /* Dzielenie wyrazów dla lepszego wyglądu */
}


.quote-box{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

    margin-bottom: 5vh;

    align-items: center;
}

.image-ri{
    height: auto;
    width: auto;
    border-radius: 50%;
}

.image-ri img{
    width: auto;
    height: 70vh;
    border-radius: 15rem;

    object-fit: contain;

    transition: all 0.35s ease-in-out;
}

.quote{
    background-color: #191919;
    border-radius: 10rem;
    border: double 5rem rgba(219, 219, 219, 0.5);
    width: 25vw;
    min-height: 30vh;
    border-radius: 20rem;
    color: #E0E0E0;

    margin-top: 30rem;
    margin-left: -20rem;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    transition: all 0.35s ease-in-out;
}

.wisdom{
    width: 90%;
    color: #F0F0F0;
    font-size: 9.5rem;
    margin-top: 1.5vh;

    text-align: center;
    hyphens: auto;
}

.wise{
    text-align: center;
    width: 80%;
    color: #F0F0F0;
    font-size: 12rem;
    margin-bottom: 1.5vh;
}

.image-ri.active img, .quote.active {
    transform: scale(1.025);
    box-shadow: 0rem 0rem 12rem rgba(255, 255, 255, .08);
}

.quote.active{
    box-shadow: 10rem 10rem 12rem -3rem rgba(255, 255, 255, .08);
}





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;
}