/* Genel body ve site-wrapper */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #d6f0c0;
  color: #000;
  padding-top: 70px; /* sabit header için */
}

.site-wrapper {
  max-width: 1200px; /* siteyi kompakt yapar */
  margin: 0 auto;
  border: 5px solid #7fc37f; /* çerçeve rengi */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

/* Header */
header {
  background: #7fc37f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  gap: 650px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .logo {
  width: 300px;
  max-width: 72%;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; /* linkleri sola yasla */
  gap: 15px;                   /* linkler arası boşluk */
  margin: 0;                    /* margin sıfırla */
  padding-left: 0;              /* sol padding sıfırla, logo etkilenmez */
}

header nav ul li a {
  margin-left: 10px;            /* her linki biraz sola kaydır */
}

nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: black;      
  font-weight: 400;        /* normal kalınlık */
  text-decoration: underline; /* altı çizili */
  text-decoration-color: black; /* alt çizgi rengi (isteğe göre) */
  text-decoration-thickness: 1px; /* alt çizgi kalınlığı */
  color: black;            /* yazı rengi */
  letter-spacing: 0.5px;   /* harfler arası boşluk */
  text-transform: none;    /* büyük harf iptal */
}

nav ul li a:hover {
  color: black;
}

/* Dil seçimi gizlendi */
#language-select {
  display: none;
}

/* Home */
.home-bg {
  position: relative;
  width: 100%;
  height: 100vh; /* tam ekran yüksekliği */
  overflow: hidden;
}

.home-bg .home-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* arkaplanı tüm ekran kaplasın */
  object-position: center; /* objeyi ortala */
}

.home-text {
  position: absolute;
  top: 70%; /* yukarıya çek */
  left: 4%; /* sola kaydır */
  transform: translate(0, -50%);
  background: rgba(214, 240, 192, 0.9);
  padding: 20px 30px;
  border-radius: 40px;
  max-width: 350px;
  text-align: left;
}

/* About */
.about {
  display:flex;
  padding: 20px;
  gap: 20px;
  background:#d6f0c0;
}
.about-left img {
  width: 300px;
  margin-top: 50px;
}

/* ------------------- Services ------------------- */
.services {
  padding: 40px 50px;
  background:#d6f0c0;
}

