/* =============================================================== RESET =============================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; }

body{
    font-family:'Archivo',sans-serif;
    background:#fff;
    color:#222;
    animation:pageLoad 1s ease;
}


a{
    color: #f5c400;
    text-decoration: none;
}


@keyframes pageLoad{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

section {
    padding:60px 10%;
}

.title {
    text-align:center;
    margin-bottom:40px;
}

.title h2 {
    font-size:40px;
    color:#111;
}

.title span {
    color:#f5c400;
}

@media(max-width:700px){

header{
flex-direction:column;
}

nav{
margin-top:20px;
}

.hero h1{
font-size:35px;
}
}

@keyframes glowBar{
    0%,100%{
       box-shadow:0 0 10px rgba(244,196,0,.3);
    }
    50%{
        box-shadow:0 0 30px rgba(244,196,0,.8);
    }
}



/* =============================================================== HEADER =============================================================== */

header{
    width:100%;
    background:#000;
    padding:20px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    overflow:hidden;
}

/* animowana żółta linia */

header::after{
    content:"";
    position:absolute;
    left:-100%;
    bottom:0;
    width:100%;
    height:6px;
    background:#f5c400;
    animation:headerLine 4s infinite;
}

.top-header {

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 8%;

}

.header{

    position:relative;

    overflow:hidden;

}

@keyframes headerLine{
    0%{
        left:-100%;
    }

    50%{
        left:100%;
    }

    100%{
        left:100%;
    }
}

/* ===================== MENU ===================== */

nav{
    display:flex;
    gap:45px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    position:relative;

}

nav a{
    
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    position:relative;
    transition:.3s ease;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#f5c400;
    transition:.3s;
}

nav a:hover{
    color:#f5c400;
    transform:translateY(-3px);
}

nav a:hover::after{
    width:100%;
}


/* =============================================================== LOGO =============================================================== */

.logo {

    color:white;

    font-size:42px;

    font-weight:900;

    letter-spacing:2px;

}

/* =============================================================== KONTAKT =============================================================== */

.contact-bar{
    color:#fff;
    font-weight:bold;
    line-height:1.6;
    float: left;
    text-align:left;
}

/* =============================================================== RESPONSIVE =============================================================== */


@media(max-width:800px){

.top-header{
flex-direction:column;
height:auto;
padding:25px;
}

nav{
margin-top:20px;
gap:20px;
}

.contact-bar{
flex-direction:column;
height:auto;
padding:15px;
gap:10px;

}
}

/* =============================================================== GLOWNA LISBUD ============================================================== */

.hero {
    height: 650;
    background-image: url(deszczowe.jpg);
    background-size: cover;
    background-position: center;
    padding-left:10%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    background-color: #292929;
    text-align:center;
}

.hero h1{
    font-size:75px;
    color:white;
    animation:slideLeft 1s;

}

.hero span{
    color:#f4c400;

}

.hero p{
    color:white;
    font-size:25px;
    max-width:700px;

}

@keyframes slideLeft{

from{
    opacity:0;
    transform:translateX(-100px);
}

to{
    opacity:1;
    transform:translateX(0);

}

}

/* =============================================================== GLOWNA LISBUD SKONTAKTUJ SIE =============================================================== */

.btn {
    background:#f5c400;
    color:#111;
    padding:15px 35px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
}

.btn:hover {
    background:#111;
    color:white;
}

/* =============================================================== KARTY LISBUD GŁÓWNA =============================================================== */

.cards {

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;

}

/* =============================================================== LOKALIZACJA =============================================================== */
.lokalizacja{
    max-width:1100px;
    margin:70px auto;
    padding:20px;
}

.lokalizacja-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#111;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
    transition: .4s;
}

