/* RESET & PODSTAWOWE STYLE */
* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    box-sizing: border-box;

}


img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body {
    background-color: rgb(3, 3, 3);
    line-height: 1.5;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;

}

body,
html {
    width: 100%;
    max-width: 100%;

}

a {
    text-decoration: none;
}

.white{
    color: white;
}

/* Usunie domyślnego srolla */
/* Dla WebKit‑owych przeglądarek (Chrome, Safari, Opera) */
.tabs-container::-webkit-scrollbar {
    display: none;
}

/* Dla Firefoksa */
.tabs-container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ i Edge */
}

/* Przewijanie poziomo: */
.tabs-container {
    overflow-x: auto;
    overflow-y: hidden;
}


/* aror */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #cacaca;
    color: #1d1d1d;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px 2px rgba(100, 100, 100, 0.225);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}



/* HEADER & MENU */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 9999;
}

.infinity {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: rgb(20, 20, 20);
    z-index: 9999;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.burger {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
}

.burger span {
    width: 30px;
    height: 1px;
    background: white;
    border-radius: 1px;
    transition: transform 0.4s ease;
    transform-origin: center;
    position: absolute;
}

/* Stan spoczynku */
.burger span:nth-child(1) {
    transform: translateY(-3px) rotate(0);
}

.burger span:nth-child(2) {
    transform: translateY(6px) rotate(0);
    width: 17px;
    right: 0px;
    transition: 0.4s;
}

/* Po kliknięciu — idealny krzyż */
.burger.active span:nth-child(1) {
    transform: translateY(2px) translateX(6px) rotate(-45deg);
}

.burger.active span:nth-child(2) {
    transform: translateY(2px) translateX(6px) rotate(45deg);
    width: 30px;
    transition: 0.5s;
}

nav.menu {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
    z-index: 9990;
}

nav.menu.active {
    top: 0;
}

nav.menu a {
    color: white;
    font-size: 2rem;
    margin: 20px 0;
    transition: 0.3s;
}

nav.menu a:hover {
    color: #ccc;
}

/* Kontener headera (flexbox) */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
}

/* DESKTOP: od 831px wzwyż */
@media (min-width: 831px) {
    .burger {
        display: none;
    }

    .infinity {
        display: none;
    }

    .header-content {
        display: flex;
        justify-content: end;
        gap: 40px;
        height: 50px;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.881);
    }

    .logo {
        top: 20%;
        transform: none;
        height: 30px;
        width: auto;
        display: flex;
        align-items: start;
        position: relative;
    }

    .logo img {
        height: 100%;
        width: auto;
    }

    nav.menu {
        display: flex;
        gap: 30px;
        flex-direction: row;
        background: none;
        height: auto;
        position: static;
        justify-content: end;
        margin-right: 3rem;
    }

    nav.menu a {
        font-size: 1rem;
        color: rgb(214, 214, 214);
        font-weight: 200;
        text-decoration: none;
        margin: 0;
    }

    nav.menu a:hover {
        color: white;
    }

    .burger span {
        all: unset;
    }
}

/* Start */

