/* ===========================
   NİZİP REKLAM BLOG CSS
===========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f7f7f7;
color:#222;
line-height:1.7;
}

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:#000;
position:sticky;
top:0;
z-index:999;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav a{
color:#fff;
font-weight:600;
transition:.3s;
}

nav a:hover,
nav .active{
color:#9be000;
}

.telefon{
border:2px solid #9be000;
padding:12px 22px;
border-radius:40px;
color:#fff;
font-weight:600;
transition:.3s;
}

.telefon:hover{
background:#9be000;
color:#000;
}

/* HERO */

.hero{
background:#111;
padding:90px 0;
color:#fff;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero img{
border-radius:18px;
box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.hero h1{
font-size:58px;
margin:25px 0;
font-weight:800;
}

.hero p{
font-size:22px;
color:#ddd;
}

.breadcrumb{
color:#9be000;
font-size:15px;
}

.breadcrumb span{
margin:0 12px;
color:#888;
}

.date{
margin-top:35px;
font-size:18px;
color:#ccc;
}

/* CONTENT */

.blog-content{
padding:80px 0;
background:#fff;
}

.info-box{
display:flex;
gap:35px;
margin-bottom:60px;
align-items:flex-start;
}

.icon{
font-size:60px;
color:#9be000;
min-width:70px;
}

.section{
display:flex;
gap:35px;
margin:70px 0;
align-items:flex-start;
}

.section-icon{
font-size:60px;
color:#8ad100;
min-width:80px;
}

.section h2{
font-size:38px;
margin-bottom:25px;
}

.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:20px;
}

.grid div{
font-size:20px;
}

.grid i{
color:#8ad100;
margin-right:10px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.cards div{
background:#fff;
border:1px solid #ddd;
padding:18px;
text-align:center;
border-radius:10px;
font-weight:600;
transition:.3s;
}

.cards div:hover{
background:#8ad100;
color:#000;
transform:translateY(-5px);
}

/* CTA */

.cta{
padding:70px 0;
}

.cta-box{
background:#000;
color:#fff;
border-radius:20px;
padding:45px;
display:flex;
justify-content:space-between;
align-items:center;
}

.cta h2{
font-size:34px;
margin-bottom:10px;
}

.cta a{
background:#8ad100;
padding:18px 40px;
border-radius:10px;
color:#000;
font-weight:700;
transition:.3s;
}

.cta a:hover{
transform:scale(1.05);
}

/* FOOTER */

footer{
padding:40px;
text-align:center;
background:#fff;
font-size:18px;
}

footer a:hover{
color:#8ad100;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

nav{
display:none;
}

.cards{
grid-template-columns:1fr;
}

.grid{
grid-template-columns:1fr;
}

.section{
flex-direction:column;
}

.info-box{
flex-direction:column;
}

.hero h1{
font-size:42px;
}

.cta-box{
flex-direction:column;
gap:30px;
text-align:center;
}

}