/* =====================================================
   ANKA TARIM - Temel HTML / CSS
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: #1a9641; color: #fff; }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ==================== HEADER ==================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #000; transition: background-color .3s;
}
.header--scrolled { background: rgba(0,0,0,.95); backdrop-filter: blur(6px); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}
.logo img { height: 48px; width: auto; object-fit: contain; }

.nav { display: flex; gap: 40px; }
.nav a {
  color: #fff; font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: #f4c81f; }

.search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px;
  padding: 8px 16px; width: 260px;
}
.search__icon { width: 16px; height: 16px; color: #6b7280; flex-shrink: 0; }
.search input {
  border: 0; outline: none; font-size: 14px; background: transparent;
  width: 100%; font-family: inherit;
}
.search input::placeholder { color: #6b7280; }

.burger {
  display: none; background: none; border: 0;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: #fff; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 680px;
  padding-top: 80px;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 900px;
  padding-top: 40px; padding-bottom: 40px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero h1 span { display: inline-block; margin-top: 8px; }
.hero__lead { margin: 32px 0 12px; font-size: 18px; font-weight: 500; }
.hero__desc { margin: 0 auto; max-width: 680px; font-size: 15px; opacity: .9; }

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 14px; font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s;
  font-family: inherit;
}
.btn--outline {
  margin-top: 40px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline:hover { background: #fff; color: #000; }
.btn--solid {
  background: #1a9641; color: #fff; border: 0;
  margin-top: 16px;
}
.btn--solid:hover { background: #16803a; }

/* ==================== FEATURES ==================== */
.features {
  padding: 64px 0;
  border-bottom: 1px solid #f0f0f0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.feature__num {
  color: #1a9641;
  font-weight: 800;
  font-size: 36px;
  margin: 0;
}
.feature__title {
  display: block;
  margin: 20px 0 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #d1d5db;
  font-size: 17px;
  font-weight: 500;
  color: #1f2937;
  transition: border-color .3s, color .3s;
}
.feature:hover .feature__title { border-color: #1a9641; }
.feature__link { text-decoration: underline; text-underline-offset: 4px; }
.feature__link:hover { color: #1a9641; }

/* ==================== ABOUT ==================== */
.about { padding: 100px 0; background: #f7f7f7; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.about__subtitle {
  color: #1a9641;
  font-weight: 600;
  font-size: 20px;
  margin: 16px 0 32px;
}
.about__text p {
  color: #374151;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.about__image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: transform .7s;
}
.about__image:hover img { transform: scale(1.04); }

/* ==================== SECTION TITLE ==================== */
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 56px;
  letter-spacing: -0.02em;
}

/* ==================== GALLERY ==================== */
.gallery { padding: 100px 0; }
.gallery__grid {
  column-count: 4; column-gap: 16px;
}
.gallery__item {
  margin-bottom: 16px;
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  border-radius: 2px;
}
.gallery__item img {
  width: 100%; height: auto;
  transition: transform .7s;
}
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background-color .3s;
}
.gallery__item:hover::after { background: rgba(0,0,0,.25); }

/* ==================== WHY ==================== */
.why { padding: 100px 0; background: #f7f7f7; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.why__num {
  color: #1a9641;
  font-weight: 800;
  font-size: 56px;
  margin: 0;
  line-height: 1;
}
.why__item h3 {
  font-size: 22px; font-weight: 800;
  color: #111827; margin: 20px 0 16px;
  line-height: 1.3;
}
.why__item p {
  color: #374151; font-size: 15px; line-height: 1.7; margin: 0;
}

/* ==================== SEASONAL PRODUCTS ==================== */
.seasonal { padding: 100px 0; }
.seasonal__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.product { cursor: pointer; }
.product__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f4f6;
}
.product__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s;
}
.product:hover .product__img img { transform: scale(1.1); }
.product h3 {
  margin: 16px 0 4px;
  text-align: center;
  font-size: 18px; font-weight: 700;
  color: #111827;
  transition: color .2s;
}
.product:hover h3 { color: #1a9641; }
.product p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

/* ==================== CONTACT ==================== */
.contact { padding: 100px 0; background: #f7f7f7; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__image {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.contact__image img {
  width: 100%; height: 460px; object-fit: cover;
  transition: transform .7s;
}
.contact__image:hover img { transform: scale(1.04); }
.contact__info { padding-top: 16px; }
.contact__block { margin-bottom: 36px; }
.contact__heading {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.contact__heading svg { width: 20px; height: 20px; color: #1a9641; }
.contact__heading h3 {
  font-size: 20px; font-weight: 700; color: #111827; margin: 0;
}
.contact__block p {
  margin: 4px 0; color: #374151; font-size: 15px;
}
.contact__block a { transition: color .2s; }
.contact__block a:hover { color: #1a9641; }

/* ==================== FOOTER ==================== */
.footer { background: #000; color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 56px 24px 32px;
  max-width: 1300px; margin: 0 auto;
}
.footer__logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer__text {
  color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6;
  margin: 0; max-width: 320px;
}
.footer h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li {
  color: rgba(255,255,255,.7); font-size: 14px;
  margin-bottom: 8px;
}
.footer ul li a { transition: color .2s; }
.footer ul li a:hover { color: #f4c81f; }
.footer__bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(255,255,255,.5);
  max-width: 1300px; margin: 0 auto;
}
.footer__bottom p { margin: 0; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .nav, .search { display: none; }
  .burger { display: flex; }
  .header__inner { justify-content: space-between; }
  .nav--open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 80px; left: 0; right: 0;
    background: #000; padding: 24px; border-top: 1px solid rgba(255,255,255,.1);
  }
  .features__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { height: 480px; }
  .gallery__grid { column-count: 3; }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .seasonal__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .logo img { height: 40px; }
  .hero { min-height: 600px; }
  .features { padding: 48px 0; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about, .gallery, .why, .seasonal, .contact { padding: 64px 0; }
  .gallery__grid { column-count: 2; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; }
  .seasonal__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 24px; }
  .contact__image img { height: 320px; }
}
