@charset "UTF-8";
/* MENÜ BUTONU */
.menukon {
    position: fixed;
    top: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 2000;
    cursor: pointer;
    transition: 0.25s ease;
}

.menukon i {
    font-size: 24px;
    color: #00695c;
    transition: 0.25s ease;
}

.menukon:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}


/* SAĞDAN AÇILAN MENÜ */
.rightSidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: rgba(0,105,92,0.96);
    padding-top: 120px;
    transition: right 0.35s ease-in-out;
    z-index: 1500;
}

.rightSidebar ul {
    list-style: none;
}

.rightSidebar li {
    padding: 12px 20px;
}

.rightSidebar li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.rightSidebar li:hover {
    background: #004d40;
    cursor: pointer;
}

.rightSidebar.active {
    right: 0;
}

/* OVERLAY (ARKA PLAN KARARTMA) */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1400;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

 /* GENEL */
        * { box-sizing: border-box; margin:0; padding:0; }
        body {
            font-family: 'Raleway', Arial, sans-serif;
            background: #f3f3f3;
        }

        /* SABİT ÜST BAR */
       /* SABİT ÜST BAR – PREMIUM VERSİYON */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* Cam efekti + hafif gradient */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.94),
        rgba(245, 249, 240, 0.96)
    );
    backdrop-filter: blur(14px);

    /* İnce alt çizgi ve yumuşak gölge */
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    z-index: 1000;
}

/* LOGO BLOĞU */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Yazı tipi ve hiyerarşi */
.logo h2 {
    color: #163512;
    font-size: 22px;
    line-height: 0.7;
    margin: 0;
    padding-left: 12px;
    border-left: 2px solid #b8860b;
    letter-spacing: 0.4px;
}

.logo h2 span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #B8860B;  /* orijinal altın rengi */
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.logo h2 br {
    line-height: 1.1;
}



       
        .logo span {
            color:#B8860B;
            font-weight:600;
        }

        /* MENÜ BUTONU */
        

        .menukon i {
            font-size:34px;
            color:#00695c;
            transition:0.3s;
        }

      
        .rightSidebar ul {
            list-style:none;
        }

        .rightSidebar li {
            padding:12px 20px;
        }

        .rightSidebar li a {
            color:#fff;
            text-decoration:none;
            font-size:16px;
        }

        .rightSidebar li:hover {
            background:#004d40;
            cursor:pointer;
        }

        .rightSidebar.active {
            right:0;
        }

        /* OVERLAY (ARKA PLAN KARARTMA) */
        .overlay {
            position:fixed;
            inset:0;
            background:rgba(0,0,0,0.45);
            backdrop-filter:blur(4px);
            opacity:0;
            pointer-events:none;
            transition:0.3s ease;
            z-index:1400;
        }

        .overlay.active {
            opacity:1;
            pointer-events:all;
        }

        /* HEADER SADECE TEST İÇİN */
        .header {
            margin-top:110px;
            height:300px;
            background:#ccc;
            display:flex;
            align-items:center;
            justify-content:center;
        }

        .header h2 {
            font-size:32px;
        }

        main {
            padding:30px 20px;
            max-width:900px;
            margin:0 auto;
        }
      

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}
/* MENU AÇIKKEN X ICON BEYAZ */
.menukon.active i {
    color: #fff !important;
}

