/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    color:#333;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#f97316;
}

.logo i{
    margin-right:8px;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:30px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#f97316;
}

/* HERO */

.hero{
    height:100vh;
    background:url(images/kapak.jpg) center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-text{
    position:relative;
    color:white;
    text-align:center;
    width:90%;
    max-width:900px;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;
    margin-bottom:35px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    background:#f97316;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-size:18px;
    transition:.3s;
}

.btn:hover{
    background:#d65f0f;
    transform:translateY(-3px);
}

/* HİZMETLER */

.services{
    padding:100px 8%;
}

.services h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:42px;
    color:#f97316;
    margin-bottom:15px;
}

.card h3{
    font-size:24px;
    margin-bottom:10px;
}

.card p{
    font-size:15px;
    line-height:1.6;
}



/* GALERİ */

.gallery{
    padding:100px 8%;
    background:#ececec;
}

.gallery h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

.slider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    
}
.slider img{
    width:220px;
    height:330px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.slider button{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f97316;
    color:white;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.slider button:hover{
    background:#d65f0f;
}
.gallery{
    padding:70px 8%;
    background:#ececec;
}

.gallery h2{
    text-align:center;
    margin-bottom:35px;
    font-size:42px;
}

.slider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}






.slider button:hover{
    background:#d65f0f;
}
/* NEDEN BİZ */

.why{
    padding:100px 8%;
}

.why h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.why-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-box div{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:15px;
    font-size:20px;
    font-weight:600;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* ARA */

.call{
    padding:90px 20px;
    text-align:center;
    background:#f97316;
    color:white;
}

.call h2{
    font-size:40px;
    margin-bottom:30px;
}

.btn2{
    display:inline-block;
    background:white;
    color:#f97316;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.btn2:hover{
    transform:scale(1.05);
}

/* FOOTER */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h2{
    margin-bottom:25px;
}

footer p{
    margin:12px 0;
}

.copyright{
    margin-top:30px;
    color:#aaa;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* MOBİL */

@media(max-width:768px){

/* HEADER */

header{
    flex-direction:column;
    gap:10px;
    padding:12px;
}

.logo{
    font-size:22px;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
}

nav a{
    margin:0;
    font-size:15px;
}

/* HERO */

.hero{
    height:70vh;
}

.hero-text h1{
    font-size:30px;
}

.hero-text p{
    font-size:15px;
    line-height:1.6;
}

.btn{
    padding:12px 22px;
    font-size:15px;
}

/* HİZMETLER */

.services{
    padding:60px 5%;
}

.services h2,
.gallery h2,
.why h2,
.call h2{
    font-size:28px;
}

.service-container{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.card{
    padding:15px;
    border-radius:12px;
}

.card i{
    font-size:28px;
    margin-bottom:8px;
}

.card h3{
    font-size:16px;
    margin-bottom:6px;
}

.card p{
    font-size:12px;
    line-height:1.4;
}

/* GALERİ */

.slider{
    gap:10px;
}

.slider img{
    width:180px;
    height:260px;
}

.slider button{
    width:42px;
    height:42px;
    font-size:18px;
}

/* NEDEN BİZ */

.why{
    padding:60px 5%;
}

.why-box{
    grid-template-columns:1fr;
    gap:15px;
}

.why-box div{
    padding:20px;
    font-size:16px;
}

/* İLETİŞİM */

.call{
    padding:60px 20px;
}

.btn2{
    padding:12px 24px;
    font-size:15px;
}

/* FOOTER */

footer{
    padding:40px 20px;
}

footer h2{
    font-size:24px;
}

footer p{
    font-size:15px;
}

/* WHATSAPP */

.whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
}

}