:root {
  --primary: #d69824; /* Golden agricultural tone */
  --primary-dark: #b57c15;
  --secondary: #2f402c; /* Deep forest green */
  --bg-color: #fcfcfc;
  --bg-alt: #f4f6f4;
  --text-dark: #1a2421;
  --text-gray: #5e6b66;
  --text-light: #ffffff;
  --white: #ffffff;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(47, 64, 44, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, .playfair {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Background Animated Blobs */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}
.blob-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214,152,36,0.3) 0%, rgba(214,152,36,0) 70%);
}
.blob-2 {
  top: 40%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(47,64,44,0.2) 0%, rgba(47,64,44,0) 70%);
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.1); }
}

/* Typography & Layout Utility Structure */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center { text-align: center; }
.highlight { color: var(--primary); position: relative; }

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(214, 152, 36, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(214, 152, 36, 0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  padding: 12px 24px;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 5%;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .logo-text, .navbar.scrolled .nav-links a {
  color: var(--secondary) !important;
}

.logo-text {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.logo-highlight {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--primary) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger .line {
  background-color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  transform: scale(1.05);
  animation: subtleZoom 20s infinite alternate linear;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(47, 64, 44, 0.7) 0%, rgba(20, 20, 20, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 600;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--bg-color);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
}
.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(214, 152, 36, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-text {
  font-weight: 600;
  color: var(--secondary);
}

.about-image-wrapper {
  position: relative;
  height: 500px;
  border-radius: 30px;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* Products Section */
.products {
  padding: 100px 0;
  background: var(--bg-alt);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-img-container {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}
.product-badge.premium {
  background: var(--secondary);
}

.product-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.product-desc {
  color: var(--text-gray);
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

/* CTA */
.cta {
  padding: 100px 0;
  background: var(--secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(214,152,36,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  color: var(--white);
}

/* Footer */
footer {
  background: #111a15;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  margin-top: 20px;
  max-width: 300px;
}
.footer-links ul {
  list-style: none;
  margin-top: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-contact p {
  margin-top: 15px;
}
.footer-contact h4, .footer-links h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-load {
  animation: contentFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes contentFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .about-container, .product-grid, .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100vw;
    position: relative;
  }

  /* Masaüstündeki ışıltılı arka planları (blobs) mobilde küçük ve zarif gösteriyoruz */
  .blob {
    display: block !important;
    width: 250px !important;
    height: 250px !important;
    filter: blur(60px) !important;
  }
  .blob-1 { top: -50px !important; right: -100px !important; }
  .blob-2 { top: 35% !important; left: -100px !important; }

  /* Menüde Şık Cam Efekti */
  .nav-links {
    position: fixed;
    top: 0; left: 100%;
    width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links a {
    color: var(--text-dark) !important;
    font-size: 1.5rem;
  }
  .hamburger {
    display: block;
    z-index: 1001;
  }
  .hamburger.active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--text-dark); }
  .hamburger.active .line:nth-child(2) { opacity: 0; }
  .hamburger.active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--text-dark); }
  
  /* Mobil Tipografi ve Düzeni Gösterişli Hale Getirme */
  .hero-title {
    font-size: 2.8rem;
    text-shadow: 0 8px 25px rgba(0,0,0,0.5);
  }
  .hero-desc {
    font-size: 1.1rem;
    padding: 0 10px;
    margin-bottom: 25px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .container {
    padding: 0 20px;
  }
  .about, .products, .cta {
    padding: 60px 0;
  }
  .about-container {
    gap: 30px;
  }
  .about-text p {
    font-size: 1.05rem;
  }
  .about-image-wrapper {
    height: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(47, 64, 44, 0.25);
  }
  .product-img-container {
    height: 220px;
  }
  .product-title {
    font-size: 1.5rem;
  }
  .product-desc {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  /* Özellik Kartları: Soldan İkonlu Lüks Görünüm */
  .features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  .feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  .feature-icon {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 2.2rem;
  }

  /* Ürün Kartlarında Premium Cam Efekti (Glassmorphism) ve Sıcak Gölgeler */
  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 20px;
    padding-top: 10px;
    width: 100%;
  }
  .product-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 50px rgba(214, 152, 36, 0.15); /* Altın rengi yumuşak gölge */
    margin: 0 auto;
    width: 100%;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .btn {
    padding: 14px 20px;
    font-size: 1.05rem;
    width: 100%;
    margin-top: 10px;
  }
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer {
    padding: 50px 0 20px;
  }
}