.lokalizacja-box:hover{
    transform:
    translateY(-15px)
    scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.lokalizacja-text{
    padding:50px;
    color:white;
}

.lokalizacja-text h2{
    font-size:32px;
    color:#f4c400;
    margin-bottom:20px;
}

.lokalizacja-text p{
    color:#ccc;
    line-height:1.7;
}

.lokalizacja-grafika{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:
    linear-gradient(
    135deg,
    #f4c400,
    #ffe98a
    );
    text-align:center;
}

.lokalizacja-grafika h3{
    font-size:35px;
}

@media(max-width:800px){
    .lokalizacja-box{

        grid-template-columns:1fr;

    }
    .lokalizacja-text{

        padding:30px;

    }
}

.adres{
    display:flex;
    gap:15px;
    margin:30px 0;
    font-size:18px;
}

.lok-btn{
    display:inline-block;
    padding:14px 25px;
    background:#f4c400;
    color:#111;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.lok-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(244,196,0,.4);
}

.pin{
    font-size:80px;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15);
    }
}

/* =============================================================== GALERIA =============================================================== */
.galeria{
    max-width:1000px;
    margin:60px auto;
    text-align:center;
}

.slider{
    width:100%;
    height:auto;
    aspect-ratio:16/9;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#111;
}

.slide{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:contain;
    opacity:0;
    transition:.8s;
}

.slide.active{
    opacity:1;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#f4c400;
    border:0;
    padding:15px;
    cursor:pointer;
    border-radius:50%;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.dot{
    width:12px;
    height:12px;
    background:#aaa;
    display:inline-block;
    border-radius:50%;
    margin:10px 5px;
    cursor:pointer;
}

.dot.active{
    background:#f4c400;
}

.gallery img{
    width:100%;
    transition:.5s;
}

.gallery img:hover{
    transform:scale(1.1);
    filter:brightness(.8);
}


/* ============================================================== ZESPOL ============================================================= */

.zespol{
    max-width:1100px;
    margin:80px auto;
    padding:20px;

}

.zespol-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    background:white;
    border-radius:25px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition: .4s;
}

.zespol-content:hover{
    transform: 
    translateY(-15px)
    scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.zespol-text h2{
    font-size:36px;
    margin-bottom:25px;
    position:relative;
}

.zespol-text h2::after{
    content:"";
    display:block;
    width:70px;
    height:5px;
    background:#f4c400;
    margin-top:15px;
}

.zespol-text p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.zespol-text strong{
    color:#111;
}

.highlight{
    font-size:20px;
    font-weight:bold;
    color:#111 !important;
}

.zespol-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:#f4c400;
    color:#111;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    transition:.3s;
}

.zespol-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(244,196,0,.4);
}

.image-box{
    overflow:hidden;
    border-radius:20px;
}

.image-box img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

@media(max-width:800px){
    .zespol-content{
        grid-template-columns:1fr;
        padding:30px;
    }
    .zespol-text h2{
        font-size:28px;
    }
}

/* ============================================================== STRONA GLOWNA DOL NUMERY ============================================================= */

.numbers{
    background:#111;
    display:flex;
    justify-content:center;
    gap:100px;
    padding:60px;
}

.numbers h2{
    font-size:60px;
    color:#f4c400;
}


.numbers p{
    color:white;
    font-size:20px;
}

.numbers div{
    text-align:center;
    transition:.3s;
}

.numbers div:hover{
    transform:scale(1.15);
}

/* ============================================================== FOOTER ============================================================= */

footer{
    background:#050505;
    color:white;
    padding:50px 10%;
    display:flex;
    justify-content:space-between;
}

footer h3{
    color:#f4c400;
}

footer a{
    color:white;
    text-decoration:none;
    display:block;
    margin:10px;
}

footer a:hover{
    color:#f4c400;
    padding-left:10px;
    transition:.3s;
}

.footer{
    background:#111;
    color:white;
    padding:60px 20px 20px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:6px;
    background:#f4c400;
    animation:moveLine 4s infinite;
}

@keyframes moveLine{
    0%{
        left:-100%;
    }
    50%{
        left:100%;
    }
    100%{
        left:100%;
    }
}

.footer-content{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    animation:showFooter 1s ease;
}

