@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap; 
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-solid-900.woff2') format('woff2');
}

body {
    font-family: "Roboto Flex", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#nazwa_firmy{
    color:white;
    font-size: 27px;
    margin: 1px;
}

header {
    background-color: #313234;
    height: 75px;
    width: 100%;
    margin: 0;
}

.naglowek {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

header > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
}

header > nav ul.menu {
    display: flex;
    padding: 0;
    list-style-type: none;
    margin: 0;
    gap: 10px;
}

header > nav ul.menu > li {
    margin-left: 0px;
}

header > nav ul.menu > li > a {
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
}

header > nav ul.menu > li > a:hover {
    color: #0099b3;
}

.hamburger {
    display: none; 
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    gap: 8px;
}

.hamburger-text {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

/*animacja w nagłówku*/
.animacja-container {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 1px;
}

.icon {
    font-size: 24px;
    color: white;
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}

.icon.active {
    opacity: 1;
}

/*sekcja jezykowa*/
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

#language-select {
    background-color: blue;
    color: #fff;
    border: none;
    padding: 5px 25px 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

#language-select:hover {
    background-color: #0099b3;
}

.menu-group {
    display: flex;
    align-items: center;
    gap: 10px; 
}

@media (max-width: 992px) {
    .hamburger {
        display: flex; /* Pokazujemy hamburger na małych ekranach */
    }

    header > nav ul.menu {
        display: none !important; /* Ukrywamy menu na małych ekranach */
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: #313234;
        padding: 10px 0;
        text-align: center;
        z-index: 1000;
    }

    header > nav ul.menu.active {
        display: flex !important; /* Pokazujemy menu po kliknięciu */
    }

    header > nav ul.menu > li {
        margin: 10px 0;
        width: 100%;
    }

    header > nav ul.menu > li > a {
        font-size: 16px;
        display: block;
        padding: 10px;
    }

    header > nav #nazwa_logotyp {
        font-size: 150%;
        margin-left: 10px;
    }
    .icon {
        font-size: 20px;
    }
    #language-select {
        font-size: 14px;
        padding: 3px 25px 3px 8px;
    }
}

.language-selector {
    display: none;
}

/*hero (obraz powitalny)*/
.hero {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slogan {
    background-color: #005566;
    color: #fff;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    padding: 20px;
}

.slogan h2 {
    font-weight: lighter;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .hero {
        height: 250px;
    }

    .slogan {
        max-width: 100%;
        padding: 15px;
        right: 0;
        left: 0;
        text-align: center;
    }

    .slogan h2 {
        font-size: 24px;
    }

    .slogan > p {
        font-size: 18px;
    }
}

/*Informacje o usługach*/

.informacje h2 {
    text-align: center;
    font-size: 24px;
    color: black;
    margin-bottom: 20px;
}

section > .container {
    margin: 50px auto;
    text-align: center;
}

.icon-container {
    text-align: center;
    margin: 0 auto;
}

.icon-square {
    background-color: black;
    border-radius: 15%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.icon-square i {
    color: white;
    font-size: 40px;
}


.middle-icon{
    background-color: #005566;
}
.blue-title{
    color: #005566;
}

.icon-text {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.col-2 {
    flex: 1;
    min-width: 250px;
    max-width: 33.33%;
    box-sizing: border-box;
    text-align: center;
}

/* Zmiana dla środkowej kolumny */
.col-2:nth-child(2) {
    align-self: center; 
}

/*Lista usług*/
#uslugi{
    text-align: center;
}

#lista_uslug{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LICZBY */
.numbers-section {
    margin-top: 50px;
    text-align: center;
}

.number-container {
    text-align: center;
    margin: 20px;
}

.number {
    font-size: 25px;
    font-weight: bold;
    color: black;
}

.label {
    font-size: 30px;
    color: #005566;;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .numbers-section {
        margin-top: 30px;
    }

    .number-container {
        margin: 10px;
    }

    .number {
        font-size: 30px;
    }

    .label {
        font-size: 14px;
    }
}

/*skladanie ofert (tylko dla wersji polskiej,ponieważ oferteo działa tylko na terenie polski)*/

#zlecenia {
    margin-top: 50px;
    text-align: center;
}