.start {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    background: linear-gradient(to bottom, rgb(0, 0, 51) 0%, #000000 20%, #000 100%);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    animation-name: start;
    animation-duration: 0.5s;
    animation-delay: 1s;
    animation-fill-mode: both;
    text-shadow: 0px 5px 10px blue;
}

.start h3 {
    position: relative;
    animation-name: startt;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes start {
    from {
        opacity: 1;
        z-index: 9999999;
    }

    to {
        opacity: 0;
        z-index: -1;
    }
}

@keyframes startt {
    from {
        top: 0;
        opacity: 1;
    }

    to {
        top: 40%;
        opacity: 0;
    }
}

/* FIRST SECTION */
.firstSection {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 50px;
    /* uwzględniamy header */
}

.firstSection img {
    opacity: 75%;
    border-radius: 0 0 30px 30px;
    width: 96%;
    margin: auto;
    animation-name: exampleOne;
    animation-duration: 1.5s;
    animation-delay: 1.8s;
    animation-fill-mode: both;
}

@keyframes exampleOne {
    from {
        opacity: 0;
    }

    to {
        opacity: 75%;
    }
}

.firstSection .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    height: 50%;
}

.firstSection h2 {
    font-size: 3rem;
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
    text-shadow: 0 8px 3px rgba(143, 143, 143, 0.689);
    margin-bottom: 10px;
    animation-name: exampleTwo;
    animation-duration: 3s;
    animation-delay: 3.7s;
    animation-fill-mode: both;
}

@keyframes exampleTwo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.firstSection p {
    font-size: 13px;
    color: #f0f0f0;
    font-weight: 300;
    width: 300px;
    margin: 1rem auto;
    animation-name: exampleEnd;
    animation-duration: 2s;
    animation-delay: 2.7s;
    animation-fill-mode: both;
}



.kontakt-button {

    background-color: #1c1c1c;

    border: none;
    border-radius: 30px;
    margin: auto;
    cursor: pointer;
    max-width: 150px;
    width: 100%;
    animation-name: exampleEnd;
    animation-duration: 2s;
    animation-delay: 2.7s;
    animation-fill-mode: both;
    transition: 0.5s;
}

.kontakt-button:hover {
    transition: 0.5s;
}

.kontakt-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.text-circle {
    width: 60px;
    background-color: #1c1c1c;
    padding: 10px 0 10px 15px;
    border-radius: 25px 0 0 25px;
    font-size: 13px;
    font-weight: lighter;
    margin-left: auto;
    margin-right: -10px;
    transition: 0.3s;
}

.plus-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(0, 102, 255);
    border-radius: 50%;
    margin-right: 10px;
    margin-left: auto;
    transition: 0.3s;

}

.kontakt-button:hover .text-circle {
    color: rgb(159, 196, 250);
    transition: 0.3s;
}

.kontakt-button:hover .plus-circle {
    background-color: rgb(0, 102, 255);
    transition: 0.3s;
}


