/*
Theme Name: Kırşehir Kent Temizlik
Author: Kent Temizlik
Version: 1.0
*/

body {margin:0;font-family:Arial, sans-serif;background:#f4f6f8;}

.hero {
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url('https://images.unsplash.com/photo-1581578731548-c64695cc6952');
background-size:cover;
background-position:center;
color:white;
text-align:center;
padding:140px 20px;
}

.hero h1 {font-size:50px;margin-bottom:20px;}
.hero p {font-size:22px;margin-bottom:30px;}

.btn {
display:inline-block;
padding:15px 30px;
background:#1e8f4c;
color:white;
text-decoration:none;
border-radius:8px;
margin:10px;
transition:0.3s;
}

.btn:hover {background:#146c38;}

.section {padding:80px 20px;text-align:center;}

.section h2 {
font-size:36px;
margin-bottom:40px;
color:#1e8f4c;
}

.services {
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.service-box {
background:white;
padding:30px;
width:280px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.service-box:hover {transform:translateY(-10px);}

.contact-box {
background:#1e8f4c;
color:white;
padding:60px 20px;
text-align:center;
}

.whatsapp-float {
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:1000;
}

@media(max-width:768px){
.hero h1 {font-size:32px;}
.services {flex-direction:column;align-items:center;}
}
