/*=====================================================
    TEKİMAŞ TARIM - V2
======================================================*/

:root{
    --green:#58b947;
    --green-dark:#2f7d32;
    --white:#ffffff;
    --text:#1d1d1d;
    --shadow:0 20px 60px rgba(0,0,0,.18);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#f7f7f7;
    color:var(--text);
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/*================ HEADER ================*/

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s;
}

#header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.logo{
    flex-shrink:0;
    display:flex;
    align-items:center;
}

.logo img{
    width:260px;
    height:auto;
    max-width:none;
    display:block;
}


nav ul{
    display:flex;
    gap:40px;
}

nav ul li a{
    color:#fff;
    font-weight:600;
    transition:.3s;
    position:relative;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:var(--green);
    transition:.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after{
    width:100%;
}

.phone{
    background:var(--green-dark);
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}

/*================ HERO ================*/

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;

    background-image:url("../img/hero-v2.jpg");
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    background-color:#102718;
}


.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;

    background:
        linear-gradient(
            180deg,
            rgba(5,18,8,.28) 0%,
            rgba(5,18,8,.42) 55%,
            rgba(5,18,8,.55) 100%
        );
}

.hero-content{
    position:relative;
    z-index:2;

    width:min(900px, 92%);
    margin:0 auto;
    padding:120px 20px 70px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.mini-title{
    display:inline-block;

    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:5px;

    margin-bottom:20px;
}

.hero h1{
    margin:0;

    color:#fff;
    font-size:clamp(64px, 8vw, 112px);
    font-weight:800;
    line-height:.88;
    letter-spacing:-3px;

    text-shadow:0 8px 30px rgba(0,0,0,.24);
}

.hero h1 span{
    display:block;
    margin-top:15px;

    color:#2f8b3c;
}

.hero h3{
    margin-top:32px;

    color:#fff;
    font-size:clamp(22px, 2.2vw, 38px);
    font-weight:400;
    line-height:1.35;

    text-shadow:0 5px 18px rgba(0,0,0,.3);
}

.hero-description{
    max-width:720px;
    margin-top:18px;

    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    margin-top:35px;
}

.btn{
    min-width:210px;
    padding:17px 32px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    font-size:15px;
    font-weight:700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.btn.green{
    background:#2f8b3c;
    color:#fff;

    box-shadow:0 14px 35px rgba(47,139,60,.35);
}

.btn.green:hover{
    background:#246f30;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(47,139,60,.45);
}

.btn.white{
    background:#fff;
    color:#2f7d32;

    border:1px solid rgba(255,255,255,.65);
}

.btn.white:hover{
    background:#f3f8f2;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.scroll-down{
    position:absolute;
    z-index:3;
    left:50%;
    bottom:26px;

    transform:translateX(-50%);

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    border:1px solid rgba(255,255,255,.55);
    border-radius:50%;

    animation:heroBounce 1.8s infinite;
}

@keyframes heroBounce{
    0%,100%{
        transform:translate(-50%,0);
    }

    50%{
        transform:translate(-50%,8px);
    }
}

/*================ ÜRÜN MENÜ ================*/

.fruit-menu{
    display:flex;
    gap:45px;
    margin-top:45px;
}

.fruit-menu div{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(12px);
    border-radius:40px;
    padding:10px 18px;
    color:#fff;
    font-weight:600;
}

.fruit-menu img{
    width:42px;
    height:42px;
}

/*================ BUTONLAR ================*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn{
    padding:18px 40px;
    border-radius:45px;
    font-weight:700;
    transition:.35s;
}

.green{
    background:var(--green);
    color:#fff;
}

.white{
    background:#fff;
    color:var(--green-dark);
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

/*================ BÜYÜK MEYVELER ================*/
.fruit-menu img{
    width:40px;
    height:40px;
    display:block;
    background:transparent;
}


.fruit{
    position:absolute;
    z-index:15;
    pointer-events:none;
    transition:.5s;
}

.banana{
    left:-80px;
    bottom:0;
    width:420px;
}

.avocado{
    right:0;
    top:70px;
    width:360px;
}

.dragon{
    right:-40px;
    bottom:-20px;
    width:330px;
}

.banana:hover,
.avocado:hover,
.dragon:hover{
    transform:scale(1.05);
}

/*================ ÖZELLİKLER ================*/

.features{
    width:90%;
    max-width:1350px;
    margin:-70px auto 80px;
    position:relative;
    z-index:30;
    background:#fff;
    border-radius:25px;
    box-shadow:var(--shadow);
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.feature{
    padding:35px;
    text-align:center;
    border-right:1px solid #eee;
}

.feature:last-child{
    border-right:none;
}

.feature h3{
    margin:15px 0 10px;
    color:var(--green-dark);
}

.feature p{
    color:#777;
    line-height:26px;
}

/*================ HEADER SCROLL ================*/

.scrolled{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.scrolled nav a{
    color:#222;
}

.scrolled .mini-title{
    color:#333;
}

/*================ RESPONSIVE ================*/

@media(max-width:1200px){

.hero h1{
    font-size:80px;
    line-height:80px;
}

.hero h3{
    font-size:28px;
}

.banana{
    width:300px;
}

.avocado{
    width:260px;
}

.dragon{
    width:240px;
}

}

@media(max-width:900px){

nav{
    display:none;
}

.hero h1{
    font-size:60px;
    line-height:60px;
}

.hero h3{
    font-size:22px;
}

.fruit-menu{
    flex-direction:column;
    gap:15px;
}

.hero-buttons{
    flex-direction:column;
}

.features{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.features{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:46px;
    line-height:48px;
}

.hero h3{
    font-size:18px;
}

.logo img{
    height:55px;
}

.phone{
    display:none;
}

.banana{
    width:180px;
    left:-60px;
}

.avocado{
    width:150px;
}

.dragon{
    width:150px;
}

}

/*==========================================
    PRODUCTS
==========================================*/

.products{
    background:#f8faf7;
    padding:120px 0;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    color:#49b749;
    font-weight:800;
    font-size:24px;
    letter-spacing:8px;
    text-transform:uppercase;
    margin-bottom:15px;
}


.section-title h2{

    font-size:56px;
    color:#17351d;
    margin:15px 0;

}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:32px;

}

/* Kartlar */

.product-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    padding:30px;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{
    transform:scale(1.08) rotate(-3deg);
}

.product-content{

    padding:30px;

}

.product-content h3{

    font-size:30px;

    margin-bottom:15px;

    color:#1f4725;

}

.product-content p{

    color:#666;

    line-height:28px;

    margin-bottom:25px;

}

.product-content a{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 30px;

    background:linear-gradient(135deg,#66c84d,#2d8d2f);

    color:#fff;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:all .35s ease;

    box-shadow:0 12px 25px rgba(72,177,53,.30);

    position:relative;

    overflow:hidden;

}

.product-content a::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-25deg);

    transition:.6s;

}

.product-content a:hover::before{

    left:140%;

}


.product-content a:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(72,177,53,.45);

    background:linear-gradient(135deg,#78d95a,#2f9b32);

}


/*==================================================
                    FOOTER
==================================================*/

.footer{
    color:#fff;
    background:#102716;
}

.footer-content{
    padding:70px 0;

    display:grid;
    grid-template-columns:1.3fr .7fr 1fr;
    gap:70px;
}

.footer-brand img{
    width:260px;
    height:auto;
    margin-bottom:20px;

    filter:brightness(0) invert(1);
}

.footer-brand p{
    max-width:420px;

    color:rgba(255,255,255,.72);
    line-height:1.8;
}

.footer h3{
    margin-bottom:20px;

    color:#fff;
    font-size:19px;
}

.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-links a,
.footer-contact a,
.footer-contact p{
    margin-bottom:12px;

    color:rgba(255,255,255,.75);
    font-size:14px;

    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#8ddb76;
    transform:translateX(4px);
}

.footer-contact i{
    width:24px;
    color:#85d872;
}

.footer-bottom{
    padding:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom p{
    color:rgba(255,255,255,.65);
    font-size:13px;
}


.footer-address{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:0;
}

.footer-address i{
    color:#74d15d;
    margin-top:4px;
    font-size:18px;
    flex-shrink:0;
}

.footer-address span{
    line-height:1.8;
    color:#fff;
}


/* Footer mobil görünüm */

@media(max-width:900px){

    .footer-content{
        grid-template-columns:1fr;
        gap:40px;
    }

}

@media(max-width:650px){

    .footer{
        text-align:center;
    }

    .footer-content{
        padding:50px 0;
    }

    .footer-brand img{
        width:220px;
        margin:0 auto 20px;
    }

    .footer-brand p{
        margin:auto;
    }

    .footer-links,
    .footer-contact{
        align-items:center;
    }

}



/* Responsive */

@media(max-width:992px){

.product-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

}
@media(max-width:768px){

    .hero{
        min-height:100svh;
        background-position:center center;
    }

    .hero-content{
        width:94%;
        padding:120px 16px 80px;
    }

    .mini-title{
        font-size:12px;
        letter-spacing:3px;
    }

    .hero h1{
        font-size:58px;
        line-height:.92;
        letter-spacing:-2px;
    }

    .hero h3{
        margin-top:24px;
        font-size:22px;
    }

    .hero-description{
        font-size:15px;
        line-height:1.7;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
    }

    .btn{
        width:100%;
        max-width:320px;
    }

}/* Ürünlerimiz üst başlığı - kesin boyut */
.products .section-title > span{
    display:inline-block !important;
    color:#49b749 !important;
    font-size:24px !important;
    font-weight:800 !important;
    letter-spacing:8px !important;
    line-height:1.2 !important;
    text-transform:uppercase;
    margin-bottom:15px;
}

@media(max-width:768px){

    .products .section-title > span{
        font-size:18px !important;
        letter-spacing:5px !important;
    }

    .section-title h2{
        font-size:38px;
    }

    .logo img{
        width:190px;
    }

}

/*==========================================
    MOBİL HEADER - LOGOYU ORTALA
==========================================*/

@media(max-width:900px){

    #header .container{
        display:flex;
        justify-content:center;
        align-items:center;
        padding:15px 0;
    }

    #header .container > .logo{
        margin:0 auto;
    }

    #header .logo img{
        width:190px;
        height:auto;
        max-width:none;
        display:block;
    }

    #header nav,
    #header .right-menu{
        display:none;
    }

}