@keyframes exampleEnd {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* WELCOME SECTION */
.welcome {
    padding: 2rem 1rem;
    text-align: center;
}

.welcome h2 {
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(236, 236, 236);
    font-weight: bold;
    margin: auto;
}

.welcome p {
    color: rgb(117, 117, 117);
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.welcome .white {
    color: white;
}

/* IMAGE SECTION */
.image-container {
    padding: 0 0 55px  0;
}

.phoneText{
 color: white;
 text-align: center;
 margin-bottom: 1rem;
 font-size: 2rem;
}


.image-container .inner {
    width: 90vw;
    margin-left: auto;
    border-radius: 25px 0 0 25px;
    background-color: rgb(0, 0, 0);
}

.image-container img {

    border-radius: 25px 0 0 25px;
    box-shadow: 0px 0px 20px 10px rgb(57, 57, 57)
}




/* SERVICES SECTION */

.services{

    padding: 1rem 0.5rem;

}

.box-services{
    text-align: center;
    color: #ccc;
    background-color: #111111ce;
    border-radius: 25px;
  
max-width: 350px;
margin: auto;
margin-bottom: 2rem;

}

.box-services img{
    height: 250px;
}

.box-services h3 {
    padding: 0.5rem 0;
}

.line-services{
    margin: 0 2rem;
}

.box-services p {
    padding: 0.5rem 0;
    font-weight: 200;
    color: rgb(156, 156, 156);
}

.container-services-text{
    padding: 1rem;
}

.highlight{
    color: white;
}

/* .services {
    padding-bottom: 30px;
}

.tabs-wrapper {
    position: relative;
    overflow: hidden;
}

.tabs-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.tab {
    flex: 0 0 auto;
    margin: 0 10px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    color: rgb(116, 116, 116);
    transition: color 0.3s;
}

.tab.active {
    color: white;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    background-color: #000;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 0;
    display: none;
    border-right: 1px solid white;
}

.arrow.right {
    right: 0;
    border-left: 1px solid white;
}

.content {
    margin: 30px 15px;
    max-width: 500px;
    background-color: rgb(31, 31, 31);
    padding: 15px 0;
    border-radius: 25px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 1;
    transform: translateX(0);
}

.tabText {
    width: 290px;
    margin: auto;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
}

.content.slide-out {
    opacity: 0;
    transform: translateX(-100px);
}

.content.slide-in {
    opacity: 1;
    transform: translateX(0);
}

#tabImage {
    display: block;
    margin: auto;
    width: 95%;

    height: 35vh;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 3px solid rgb(37, 37, 37);
    box-shadow: 0px 5px 20px rgba(229, 229, 229, 0.466);
}

.tabs-line-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.5px;
    background-color: #333;
    overflow: hidden;
    z-index: 11;
}

.tabs-line {
    height: 100%;
    width: 100%;
    background-color: #fff;
    transition: transform 0.4s ease, width 0.4s ease;
    position: relative;
    will-change: transform, width;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    color: whitesmoke;
    font-family: "Bebas Neue", sans-serif;
}

.services p {
    text-align: center;
    color: rgb(161, 161, 161);
}

.highlight {
    color: white;
} */

/* FOOTER */
footer {
    padding-top: 30px;
    background-color: #161616;
}

footer h2 {
    padding: 0 1.5rem;
    color: #F0F0F0;
    font-size: 3rem;
    font-weight: bold;
}

footer h3 {
    color: #C6C6C6;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

footer p {
    padding-left: 1.5rem;
    color: #ADADAD;
    font-size: 0.7rem;
    width: 300px;
    font-weight: 300;
}

.text-footer {
    font-size: 0.9rem;
    width: 280px;
}

footer .contakt {
    margin-bottom: 10px;
    font-size: 1rem;
}

.box_icon {
    margin: 1rem 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 45px;
    color: white !important;
}

.icon:nth-last-child(1) {
    width: 41px;
}

footer .line,
footer .lineT {
    width: 90%;
    height: 1px;
    background-color: white;
    margin: 2rem auto;
}

footer .lineT {
    margin: 2rem auto 1rem auto;
}

.endFooter {
    display: flex;
    text-align: left;
    padding: 0.5rem 0 1rem 0;
}

.endFooter p:nth-last-child(1) {
    flex: 10%;
    text-align: end;
    margin-right: 5%;
}

.endFooter a {
    color: rgb(129, 129, 255);
}
.contakt{
    display: flex;
    align-items: center;
}
.contakt img{
width: 19px;
height: 19px;
margin-right: 10px;

}

/* MEDIA QUERIES RESPONSYWNOŚĆ */
/* Telefony: od 280px do 479px */
@media (min-width: 280px)  {
    body {
        font-size: 14px;
    }

    .firstSection p,
    .welcome p {
        width: 90%;
    }

    .tabText {
        width: 95%;
    }
}

/* Małe tablety / średnie urządzenia: 480px - 767px */
@media (min-width: 480px)  {
    .firstSection {
        height: 600px;
    }

    .firstSection h2 {
        font-size: 4rem;
    }

    .firstSection p {
        width: 80%;
        font-size: 1.2rem;
    }

    .welcome h2 {
        font-size: 2.2rem;
    }

    .welcome p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .content {
        max-width: 600px;
        padding: 20px;
        margin: 30px auto;
    }

    .tabText {
        width: 90%;
    }


}

@media (max-width: 991px) {
    body {
        scrollbar-width: none;
        -ms-overflow-style: none;
        overflow-y: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }
}

/* Duże tablety: 768px - 830px */
@media (min-width: 768px)  {
    .firstSection {
        height: 700px;
    }

    .firstSection h2 {
        font-size: 4.5rem;
    }

    .firstSection p {
        width: 70%;
        font-size: 1.3rem;
    }

    .welcome h2 {
        font-size: 2.5rem;
    }

    .welcome p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .content {
        max-width: 700px;
        margin: 30px auto;
    }

    .tabText {
        width: 80%;
    }

    footer h2 {
        font-size: 4.8rem;
        padding: 0 3rem;
    }

    footer h3 {
        font-size: 1.8rem;
        padding-left: 3rem;

    }

    footer .text-footer {
        font-size: 1.1rem;
        width: 400px;
        padding-left: 3rem;

    }

    .box_icon {
        padding-left: 1rem;
    }

    .icon {

        width: 55px;
        color: white !important;
    }

    .icon:nth-last-child(1) {
        width: 50px;
    }

    .contakt {
        padding-left: 3rem;
    }

    .endFooter {
        padding-left: 1.5rem;
    }

    .scroll-to-top {
        font-size: 30px;
        width: 50px;
        height: 50px;
    }

    .tabs-container {
        justify-content: center;

    }

    .services{
        display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 1rem;


    }
.box-services{
    max-width: 450px;
    background-color: #00000000;
}
    .box-services img{
        height: 150px;
  border-radius: 10px;
    }

}

/* Duże tablety/ male laptopy: 831px - 1023px */
@media (min-width: 831px)  {
    .firstSection {
        height: 800px;
    }

    .firstSection h2 {
        font-size: 5rem;
    }

    .firstSection p {
        width: 60%;
        font-size: 1.5rem;
    }

    .welcome h2 {
        font-size: 3rem;
    }

    .welcome p {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .content {
        max-width: 800px;
        margin: 40px auto;
    }

    .tabText {
        width: 70%;
    }

    .tabs-container {
        justify-content: center;

    }

    .box-services img{
        height: 250px;
    }

    .box-services p{
        padding:2rem 0rem;
    }


}

/* Średnie i duże laptopy: 1024px - 1439px */
@media (min-width: 1024px)  {
    .firstSection {
        height: 800px;
    }

    .firstSection h2 {
        font-size: 5rem;
    }

    .firstSection p {
        width: 60%;
        font-size: 1.5rem;
    }

    .welcome h2 {
        font-size: 3rem;
    }

    .welcome p {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .content {
        max-width: 800px;
        margin: 40px auto;
        background-color: #04040400;
    }

    #tabImage {
        box-shadow: 0px 0px 2px 0px rgba(229, 229, 229, 0.466);
    }

    .tabText {
        width: 70%;
    }

    .image-container .inner {
 
        margin: auto;
        border-radius: 20px;
    }

    .image-container img {
        border-radius: 20px;
        box-shadow: 0px 0px 30px 5px rgba(255, 255, 255, 0.341);
        border: 3px solid rgb(62, 62, 62);
    }

    .tabs-container {
        justify-content: center;

    }

    .containerFooter {
        display: grid;
        grid-template-columns: 45% 10% 45%;
    }

    .line {
        min-height: 300px !important;
        width: 1px !important;
    }

    .flexFooter {
        margin: auto;
    }

    .endFooter {
        width: 95%;
    }

}

/* Ogromne monitory: 1440px i więcej */
@media (min-width: 1440px) {

    .firstSection img {
        width: 95%;
        box-shadow: 0px 10px 20px 1px rgba(40, 34, 78, 0.783);

    }
 
    .firstSection {
        height: 900px;
    }

    .firstSection h2 {
        font-size: 6rem;
    }

    .firstSection p {
        width: 50%;
        font-size: 1.8rem;
    }

    .welcome h2 {
        font-size: 3.5rem;
    }

    .welcome p {
        font-size: 1.3rem;
        padding: 0 40px;
    }

    .content {
        max-width: 1000px;
        height: 550px;
        margin: 50px auto;
        background-color: #04040400;
        border-radius: 0;
    }

    #tabImage {
        border: 2px solid rgb(47 60 93 / 67%);
        box-shadow: 0px 0px 20px 2px rgba(99, 99, 255, 0.331);
        height: 450px;
    }
 
    .tabText {
        width: 60%;
    }

    .image-container {
        height: 1600px;

        position: relative;
    }


    .hidenText {
        font-size: 4rem;
        width: 100%;
        text-align: center;
        color: rgba(255, 255, 255, 0.899);
        margin: 0;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        text-transform: uppercase;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        /* startujemy od całkowitej przeźroczystości */
        opacity: 0;
    }

    .phoneText{
        display: none;
    }

    .image-container .inner {
        position: sticky;
        top: 10%;
        width: 100%;
        height: 1020px;
        margin: auto;
        border-radius: 20px;

    }

    .image-container img {
        position: absolute;

        border-radius: 20px;
        box-shadow: 0px 0px 30px 4px rgba(231, 231, 231, 0);
        border: 2px solid rgba(156, 156, 156, 0);
        transition: 1s;

    }


    .tabs-container {
        justify-content: center;

    }



    

    .line {
        min-height: 300px !important;
        width: 1px !important;
    }

    .flexFooter {
        margin: auto;
    }

    .endFooter {
        width: 93%;
    }

}




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


body * {
    background-color: rgba(255, 0, 0, 0.1); /* delikatne tło - do debugowania 
}

@media (min-width: 1px) {
    body * {
        max-width: 100vw;
    }
} */