/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f6f8;
color:#222;
line-height:1.6;
}


/* TOP BAR */

.topbar{
background:#111;
color:#fff;
padding:8px 40px;
display:flex;
justify-content:space-between;
font-size:14px;
}


/* HEADER */

.header{
background:#fff;
border-bottom:1px solid #ddd;
}

.header-inner{
max-width:1200px;
margin:auto;
padding:15px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
height:50px;
}

/* MENU */

.nav a{
margin-left:25px;
text-decoration:none;
color:#000;
font-weight:bold;
}

.nav a:hover{
color:#28a745;
}

.nav .active{
color:#28a745;
}


/* HERO */
.hero {
background-image:url("tło.png");
background-size:cover;
background-position:center;
padding:140px 20px;
color:white;
text-align:center;
}

.hero h1{
font-size:40px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.cta{
background:#000;
color:#fff;
padding:14px 28px;
text-decoration:none;
font-weight:bold;
border-radius:4px;
}


/* WHY */

.why-fixup{
max-width:1800px;
margin:80px auto;
text-align:center;
}

.why-fixup ul{
list-style:none;
margin-top:60px;
}

.why-fixup li{
margin:10px 0;
font-size:20px;
}


/* SERVICES */

.services{
max-width:1200px;
margin:80px auto;
padding:0 20px;
}

.services h2{
text-align:center;
margin-bottom:40px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.service-box{
background:#fff;
border:1px solid #ddd;
padding:30px;
text-align:center;
font-weight:bold;
}

.service-box:hover{
border-color:#28a745;
}


/* ABOUT */

.about{
max-width:900px;
margin:80px auto;
padding:40px;
background:#fff;
border:1px solid #ddd;
}

.about h2{
text-align:center;
margin-bottom:30px;
}

.about p{
margin-bottom:15px;
font-size:16px;
}



/* FOOTER */

.footer{
background:#111;
color:#fff;
text-align:center;
padding:25px;
margin-top:60px;
}


/* MOBILE */

@media (max-width:1200px){

.header-inner{
flex-direction:column;
gap:15px;
}

.nav a{
margin:0 10px;
}

.contact-box{
grid-template-columns:1fr;
}

.hero h1{
font-size:28px;
}

}
.service-box{
position:relative;
background:#fff;
border:1px solid #ddd;
padding:30px;
text-align:center;
font-weight:bold;
cursor:pointer;
}

.service-price{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
color:#fff;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;
font-weight:bold;

opacity:0;
transition:0.3s;
}

.service-box:hover .service-price{
opacity:1;
}
/* OPINIE */

.reviews{
max-width:1000px;
margin:80px auto;
text-align:center;
padding:20px;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.review-card{
background:#fff;
border:1px solid #ddd;
padding:25px;
text-align:left;
}

.stars{
color:#ffc107;
font-size:20px;
margin-bottom:10px;
}

.review-author{
display:block;
margin-top:15px;
font-weight:bold;
color:#555;
}

.review-btn{
display:inline-block;
margin-top:40px;
padding:12px 25px;
background:#28a745;
color:white;
text-decoration:none;
font-weight:bold;
}

.review-btn:hover{
background:#1e7e34;
}


/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

/* KONTAKT */

.kontakt{
width:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
padding:80px 20px;
gap:40px;
}

/* FORMULARZ */

.formularz{
width:350px;
padding:30px;
border:3px solid black;
background:white;
text-align:center;
}

.formularz input,
.formularz textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
}

.formularz button{
width:100%;
padding:12px;
background:#071c2c;
color:white;
border:none;
cursor:pointer;
}

/* MAPA */

.mapa{
width:700px;
height:400px;
border:3px solid #071c2c;
}

.mapa iframe{
width:100%;
height:100%;
border:0;
}