* {
    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: #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: #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-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;
}

.Title{
    min-width: 0%;
    font-size: 40rem;

    text-align: center;
}

.Main-Title{
    min-width: 0%;
    font-size: 50rem;

    text-align: center;
}

#stylish{
    display: flex;
    justify-content: space-evenly;
}

.social-box{
    width: 25%;
    height: 70vh;
    border: #000 double 6rem;
    border-radius: 10rem;

    background-color: rgba(30, 30, 30, .4);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    position: relative;

    transition: all 0.5s ease-in-out;
}

.social-box:hover{
    box-shadow: 0rem 0rem 25rem rgba(55, 55, 55, .5);
    transform: scale(1.02);
    
}

.icon-social{
    width: 15vh;
    height: 15vh;
    background-color: #000;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-social img{
    width: 100%;
    height: 100%;
    object-fit: contain;

    border: #000 2rem solid;
    border-radius: 50%;
}

.name{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 95%;
    height: 8vh;
    opacity: 100%;
}

.name1{
    font-size: 10rem;
}

.name2{
    font-size: 17rem;
}

.describe{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;

    color: #E0E0E0;

    width: 92.5%;
    height: 30vh;

    z-index: 1;

    
    line-height: 1.25;
    font-size: 12rem;
}

.social-link{
    width: 75%;
    height: 8vh;

    border: #000 solid 3rem;
    border-radius: 10rem;
    font-size: 20rem;

    background-color: rgb(175, 175, 175, .6);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.35s ease-in-out;
}

.social-link:hover{
    transform: scale(1.05);
}

.social-box > img{
    width: auto;
    height: 25vh;
    object-fit: contain;

    opacity: 30%;

    position: absolute;
}

#mail-box{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;

    transition: all 0.5s ease-in-out;

    width: 65vw;
    height: 30vh;
}

#mail-box:hover{
    transform: scale(1.02);
}

#mail-box > img{
    margin-top: 0vh;
    width: auto;
    height: 32.5vh;
}

#mail-content{
    height: 20vh;
    width: 40vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: rgb(224, 224, 224, .65) solid 4rem;
    padding-left: 1vw;
    margin-left: -5vw;

    color: #E0E0E0;
}

#mail-name{
    width: 30vw;
    height: 5vh;

    font-size: 22rem;

    margin-bottom: 3vh;
}

#mail-txt{
    width: 30vw;
    height: 5vh;

    font-size: 25rem;
}

#mail-copy{
    background-color: rgb(175, 175, 175, .6);
    width: 11vw;
    height: 13vh;
    font-size: 20rem;

    cursor: pointer;

    border: #000 solid 3rem;
    border-radius: 10rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}














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;
}