.zlecenia-container{
    text-align: center;
    margin: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: black;
}

#zlecenia h2 {
    font-size: 24px;
    color: blue;
    margin-bottom: 20px;
}

#zlecenia a img {
    max-width: 200px;
    max-height: 100px; 
    height: auto;
    transition: opacity 0.3s ease;
    margin: 5px;
}

/* Styl animacji po najechaniu*/
#zlecenia a:hover img {
    opacity: 0.6;
    animation: pulse 0.8s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
    100% {
        transform: scale(1);
    }
}

#zlecenia i {
    color: black;
    font-size: 40px;
}

@media (max-width: 992px) {
    #zlecenia {
        padding: 20px 0;
    }

    #zlecenia h2 {
        font-size: 20px;
    }

    #zlecenia a img {
        max-width: 150px; 
    }
}


/*Oferta pracy*/
#praca {
    margin-top: 50px;
    text-align: center;
}

.praca-container{
    text-align: center;
    margin: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: black;
}

#praca h2 {
    font-size: 24px;
    color: blue;
    margin-bottom: 20px;
}

#praca p {
    font-size: 20px;
    color: black;
    margin-bottom: 20px;
}

#praca a img {
    max-width: 200px;
    max-height: 100px; 
    height: auto;
    transition: opacity 0.3s ease;
    margin: 5px;
}

/* Styl animacji po najechaniu*/
#praca a:hover img {
    opacity: 0.6;
    animation: pulse 0.8s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
    100% {
        transform: scale(1);
    }
}

#praca i {
    color: black;
    font-size: 40px;
}

@media (max-width: 992px) {
    #praca {
        padding: 20px 0;
    }

    #praca h2 {
        font-size: 20px;
    }

    #praca a img {
        max-width: 150px; 
    }
}


/*Stopka*/
/* Ogólny styl stopki */
footer {
    background-color: #333;
    color: #fff;
    padding: 0;
    font-size: 14px;
    margin: 0;
}

/* Kontener dla kolumn */
.footer-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Kolumny */
.footer-column {
    flex: 1;
    padding: 0 15px;
    min-width: 250px; 
    text-align: left;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Nagłówki kolumn */
.footer-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-title h3 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-title .title-line {
    flex: 1;
    height: 2px;
    background-color: #555;
    margin-left: 10px;
}

/* Treść kolumn */
.footer-column p {
    margin: 0 0 10px;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Układ z dwiema kolumnami */
.rowfoot {
    display: grid;
    grid-template-columns: 100px auto; /* Dwie kolumny: 100px i reszta miejsca */
    gap: 10px;
    align-items: flex-start;
}

.o_nas{
    text-align: justify;
}

.rowfoot p {
    margin: 0;
}

.rowfoot p:nth-child(odd){
    font-weight: bold;
}

/* Dolna sekcja */
.footer-bottom {
    margin: 0;
    box-sizing: border-box;
    padding: 10px 0;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #555;
    font-size: 13px;
    color: #fff;
    text-align: center; 
    background-color: #222;
}

/*mapa*/
/* Styl dla mapy */
.map-container {
    margin-top: 20px;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

#map {
    width: 80%; 
    height: 350px;
    margin-left: auto;
    margin-right: auto; 
}

.map-container > small {
    margin-top: 10px; 
    text-align: center; 
}

.map-container > small > a {
    color: white;
    text-decoration: none;
    display: inline-block; 
    margin-bottom: 10px;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 992px) {
    #map {
        height: 200px;
        width: 70%; 
    }
}

/* RESPONSYWNOŚĆ - calej dolnej sekcji */
/* Zmniejszenie czcionki w stopce */
@media (max-width: 992px) {
    footer {
        font-size: 12px;
    }

    .footer-container {
        padding: 0 10px; 
    }

    .footer-column {
        min-width: 100%; 
        margin-top: 20px;
        text-align: center; 
    }
    .rowfoot {
        grid-template-columns: 1fr; /* Jedna kolumna dla kontaktu */
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}