
html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:#f8faf7;
color:#222;
}
.call-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.btn{
    background-color: #248d2b;
    color: white;
}
.btn:hover{
    background-color: #1c5820;
    color: white;
}
.custom-navbar{
background:#1B5E20;
}
.hero-title{
font-size:clamp(2rem,6vw,5rem);
line-height:1.1;
}

.hero{
min-height:90vh;
display:flex;
align-items:center;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("images/home.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* Mobil */

@media (max-width:576px){

.hero{

min-height:100vh;

background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("images/mobilimage.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

.hero-title{

font-size:2.4rem;
line-height:1.2;

}

}
.product-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-card img{
width:100%;
height:250px;
object-fit:cover;
}

.feature-box{
background:#fff;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-box{
background:white;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.cta-section{
background:#1B5E20;
color:white;
padding:80px 0;
}

footer{
background:#111827;
color:white;
}

footer a{
color:white;
text-decoration:none;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
text-decoration:none;
z-index:9999;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.whatsapp:hover{
color:white;
transform:scale(1.1);
}




/*Navbar**************************************************/
/* NAVBAR */
.custom-navbar{
    background: rgba(18, 66, 38, 0.92);
    backdrop-filter: blur(15px);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Logo */
.navbar-brand{
    color:#fff;
    font-size:1.6rem;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    letter-spacing:.5px;
}

.navbar-brand i{
    color:#6cff92;
    font-size:1.8rem;
}

.navbar-brand:hover{
    color:#fff;
}

/* Menü */
.navbar-nav{
    gap:12px;
}

.nav-link{
    color:rgba(255,255,255,.85)!important;
    font-weight:500;
    position:relative;
    transition:.3s;
    padding:10px 16px !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:#6cff92;
    transition:.3s;
    transform:translateX(-50%);
}

.nav-link:hover{
    color:#6cff92 !important;
}

.nav-link:hover::after{
    width:70%;
}

/* İletişim Butonu */
.contact-btn{
    background:#6cff92;
    color:#124226;
    font-weight:600;
    padding:10px 24px;
    border-radius:50px;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-2px);
    background:white;
    color:#124226;
}

/* Mobil */
@media(max-width:991px){

    .navbar-nav{
        text-align:center;
        margin:20px 0;
    }

    .contact-btn{
        display:block;
        text-align:center;
    }
}




.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:
    opacity .8s ease,
    transform .8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

/* Ürün kartları için gecikme */
.product-card{
    transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}


/* Stagger Animation */

.product-card:nth-child(1){transition-delay:.1s;}
.product-card:nth-child(2){transition-delay:.2s;}
.product-card:nth-child(3){transition-delay:.3s;}
.product-card:nth-child(4){transition-delay:.4s;}
.product-card:nth-child(5){transition-delay:.5s;}
.product-card:nth-child(6){transition-delay:.6s;}
.product-card:nth-child(7){transition-delay:.7s;}
.product-card:nth-child(8){transition-delay:.8s;}
.product-card:nth-child(9){transition-delay:.9s;}



    .social-media-section{
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

.social-media-section h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-media-section p{
    color: #666;
    margin-bottom: 30px;
}

.instagram-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 35px;

    color: #fff;
    text-decoration: none;

    font-size: 20px;
    font-weight: 600;

    border-radius: 50px;

    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );

    transition: .3s;
}

.instagram-btn:hover{
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(220,39,67,.3);
}

.instagram-btn i{
    font-size: 28px;
}

@media (max-width:768px){

    .social-media-section h2{
        font-size: 26px;
    }

    .instagram-btn{
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }

}


.slider-wrapper{
    max-width: 1000px;      /* Masaüstünde çok geniş olmaz */
    margin: 50px auto;
    padding: 0 15px;
}

.carousel{
    border-radius: 25px;
    overflow: hidden;
}

.slider-img{
    width: 100%;
    height: 500px;

    object-fit: cover;      /* Farklı boyutlardaki telefon fotoğrafları için ideal */

    filter:
        brightness(.92)
        contrast(1.05);

    transition: transform 2s ease;
}

.carousel-item.active .slider-img{
    transform: scale(1.05); /* Hafif zoom efekti */
}

@media (max-width:768px){

    .slider-wrapper{
        margin: 25px auto;
    }

    .slider-img{
        height: 280px;
    }

}