/* GENEL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background-color: snow;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    color: #222;
}

/* GENEL YAPI */
main, .info, .container, .article, .footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* NAVBAR / LOGO BAR */
.logo {
    width: 100%;
    height: 110px;
    background-color: rgba(249, 251, 231, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo img {
    height: 76px;
    margin-right: 10px;
}

.logo h2 {
    color: #1b5e20;
    font-size: 24px;
    text-align: left;
    border-left: 1px solid #1b5e20;
    padding: 6px 12px;
    margin-top: 0;
}

.logo span {
    color: #B8860B;
    font-weight: 600;
}


.menukon i {
    font-size: 34px;
    padding: 6px;
    color: #00695c;
    border-radius: 50%;
    transition: 0.3s;
}
.menukon i.white {
    color: #fff !important;
}
/* MENÜ AÇILINCA İKONUN X OLMASI */
.menukon i.close-icon {
    font-family: Arial, sans-serif;
    font-style: normal;
    font-size: 34px;
    line-height: 34px;
    color: #fff !important;   /* Menü açık olduğunda beyaz */
    transition: 0.3s ease;
}


.menukon i:hover {
    color: rgba(0, 105, 92, 0.7);
    transform: scale(1.05);
}

/* SAĞDAN AÇILAN MENÜ */


.rightSidebar.active {
    right: 0;
}



.rightSidebar ul {
    list-style-type: none;
}

.rightSidebar ul li {
    width: 100%;
    padding: 12px 0;
}

.rightSidebar ul li:hover {
    background-color: #004d40;
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.rightSidebar a {
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-decoration: none;
    display: block;
    letter-spacing: .5px;
}

/* HEADER */
.header {
    width: 100%;
    min-height: 60vh;          /* cihazlara göre otomatik ayarlanır */
    background-image: url("../image/tohum.png");
    background-repeat: no-repeat;
    background-size: cover;    /* resmi responsive yapar */
    background-position: center;
    background-attachment: scroll;  /* mobil hatalarını engeller */
    position: relative;
    margin: 0 auto;
    margin-top: 110px;         /* navbar yüksekliği */
}


.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
}

.header h2 {
    position: absolute;
    left: 7%;
    bottom: 18%;
    color: #fdfdfd;
    font-size: 38px;
    max-width: 400px;
    text-align: left;
    animation: 2s slide-right;
}
/* HAFTALIK KAMPANYA SLIDERI */
.campaigns {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 40px auto;
    padding: 0 10px;
    text-align: center;
}

.campaigns h2 {
    font-size: 22px;
    color: #1b5e20;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.campaign-sub {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.campaign-slider {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Tek tek slide'lar */
.campaign-slide {
    display: none;
    align-items: stretch;
    flex-wrap: wrap;
}

.campaign-slide.active {
    display: flex;
}

.campaign-slide img {
    width: 100%;
    max-width: 420px;
    object-fit: cover;
    flex: 1 1 40%;
}

.campaign-caption {
    flex: 1 1 60%;
    padding: 20px 22px;
    text-align: left;
    background: linear-gradient(135deg, #f9fbe7, #ffffff);
}

.campaign-caption h3 {
    font-size: 18px;
    color: #2e7d32;
    margin-bottom: 8px;
}

.campaign-caption p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.campaign-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    background: #2e7d32;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.campaign-cta i {
    font-size: 14px;
}

/* Ok butonları */
.campaign-prev,
.campaign-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    transition: 0.2s;
}

.campaign-prev:hover,
.campaign-next:hover {
    background: rgba(0,0,0,0.55);
}

.campaign-prev {
    left: 8px;
}

.campaign-next {
    right: 8px;
}

/* Noktalar */
.campaign-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.campaign-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}

.campaign-dots span.active {
    background: #2e7d32;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .campaign-slide {
        flex-direction: column;
    }

    .campaign-slide img {
        max-width: 100%;
        height: 220px;
    }

    .campaign-caption {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .campaigns {
        margin-top: 20px;
    }

    .campaign-caption h3 {
        font-size: 16px;
    }

    .campaign-caption p {
        font-size: 13px;
    }
}


/* METİN BLOĞU */
.info {
    width: 95%;
    text-align: justify;
    margin: 40px auto;
    line-height: 1.6;
    font-size: 15px;
}

.info p {
    text-indent: 15px;
    margin-bottom: 8px;
}

/* FAALİYET KARTLARI */
/* FAALİYET KARTLARI – YENİ VERSİYON */

.container {
    width: 95%;
    margin: 40px auto 60px auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.biz, .hizmet, .gelecek {
    background: linear-gradient(145deg, #ffffff, #f7faf5);
    border-radius: 18px;
    padding: 24px 20px 28px 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(46, 125, 50, 0.12);
}

/* Kartların solunda ince renk şeridi – kurumsal vurgu */
.biz::before, .hizmet::before, .gelecek::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2e7d32, #b8860b);
    opacity: 0.9;
}

/* Hover efekti */
.biz:hover, .hizmet:hover, .gelecek:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(46, 125, 50, 0.25);
}

/* Üstte yuvarlak görsel */
.resim1 img,
.resim2 img,
.resim3 img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 2px solid rgba(184, 134, 11, 0.75);
}

