/* Genel Reset ve Temel */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f5f3e7; /* Açık krem */
  color: #5a7d00; /* Koyu yeşil */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* HEADER STYLES */
header {
  background-color: #8db600; /* Antep fıstığı yeşili */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

/* Menü */
.menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-left: 40px;
  flex-grow: 1;
  justify-content: center;
}

.menu li a {
  color: #f5f3e7; /* açık krem */
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  background-color: #5a7d00;
  color: #fff;
  box-shadow: 0 0 8px rgba(90, 125, 0, 0.7);
}

/* Telefon Butonu */
.btn-phone {
  background-color: #fff; /* beyaz */
  color: #5a7d00; /* Antep fıstığı yeşili */
  padding: 10px 22px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(90, 125, 0, 0.4);
  border: 2px solid #5a7d00;
  transition: background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.btn-phone:hover {
  background-color: #5a7d00;
  color: #fff;
  box-shadow: 0 6px 18px rgba(90, 125, 0, 0.8);
}
  main {
    max-width: 960px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
  }
  h1 {
    margin-bottom: 20px;
    color: #5a7d00;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }
  th, td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: left;
  }
  th {
    background-color: #5a7d00;
    color: white;
  }
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }

/* Responsive */
@media (max-width: 992px) {
  .menu {
    gap: 25px;
    margin-left: 25px;
  }

  .btn-phone {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .menu {
    order: 2;
    flex-basis: 100%;
    justify-content: center;
    gap: 20px;
  }

  .btn-phone {
    order: 1;
    flex-basis: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    color: #fff;
    background-color: #5a7d00;
  }

  .btn-phone:hover {
    background-color: #4a6b00;
  }
}

/* HERO */
.hero {
  position: relative;
  background-image: url('images/1.jpeg');
  background-size: cover;
  background-position: center;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(141, 182, 0, 0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h2 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.4;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn {
  background-color: #5a7d00;
  color: #f5f3e7;
  padding: 12px 35px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 10px rgba(90, 125, 0, 0.5);
}

.btn:hover {
  background-color: #4a6b00;
  box-shadow: 0 7px 14px rgba(74, 107, 0, 0.7);
}

/* Ürün Kartları */
.highlights {
  padding: 60px 0;
  background-color: #fff;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #f5f3e7;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(141 182 0 / 0.2);
  width: 320px;
  height: 430px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgb(141 182 0 / 0.5);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #5a7d00;
}

.card p {
  font-weight: 400;
  font-size: 1rem;
  color: #666666;
  flex-grow: 1;
}

/* FOOTER */
footer {
  background-color: #8db600;
  padding: 50px 0 20px;
  color: #f5f3e7;
}

.footer-box {
  background-color: #5a7d00;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 20px rgba(74, 107, 0, 0.5);
}

.footer-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-contact,
.footer-links-col {
  flex: 1 1 300px;
}

footer h3 {
  color: #f5f3e7;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #f5f3e7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d9eca7;
}

/* Instagram linki footer içinde özel renk */
.footer-contact a[href*="instagram.com"] {
  color: #d9eca7 !important; /* Açık yeşil */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a[href*="instagram.com"]:hover {
  color: #f5f3e7 !important; /* Krem rengine hover */
}

/* Footer linklerin genel rengi */
.footer-contact a {
  color: #f5f3e7; /* eski krem rengi */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #d9eca7; /* açık yeşil hover */
}

/* Telefon ve WhatsApp butonları footer içinde */
/* Beyaz arka plan, yeşil yazı */
.footer-contact .btn-whatsapp,
.footer-contact a[href^="tel:"] {
  background-color: #fff !important;
  color: #5a7d00 !important;
  border: 2px solid #5a7d00;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(90, 125, 0, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 12px;
}

.footer-contact .btn-whatsapp:hover,
.footer-contact a[href^="tel:"]:hover {
  background-color: #5a7d00 !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(90, 125, 0, 0.7);
}

/* Footer altındaki kopya metin */
.copy {
  text-align: center;
  font-size: 0.9rem;
  color: #d9eca7;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .menu li {
    margin-bottom: 10px;
  }

  .btn-phone {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Hakkımızda Hero bölümü */
.about-hero {
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #E2EDC5;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: inset 0 0 0 1000px rgba(90, 125, 0, 0.6); /* üstüne yarı şeffaf yeşil katman */
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-hero-content p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hakkımızda içerik bölümleri */
.about-story,
.about-values {
  margin: 60px auto;
  max-width: 900px;
  font-family: 'Poppins', sans-serif;
  color: #5a7d00; /* antep fıstığı yeşili */
  line-height: 1.7;
}

.about-story h2,
.about-values h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 3px solid #5a7d00;
  padding-bottom: 8px;
}

.about-values ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.about-values ul li {
  background: #d9eca7;
  margin-bottom: 12px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  color: #405000;
}

.about-values ul li strong {
  color: #5a7d00;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }
  .about-hero-content p {
    font-size: 1rem;
    padding: 0 15px;
  }
  .about-story,
  .about-values {
    margin: 40px 20px;
  }
}

/* Menü düzenini koru */
header, .nav, .menu {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
}

/* Menü link renkleri ve hover */
.menu li a {
  color: #f5f3e7 !important; /* krem */
  font-weight: 600;
  text-decoration: none;
}

.menu li a:hover,
.menu li a.active {
  color: #d9eca7 !important; /* açık yeşil */
}

/* Footer linkleri kesin renk */
footer a, 
.footer-link, 
.footer-contact a {
  color: #f5f3e7 !important; /* krem rengi */
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: color 0.3s ease;
}

footer a:hover, 
.footer-link:hover, 
.footer-contact a:hover {
  color: #d9eca7 !important; /* açık yeşil */
}

/* Footer instagram link özel */
.footer-contact a[href*="instagram.com"] {
  color: #d9eca7 !important;
}

.footer-contact a[href*="instagram.com"]:hover {
  color: #f5f3e7 !important;
}