.service-container {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.service-container::-webkit-scrollbar {
  display: none;
}

.service {
  flex: 0 0 auto;
  min-width: 350px;
  max-width: 300px;
  background: #d6f0c0;
  border: 1px solid #5fa35f;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}

.service:hover {
  transform: scale(1.03);
}

.service img {
  width:100%;
  margin-bottom:15px;
}

/* Cultivating */
.cultivating {
  display:flex;
  gap:20px;
  padding: 30px 50px;
  background:#d6f0c0;
}
.cultivating-left {
  flex:1;
}
.cultivating-left h2 {
  font-weight:bold;
  font-size:30px;
  margin-top: 90px;
  margin-bottom:20px;
}
.cultivating-left p {
  font-size:18px;
}
.cultivating-right {
  flex:1.5;
}
.cultivating-right img {
  width:100%;
  max-width:700px;
  height:auto;
  object-fit:cover;
}

/* Contact */
.contact {
  display:flex;
  gap:20px;
  padding:30px 50px;
  background:#d6f0c0;
}
.contact-left {
  flex:1;
}
.contact-left h2 {
  font-size:24px;
  font-weight:bold;
  margin-bottom:10px;
}
.contact-left p {
  font-size:14px;
  margin-bottom:15px;
}
.contact-left form input,
.contact-left form textarea {
  display:block;
  width:100%;
  margin-bottom:10px;
  padding:10px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
}
.contact-left button {
  padding:10px 20px;
  background:#5fa35f;
  color:#fff;
  border:none;
  cursor:pointer;
  border-radius:6px;
}
.contact-right {
  flex:1;
  display:flex;
  justify-content:flex-end;
}
.contact-right iframe {
  width:100%;
  max-width:500px;
  height:350px;
  border:none;
  border-radius:10px;
}

/* Footer */
footer {
  background:#7fc37f;
  color:#000;
  text-align:center;
  padding:10px;
  font-weight:bold;
}
/* ------------------- Mobil Uyumlu Ayarlar ------------------- */
@media screen and (max-width: 768px) {

  body {
    padding-top: 120px; /* header + gap mobilde */
  }

  /* Header ve logo - mobilde büyütme ve hizalama */
  header {
		display: flex;                 /* Flex olmasını sağla */
    flex-direction: row; /* logo ve menü yan yana */
    justify-content: flex-start;   /* Sola yasla */
    gap: 10px;                     /* Linkler arası boşluk */
    padding-left: 15px;            /* Kenardan boşluk */
    gap: 0; /* gereksiz boşluk kaldırıldı */
  }

  header .logo {
    width: 180px; /* logo büyütüldü */
    height: auto; /* orantıyı korur */
}

  nav ul {
  flex-direction: row;  
  gap: 10px;               
  align-items: center;     
  justify-content: flex-start; /* Sola hizala */
  margin: 0;
  padding-left: 4px;          /* Hafif iç boşluk, kenara yapışmasın */
}
  /* Navbar linkleri – mobilde ince ve küçük */
  header nav ul li a {
    font-size: 12px;       /* yazı boyutu */
    font-weight: 400;      /* normal kalınlık, bold kaldırıldı */
    color: black;
    letter-spacing: 0.5px; /* harf arası boşluk */
    text-transform: none;  /* otomatik büyük harf varsa iptal eder */
  }


  /* Home */
.home-bg {
  height: 60vh;
  justify-content: flex-start; /* metin sola hizalı */
  display: flex;
  align-items: center; /* dikey ortalama */
  position: relative;
}

.home-bg .home-image {
  object-fit: cover; /* arka plan ekranı kaplar */
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-text {
  position: relative;
  top: 90px;            /* kutuyu aşağıya indirir */
  left: 4%; /* sola kaydır */
  transform: translateY(0); /* dikey ortalama için translate kaldırıldı */
  max-width: 28%;
  text-align: left;
  font-size: 5px;

  /* Çerçeve için ekleme */
  padding: 8px 14px;        /* iç boşluk (çerçevenin kalınlığı küçüldü) */
  border: none;         /* siyah çerçeve tamamen kaldırıldı */
  border-radius: 6px;   /* köşeler hafif yuvarlak, tam köşeli istiyorsan 0 yap */
  display: inline-block;
}

.home-text h2 {
  font-size: 7px;  /* başlık küçültüldü */
  line-height: 1.2;
  margin: 0; /* çerçevenin içinde düzgün oturması için */
}

.home-text p {
  font-size: 7px;  /* alt yazı küçültüldü */
}

/* Başlıklar mobilde daha küçük ve ince */
.cultivating-left h2,
.contact-left h2,
.service h3 {
  font-size: 20px;
  font-weight: 600;
}

  /* About, Services, Cultivating, Contact mobil düzen */
  .about, 
  .service-container, 
  .cultivating, 
  .contact {
    flex-direction: column;
    gap: 15px;
  }

  @media screen and (max-width: 768px) {
  .service-container {
    gap: 20px;
    flex-wrap: wrap;            
    justify-content: flex-start; /* Sola hizala */
    padding-left: 10px;   /* sol tarafta boşluk */
  padding-right: 10px;  /* sağ tarafta boşluk */

  .service {
    width: 90%;                  
    max-width: 350px;            
    min-width: unset;            
    margin-bottom: 20px;         
     margin-left: 1;
    margin-right: 1;
}
}
}

  /* Resimler ve harita mobil uyumu */
  .cultivating-right img,
  .contact-right iframe {
    max-width: 100%;
    height: auto;
  }
}
