*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
line-height:1.6;
}

/* CONTAINER */
.container{
max-width:1200px;
margin:auto;
padding:0 15px;
}

/* HEADER */
header{
background:#0f1a13;
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.logo{height:65px;}
.logo.small{height:55px;}

/* MENU */
nav{
display:flex;
gap:15px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
}

/* HAMBURGER */
.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* HERO */
.hero{
position:relative;
display:flex;
min-height:80vh;
flex-wrap:wrap;
}

.hero-half{
flex:1 1 50%;
min-height:300px;
background-size:cover;
background-position:center;
}

/* TŁA */
.left{
background-image:url('ogrody.png');
}

.right{
background-image:url('kamper.png');
}

/* NAKŁADKA */
.hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
rgba(0,0,0,0.7),
rgba(0,0,0,0.6)
);
}

/* TEKST */
.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#ffffff;
text-align:center;
width:90%;
max-width:700px;
z-index:2;

display:flex;
flex-direction:column;
align-items:center;
gap:15px;

text-shadow:
0 2px 6px rgba(0,0,0,0.9),
0 4px 12px rgba(0,0,0,0.8);
}

/* NAPISY */
.hero-content h1{
font-size:60px;
font-weight:700;
letter-spacing:2px;
}

.hero-content h2{
color:#9cff57;
font-size:36px;
font-weight:600;
}

.hero-content p{
font-size:20px;
line-height:1.4;
}

/* BUTTONY */
.btn{
display:inline-block;
padding:12px 24px;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:600;
margin:5px;
}

.green{background:#5a8f3d;}
.red{background:#c62828;}

/* TELEFON HERO - BIAŁY */
.phone{
margin-top:20px;
font-size:32px;
font-weight:700;
color:#ffffff;
text-align:center;
letter-spacing:1px;

text-shadow:
0 2px 6px rgba(0,0,0,0.9),
0 4px 12px rgba(0,0,0,0.8);
}

.phone a{
color:#ffffff !important;
text-decoration:none;
}

.phone a:visited{
color:#ffffff !important;
}

.phone a:hover{
opacity:0.85;
}

/* SEKCJE */
.section{
padding:50px 20px;
text-align:center;
}

.dark{
background:#222;
color:white;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:20px;
}

.card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.dark .card{
background:#333;
}

.card ul{
text-align:left;
line-height:1.9;
}

/* KONTAKT */
.contact{
background:#eee;
padding:50px 20px;
}

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:10px;
}

input, textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
width:100%;
}

button{
padding:14px;
background:#5a8f3d;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

/* FOOTER */
footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
}

/* CALL BAR */
.call-bar{
display:none;
position:fixed;
bottom:0;
left:0;
width:100%;
background:#5a8f3d;
text-align:center;
padding:15px;
z-index:999;
}

.call-bar a{
color:white;
text-decoration:none;
font-size:18px;
font-weight:600;
}

/* 📱 MOBILE */
@media(max-width:768px){

.menu-toggle{display:block;}

nav{
display:none;
flex-direction:column;
width:100%;
background:#0f1a13;
}

nav.active{
display:flex;
}

nav a{
padding:10px;
border-top:1px solid #2c3e2c;
}

.logo.small{display:none;}

.hero{
flex-direction:column;
}

.hero-content{
top:55%;
gap:10px;
}

.hero-content h1{
font-size:34px;
}

.hero-content h2{
font-size:22px;
}

.hero-content p{
font-size:16px;
}

.phone{
font-size:22px;
}

.call-bar{
display:block;
}
}

/* TABLET */
@media(min-width:768px){
.grid{
grid-template-columns:1fr 1fr;
}
}

/* DESKTOP */
@media(min-width:1024px){
.grid{
grid-template-columns:1fr 1fr 1fr;
}
/* UKŁAD FORMULARZA */
.row{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.row input{
flex:1;
min-width:200px;
}

/* MOBILE */
@media(max-width:768px){
.row{
flex-direction:column;
}

.seo-text{
max-width:900px;
margin:20px auto;
font-size:16px;
line-height:1.6;
color:#555;
}

/* MAPA */
.map-section{
padding:50px 20px;
text-align:center;
background:#f5f5f5;
}

.map-section h2{
margin-bottom:10px;
}

.map-container{
max-width:1000px;
margin:20px auto;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width:768px){
.map-container iframe{
height:300px;
}


}