html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
  --farm-green: #2f6b3a;
  --farm-green-dark: #1c4222;
  --farm-cream: #fbf6ea;
  --farm-gold: #d99a2b;
}

/* Anasayfa: hero bölümü */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--farm-green) 0%, var(--farm-green-dark) 100%);
  border-radius: 1.25rem;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.14) 0, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.10) 0, transparent 40%);
  pointer-events: none;
}

.hero-section .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Kategori kartları */
.category-card {
  border: none;
  border-radius: 1rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
  color: inherit;
}

.category-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.75rem;
}

/* Özellik bandı */
.feature-band {
  background: var(--farm-cream);
  border-radius: 1.25rem;
}

.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(47, 107, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

/* Alt çağrı bandı */
.cta-band {
  background: linear-gradient(135deg, var(--farm-gold), #b9791c);
  border-radius: 1.25rem;
  color: #fff;
}