/* ===================================
   SPOT LİDERİ - STYLE CSS
   =================================== */


/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* ROOT */

:root {

    --main-color:#111827;
    --second-color:#f97316;
    --white:#ffffff;
    --light:#f8fafc;
    --dark:#1f2937;
    --gray:#6b7280;
    --whatsapp:#25D366;

    --shadow:
    0 10px 30px rgba(0,0,0,.12);

    --radius:20px;

}




/* RESET */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;

}


html{

    scroll-behavior:smooth;
    font-size:62.5%;
    overflow-x:hidden;

}



body{

    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;

}



a{

    text-decoration:none;

}



img{

    max-width:100%;
    display:block;

}



section{

    padding:8rem 7%;

}






/* =========================
 HEADER
========================= */


.header{

    position:fixed;

    top:20px;
    left:7%;
    right:7%;

    height:75px;

    background:white;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 35px;

    box-shadow:var(--shadow);

    z-index:999;

}






   .logo img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}





.navbar{

    display:flex;

    gap:30px;

}



.navbar a{

    font-size:1.5rem;

    color:var(--dark);

    font-weight:500;

    position:relative;

}



.navbar a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:3px;

    background:var(--second-color);

    transition:.3s;

}



.navbar a:hover::after{

    width:100%;

}



.menu-btn{

    display:none;

    font-size:3rem;

}






/* =========================
 HERO
========================= */


.hero{


    min-height:100vh;

    display:flex;

    align-items:center;


    background:

    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.65)
    ),

    url(images/hero.jpg);



    background-size:cover;

    background-position:center;


}



.hero-content{

    max-width:700px;

    color:white;

}



.hero h1{

    font-size:6rem;

    line-height:1.2;

    font-weight:800;

}



.hero h1 span{

    color:var(--second-color);

}



.hero p{

    margin:25px 0;

    font-size:1.8rem;

    line-height:1.8;

}




.hero-buttons{

    display:flex;

    gap:20px;

}




.btn{

    padding:15px 35px;

    border-radius:50px;

    font-size:1.6rem;

    color:white;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}



.primary{

    background:var(--second-color);

}



.whatsapp-btn{

    background:var(--whatsapp);

}



.btn:hover{

    transform:translateY(-5px);

}






/* =========================
 SECTION TITLE
========================= */


.section-title{

    text-align:center;

    margin-bottom:50px;

}



.section-title h2{

    font-size:4rem;

    color:var(--main-color);

}



.section-title p{

    font-size:1.6rem;

    color:var(--gray);

}






/* =========================
 SERVICES
========================= */


.services{

    background:white;

}



.service-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.service-card{


    padding:40px 25px;

    background:white;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    text-align:center;

    transition:.3s;

}



.service-card:hover{

    transform:translateY(-10px);

}



.service-card i{

    font-size:4rem;

    color:var(--second-color);

    margin-bottom:20px;

}



.service-card h3{

    font-size:2rem;

    margin-bottom:15px;

}



.service-card p{

    color:var(--gray);

    font-size:1.4rem;

    line-height:1.7;

}






/* =========================
 WHY
========================= */


.why-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    text-align:center;

}



.why-container div{

    background:white;

    padding:40px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}



.why-container i{

    font-size:4rem;

    color:var(--second-color);

}



.why-container h3{

    font-size:2rem;

    margin:20px 0;

}



.why-container p{

    font-size:1.5rem;

}






/* =========================
 GALERİ
========================= */


.gallery{

    background:white;

}



.gallery-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}



.gallery-item img{

    height:280px;

    width:100%;

    object-fit:cover;

    transition:.4s;

}



.gallery-item:hover img{

    transform:scale(1.1);

}






/* =========================
 CONTACT
========================= */


.contact{

    text-align:center;

    background:var(--main-color);

    color:white;

}



.contact h2{

    font-size:4rem;

}



.contact p{

    font-size:1.6rem;

    margin:20px;

}



.contact a{

    color:var(--second-color);

    font-size:2rem;

}





/* =========================
 WHATSAPP FIXED
========================= */


.whatsapp{


    position:fixed;

    bottom:25px;

    right:25px;

    background:var(--whatsapp);

    color:white;

    padding:15px 25px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:1.5rem;

    z-index:1000;

    box-shadow:var(--shadow);

}



.whatsapp i{

    font-size:3rem;

}







/* =========================
 FOOTER
========================= */


footer{

    background:#0b1220;

    color:white;

    text-align:center;

    padding:40px;

}



footer h3{

    font-size:2.5rem;

}



footer p{

    font-size:1.5rem;

    margin-top:10px;

}






/* =========================
 RESPONSIVE
========================= */



@media(max-width:1100px){


.service-container{

grid-template-columns:repeat(2,1fr);

}


.gallery-container{

grid-template-columns:repeat(2,1fr);

}


}




@media(max-width:768px){


html{

font-size:55%;

}

.navbar.active{

    display:flex;

}


.header{

left:20px;

right:20px;

}



.navbar{

display:none;

position:absolute;

top:80px;

left:0;

right:0;

background:white;

border-radius:20px;

flex-direction:column;

padding:30px;

text-align:center;

}



.menu-btn{

display:block;

}



.hero h1{

font-size:4rem;

}



.hero-buttons{

flex-direction:column;

}



.service-container,
.why-container,
.gallery-container{

grid-template-columns:1fr;

}



.whatsapp span{

display:none;

}


}
/* JS ANİMASYONLARI */

.hidden{

    opacity:0;

    transform:translateY(40px);

}


.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}



.pulse{

    animation:pulse 1s infinite;

}



@keyframes pulse{


0%{

transform:scale(1);

}


50%{

transform:scale(1.08);

}


100%{

transform:scale(1);

}


}
/* =========================
   YORUMLAR
========================= */

.reviews{
    background:#f8fafc;
}


.review-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.review-card{

    background:white;

    padding:30px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;

}


.review-card .stars{

    font-size:2rem;

    margin-bottom:20px;

}


.review-card p{

    font-size:1.5rem;

    color:var(--gray);

    line-height:1.7;

}


.review-card h3{

    margin-top:20px;

    font-size:1.8rem;

}


@media(max-width:768px){

.review-container{

grid-template-columns:1fr;

}

}