/* Başlık ve metinler */
.biz h2, .hizmet h2, .gelecek h2 {
    margin-bottom: 10px;
    color: #1b5e20;
    font-size: 20px;
    letter-spacing: 0.4px;
}

.biz p, .hizmet p, .gelecek p {
    text-align: justify;
    text-indent: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Küçük kategori etiketi (isteğe bağlı) */
.biz h2::before,
.hizmet h2::before,
.gelecek h2::before {
    content: "Faaliyet Alanı";
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7b8b7b;
    margin-bottom: 4px;
    font-weight: 600;
    display: block;
}

/* MAKALE ALANI */
.article {
    width: 90%;
    margin: 50px auto;
}

.yazi {
    width: 420px;
    max-width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 10px;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid #ccc;
}

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

.yazi h3 {
    font-size: 16px;
    text-align: left;
}

.article h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.article p {
    text-indent: 20px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ---- FOOTER – MODERN KURUMSAL VERSİYON ---- */

.footer {
    width: 100%;
    background: radial-gradient(circle at top left, #263238 0, #111 55%);
    color: #ECEFF1;
    padding: 40px 20px 28px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer > div {
    max-width: 1200px;
    margin: 0 auto;
}

/* İç kolonlar için flex yapısı */
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 26px;
}

/* Üç ana blok: adres, sosyal, tel */
.adres,
.social,
.tel {
    flex: 1 1 260px;
    min-width: 220px;
}

/* Başlıklar */
.adres h2,
.social h2,
.tel h2 {
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #FFCA28;
}

/* Adres metni */

.adres {
    text-align: center;
}

.adres p {
    margin: 2px auto;
    max-width: 480px;         
    font-size: 15px;
    line-height: 1.4;
}

/* Merkez:, Depo:, Tarım Market: kısmını sütun gibi yap */
.adres p span {
    display: inline-block;
    min-width: 110px;          /* Etiketler aynı hizada */
    text-align: right;
    font-weight: bold;
}


/* Sosyal ikonlar */
.social .ikon {
    font-size: 30px;
    margin-top: 4px;
}

.social .ikon a {
    color: #ECEFF1;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.2s ease;
}

.social .ikon a:hover {
    color: #FFCA28;
    transform: translateY(-1px);
}

/* Telefon / iletişim */
.tel p {
    font-size: 13px;
    margin-bottom: 6px;
}

.tel i {
    font-size: 24px;
    margin-bottom: 4px;
}

.tel a {
    text-decoration: none;
    color: #ECEFF1;
}

/* HARİTA (iframe) boyutu */
.adres iframe {
    width: 100%;
    max-width: 260px;
    height: 180px;
    border-radius: 8px;
    border: none;
    margin-top: 8px;
}

/* Alt imza */
.design {
    width: 100%;
    text-align: center;
    font-size: 7px;
    padding: 10px 0 16px 0;
    background-color: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.design a {
    text-decoration: none;
    color: #B0BEC5;
}

.design a:hover {
    color: #FFCA28;
}

/* ANİMASYON */
@keyframes slide-right {
  from {
    margin-left: -500px;
    opacity: 0;
  }
  to {
    margin-left: 0;
    opacity: 1;
  }
}
/* ADRES BLOĞU – MOBİLDE KLASİK, MASAÜSTÜNDE HİZALI */





/* RESPONSIVE KIRILIMLAR */

@media screen and (max-width: 1024px) {
    .header {
        height: 500px;
    }

    .info {
        width: 95%;
    }

    .adres, .social, .tel {
        width: 33%;
        display: inline-block;
    }
    .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .header {
        height: 420px;
        min-height: 450px;
    }

    .header h2 {
        font-size: 28px;
        bottom: 20%;
    }

    .container {
        flex-direction: column;
        align-items: center;
         grid-template-columns: 1fr;
    }

    .adres, .social, .tel {
        width: 100%;
        text-align: center;
    }

    .yazi {
        flex-direction: row;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    @media screen and (max-width: 480px) {
    .topbar {
        height: 80px;
        padding: 0 16px;
    }

    .logo img {
        height: 56px;
    }

    .logo h2 {
        font-size: 17px;
        padding-left: 8px;
    }

    .logo h2 span {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .menukon {
        top: 18px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}


    .header {
        height: 340px;
          min-height: 360px;
    }

    .header h2 {
        font-size: 22px;
        left: 7%;
        bottom: 16%;
        max-width: 260px;
    }

    .yazi {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .yazi h3 {
        padding-top: 8px;
        text-align: center;
    }

    .menukon {
        top: 24px;
        right: 10px;
    }

    .menukon i {
        font-size: 30px;
    }

    .adres, .social, .tel {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    .logo h2 {
        display: none;
    }

    .header h2 {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .footer {
        padding: 32px 16px 24px 16px;
    }

    .adres h2,
    .social h2,
    .tel h2 {
        text-align: left;
    }
}


/* MENÜ AÇILINCA OVERLAY AKTİF */
.overlay.active {
    opacity: 1;
    pointer-events: all;
}
/* === KAMPANYA SLIDER - KESİN ÇALIŞAN BLOK (EN SONDA KALSIN) === */

.campaigns {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 40px auto;
    padding: 0 10px;
    text-align: center;
}

.campaigns h2 {
    font-size: 22px;
    color: #1b5e20;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.campaign-sub {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.campaign-slider {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* SLIDE temel görünüm */
.campaign-slide {
    display: none !important;          /* hepsini gizle */
    align-items: stretch;
    flex-wrap: wrap;
}

.campaign-slide.active {
    display: flex !important;          /* sadece aktif olanı göster */
}

.campaign-slide img {
    width: 100%;
    max-width: 60%;
    object-fit: cover;
    flex: 1 1 60%;
    display: block;
}

.campaign-caption {
    flex: 1 1 40%;
    padding: 24px 28px;
    text-align: left;
    background: linear-gradient(135deg, #f9fbe7, #ffffff);
}

.campaign-caption h3 {
    font-size: 20px;
    color: #2e7d32;
    margin-bottom: 10px;
}

.campaign-caption p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.campaign-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    background: #2e7d32;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.campaign-cta i {
    font-size: 14px;
}

/* Ok butonları */
.campaign-prev,
.campaign-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    transition: 0.2s;
}

.campaign-prev:hover,
.campaign-next:hover {
    background: rgba(0,0,0,0.55);
}

.campaign-prev { left: 8px; }
.campaign-next { right: 8px; }

/* Noktalar */
.campaign-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.campaign-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}

.campaign-dots span.active {
    background: #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .campaign-slide {
        flex-direction: column;
    }

    .campaign-slide img {
        max-width: 100%;
        height: 220px;
    }

    .campaign-caption {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .campaigns {
        margin-top: 20px;
    }

    .campaign-caption h3 {
        font-size: 16px;
    }

    .campaign-caption p {
        font-size: 13px;
    }
}
/* WhatsApp İletişim - Footer */
/* Footer WhatsApp ikonu */
.whatsapp-icon {
    color: #25D366;
    font-size: 40px;
    margin-top: 8px;
    transition: 0.2s ease;
}

.whatsapp-icon:hover {
    color: #1ebe57;
    transform: scale(1.1);
}
/* Kampanya butonunda alt çizgiyi kaldır */
.campaign-cta,
.campaign-cta:link,
.campaign-cta:visited,
.campaign-cta:hover,
.campaign-cta:active {
    text-decoration: none;
}