@keyframes showFooter{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.footer h2{
    color:#f4c400;
    font-size:36px;
    margin-bottom:10px;
}

.footer h3{
    color:#f4c400;
    margin-bottom:20px;
}

.footer p{
    color:#ccc;
    line-height:1.7;
}

.footer-contact p,
.footer-hours p{
    transition:.3s;
}

.footer-contact p:hover,
.footer-hours p:hover{
    color:#f4c400;
    transform:translateX(8px);
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #333;
}

.footer-bottom p{
    font-size:14px;
}

/* telefon */

@media(max-width:700px){
    .footer-content{
        text-align:center;
    }
}


/* ============================================================================ O NAS =========================================================================== */

.o-nas{
    background-color: transparent;
    overflow: hidden;
    max-width:1100px;
    margin:80px auto;
    padding:50px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    transition:.4s;
    border-radius: 2%;
    border-left: 6px solid #f4c400;
}


.o-nas:hover{
    background-color: transparent;
    transform:
    translateY(-15px)
    scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.o-nas h2{
    text-align:center;
    font-size:38px;
    margin-bottom:30px;
    color:#111;
}

.o-nas h2::after{
    content:"";
    display:block;
    width:80px;
    height:5px;
    background:#f4c400;
    margin:15px auto 0;
    border-radius:5px;
}

.o-nas p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

.o-nas strong{
    color:#111;
}

.o-nas-highlight{
    margin-top:30px;
    padding:20px;
    background:#f8f8f8;
    border-radius:15px;
    border-left:4px solid #f4c400;
    font-size:20px !important;
    font-weight:bold;
    color:#222 !important;
    transition:.3s;
}

.o-nas-highlight:hover{
    transform:translateX(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

@media(max-width:700px){
    .o-nas-content{
        padding:30px 20px;
    }
    .o-nas h2{
        font-size:30px;
    }
    .o-nas p{
        font-size:16px;
    }
}


/* ==================================================================== O-NAS TEAM ==================================================================== */

.team {
    padding:70px 10%;
}

.center {
    text-align:center;
    margin:30px;
}

.person-card {
    width:390px;
    margin:30px auto;
    background:#292929;
    color:white;
    text-align:center;
    padding:40px;
    border-bottom:12px solid #f4c400;
    box-shadow:0 10px 30px #ccc;
}

.avatar {
    font-size:60px;
}

.person-card h3 {
    font-size:25px;
    margin:20px;
}

.person-card a {
    display:block;
    background:#f4c400;
    color:black;
    padding:12px;
    margin:15px;
    text-decoration:none;
    font-weight:bold;
}

.person-btn{
    margin:15px; 
    padding:12px; 
    background:#f8f8f8; 
    border-radius:15px; 
    border-left:4px solid #f4c400; 
    font-weight:bold; 
    font-size: 13px;
    color:#222 !important; 
}

.phone {
    background:#f4c400;
    color:black;
    border-radius: 10px;
    display:inline-block;
    padding:12px 35px;
    font-weight:bold;
}

.description {
    text-align:center;
    max-width:900px;
    margin:auto;
    line-height:1.6;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 35px;
}

.person-card {
    width: 280px;
    background: rgb(21, 21, 21);
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.person-card:hover {
    transform: translateY(-12px) scale(1.03);

    box-shadow: 0 15px 35px rgba(0,0,0,0.2);

    background: #000000;
}

.avatar {
    font-size: 55px;
    margin-bottom: 15px;

    transition: transform 0.3s ease;
}

.person-card:hover .avatar {
    transform: scale(1.15) rotate(5deg);
}

.person-card h3 {
    margin: 15px 0;
    transition: color 0.3s ease;
}

.person-card:hover h3 {
    color: #d69e2e;
}

.person-card > a:not(.person-btn) {
    color: #333;
    text-decoration: none;
    transition: color .3s ease;
    font-size: 13px;
}

.person-card:hover > a:not(.person-btn) {
    color: #000;
}

.phone {
    margin-top: 12px;
    font-weight: bold;
}

@media(max-width: 900px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .team-container {
        grid-template-columns: 1fr;
    }
    .person-card {
        width: 90%;
    }
}

.role {
    font-size: 14px;
    font-weight: 600;
    color: #d69e2e;
    margin: -5px 0 15px;
}

.intro{
    text-align:center;
    color:#555;
    line-height:1.7;
    max-width:850px;
    margin:0 auto 45px;
}



/* ==================================================================== OFERTA USŁUGI ==================================================================== */

.oferta{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
}

.oferta h2{
    text-align:center;
    font-size:32px;
    margin-bottom:25px;
}

.oferta-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.oferta-card{
    background:white;
    padding:30px;
    border-radius:15px;
    border-top:5px solid #f4c400;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.oferta-card:hover{
    transform:translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.oferta-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.oferta-card ul{
    list-style:none;
    padding:0;
}

.oferta-card li{
    padding:10px 0;
    padding-left:25px;
    position:relative;
    color:#555;
}

.oferta-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#f4c400;
    font-weight:bold;
}

/* ==================================================================== OFERTA WYKONAWSTWO ==================================================================== */

.wykonawstwo{
    max-width:1000px;
    margin:80px auto;
    padding:20px;
    background:white;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border-left:6px solid #f4c400;
    text-align:center;
    transition:.4s;
}

.wykonawstwo:hover{
    transform:
    translateY(-15px)
    scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.wykonawstwo h2{
    font-size:38px;
    margin-bottom:25px;
}

.wykonawstwo h2::after{
    content:"";
    display:block;
    width:80px;
    height:5px;
    background:#f4c400;
    margin:15px auto;
}

.wykonawstwo p{
    color:#555;
    line-height:1.8;
    font-size:17px;
    margin-bottom:20px;
}

.wykonawstwo-highlight{
    font-size:20px !important;
    font-weight:bold;
    color:#222 !important;
}

/* ==================================================================== OFERTA ZDJĘCIA ==================================================================== */

.card{
    background:white;
    overflow:hidden;
    padding:35px;
    border-radius:15px;
    border-top:5px solid #f4c400;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    transition:.4s;

}

.card:hover{
    transform:
    translateY(-15px)
    scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);


}

.card h3{
    font-size:22px;
}

.card:hover h3{
    color:#f4c400;
}

.card p {
    color:#555;
}

.card-images{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    overflow:hidden;

}


.card-images img{
    width:90px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    display:block;
    cursor: pointer;
    transition: 0.3s;

}


.card-images img:hover{
    transform:scale(1.05);

}

#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

#lightbox span {
    position: absolute;
    top: 20px;
    right: 40px;
    color: yellow;
    font-size: 50px;
    cursor: pointer;
}


/* ==================================================================== OFERTA REALIZACJE ==================================================================== */


.realizations {
    padding:60px 10%;
}

table {
    width:100%;
    border-collapse:collapse;
    margin-top:30px;
    box-shadow:0 5px 20px #ddd;
}

th {
    background:#111;
    color:white;
    text-align:left;
    padding:18px;
}

td {
    padding:15px;
    border:1px solid #ddd;
    color:#555;
}

tr:hover {
    background:#fff8d6;
}

table tr{
    transition:.3s;
}

table tr:hover{
    transform:scale(1.01);
    background: #fff4b8;
}

.realizacje-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:#f4c400;
    color:#111;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.realizacje-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(244,196,0,.4);
}


/* ==================================================================== KONTAKT ==================================================================== */

.kontakt{
    max-width:1100px;
    margin:auto;
    padding:70px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.kontakt-intro h2{
    font-size:32px;
    margin-bottom:25px;
}

.kontakt-intro h3{
    color:#f4c400;
    font-size:24px;
    margin-bottom:15px;
}

.kontakt-intro p{
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

.kontakt-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.kontakt-card{
    background:white;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #f4c400;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.kontakt-card:hover{
    transform:translateY(-8px);
}

.kontakt-card h3{
    font-size:18px;
    margin-bottom:15px;
}

.kontakt-card p{
    color:#555;
    line-height:1.6;
}

@media(max-width:800px){
    .kontakt{
        grid-template-columns:1fr;
    }
    .kontakt-box{
        grid-template-columns:1fr;
    }
}

/* ==================================================================== KONTAKT - FORMULARZ ==================================================================== */

input,textarea {

    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ccc;

}

form {
    max-width:600px;
    margin:auto;
}

button {
    background:#f5c400;
    border:none;
    padding:15px 40px;
    font-weight:bold;
    cursor:pointer;
}