/* ==========================================
AKKUŞLAR TARIM ÜRÜNLERİ
PREMIUM STYLE.CSS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f8faf8;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

img{
width:100%;
display:block;
}

/* =========================
PRELOADER
========================= */

#preloader{
position:fixed;
inset:0;
background:#0f1d13;
z-index:99999;
display:flex;
justify-content:center;
align-items:center;
}

.loader-content{
text-align:center;
}

.loader-logo{
font-size:60px;
font-weight:800;
color:#d4af37;
letter-spacing:4px;
}

.loader-content p{
color:white;
margin-top:10px;
letter-spacing:5px;
}

.loader-line{
width:0;
height:4px;
background:#d4af37;
margin:20px auto;
animation:loader 2s forwards;
}

@keyframes loader{
100%{
width:260px;
}
}

/* =========================
HEADER
========================= */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(255,255,255,.85);
backdrop-filter:blur(15px);
transition:.4s;
}

.header.scrolled{
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo h1{
color:#1f6b2d;
font-size:38px;
font-weight:800;
}

.logo span{
font-size:14px;
color:#777;
}

.navbar ul{
display:flex;
gap:35px;
}

.navbar a{
color:#222;
font-weight:600;
transition:.3s;
}

.navbar a:hover{
    color:#d4af37;
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    background:
    linear-gradient(
        rgba(15,35,15,.65),
        rgba(15,35,15,.65)
    ),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}
.hero-content{
    max-width:800px;
}
/* Hero içindeki tüm metinleri siyah yap - kesin çözüm */
.hero-overlay,
.hero-overlay *,
.hero-content,
.hero-content *,
.hero-badge,
.hero-content h2,
.hero-content p {
    color: #000000 !important;
}

/* Rozet arka planı altın kalır, yazı siyah */
.hero-badge{
    background:#d4af37;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:25px;
    font-weight:600;
}

.hero-content h2{
    color:#fff;
    font-size:78px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}
.hero-content p{
    color:rgba(255,255,255,.9);
    font-size:24px;
    max-width:700px;
    margin-bottom:40px;
}
.hero-buttons{
display:flex;
gap:20px;
}

.btn{
padding:16px 35px;
border-radius:50px;
font-weight:600;
transition:.4s;
}

.btn:hover{
transform:translateY(-5px);
}

.btn-gold{
background:#d4af37;
color:white;
}

.btn-green{
background:#2e7d32;
color:white;
}

/* =========================
SECTIONS
========================= */

section{
padding:120px 0;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title h2{
font-size:42px;
color:#1f6b2d;
position:relative;
display:inline-block;
}

.section-title h2::after{
content:"";
position:absolute;
left:50%;
bottom:-15px;
transform:translateX(-50%);
width:80px;
height:4px;
background:#d4af37;
}

/* =========================
HAKKIMIZDA
========================= */

.about-content{
background:white;
padding:50px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.07);
}

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.stat-card{
background:white;
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.stat-card h3{
font-size:48px;
color:#2e7d32;
}

/* =========================
PRODUCTS
========================= */

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.product-card{
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.product-card:hover{
transform:translateY(-12px);
}

.product-card img{
height:250px;
object-fit:cover;
}

.product-card h3{
padding:25px;
text-align:center;
color:#1f6b2d;
}

/* =========================
SERVICES
========================= */

.services{
background:#eef5ef;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:35px;
border-left:5px solid #d4af37;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
}

/* =========================
CONTACT
========================= */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-info,
form{
background:white;
padding:40px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-info h3{
color:#1f6b2d;
margin-bottom:20px;
}

.contact-info p{
margin-bottom:20px;
}

input,
textarea{
width:100%;
padding:16px;
border:1px solid #ddd;
border-radius:12px;
margin-bottom:15px;
font-family:'Poppins',sans-serif;
}

textarea{
min-height:180px;
}

button{
width:100%;
padding:16px;
border:none;
border-radius:12px;
background:#2e7d32;
color:white;
cursor:pointer;
font-size:16px;
font-weight:600;
}

/* =========================
FOOTER
========================= */

footer{
background:#111;
color:white;
text-align:center;
padding:60px 20px;
}

footer h3{
color:#d4af37;
margin-bottom:10px;
}

/* =========================
WHATSAPP
========================= */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
z-index:999;
}

.whatsapp-btn img{
width:70px;
height:70px;
border-radius:50%;
}

/* =========================
MOBILE
========================= */

.menu-toggle{
display:none;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
    font-size:30px;
    cursor:pointer;
}

.navbar{
    display:none;
}

.navbar.active{
    display:block;
}

.navbar ul{
    flex-direction:column;
    background:white;
    padding:20px;
    margin-top:10px;
}

.hero-content h2{
    font-size:42px;
}

.hero-buttons{
    flex-direction:column;
}

.stats{
    grid-template-columns:1fr;
}

.contact-wrapper{
    grid-template-columns:1fr;
}

}