/* Yeşil Hat — tek sayfa tanıtım */

:root {
  --color-bg: #f6f9f5;
  --color-surface: #ffffff;
  --color-text: #1a2e1f;
  --color-muted: #4a6350;
  --color-accent: #2d6a4f;
  --color-accent-dark: #1b4332;
  --color-leaf: #52b788;
  --color-sand: #e9f5e0;
  --font: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(27, 67, 50, 0.12);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-dark);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-leaf), var(--color-accent));
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.35);
}

.logo-text span {
  color: var(--color-accent);
  font-weight: 600;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--color-accent);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.35);
}

.nav-phone:hover {
  color: #fff !important;
  filter: brightness(1.06);
}

.nav-phone--mobile {
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0.35rem;
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
}

@media (min-width: 768px) {
  .nav-phone--mobile {
    display: none;
  }
}

.mobile-nav-call {
  font-weight: 700;
  color: var(--color-accent-dark) !important;
  background: var(--color-sand);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-accent-dark);
  margin-inline: auto;
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
}

.mobile-nav a {
  padding: 0.75rem 0.5rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: var(--color-sand);
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(45, 106, 79, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent-dark);
  border-color: rgba(45, 106, 79, 0.35);
}

.btn--ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-accent);
}

.btn--small {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
}

.btn--xl {
  padding: 1rem 1.75rem;
  font-size: 1.15rem;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(105deg, rgba(246, 249, 245, 0.92) 0%, rgba(246, 249, 245, 0.55) 42%, rgba(246, 249, 245, 0.25) 100%),
    url("https://images.unsplash.com/photo-1598902108854-10e335adac99?w=1920&h=1080&fit=crop&q=80&auto=format");
  background-size: cover;
  background-position: center 55%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.85rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.hero h1 strong {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.hero-stats strong {
  display: block;
  color: var(--color-accent-dark);
  font-size: 1.1rem;
}

/* Sections */

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--alt {
  background: var(--color-surface);
  box-shadow: inset 0 1px 0 rgba(45, 106, 79, 0.06);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--color-muted);
}

/* Cards */

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(45, 106, 79, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Gallery */

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.gallery--slider {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.25rem;
  padding-bottom: 0.25rem;
}

.gallery--slider::-webkit-scrollbar {
  height: 10px;
}

.gallery--slider::-webkit-scrollbar-thumb {
  background: rgba(45, 106, 79, 0.35);
  border-radius: 999px;
}

@media (max-width: 1000px) {
  .gallery--slider .gallery-item {
    flex-basis: 36%;
  }
}

@media (max-width: 700px) {
  .gallery--slider .gallery-item {
    flex-basis: 74%;
  }
}

.gallery-item {
  flex: 0 0 28%;
  min-width: 220px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 8px 30px rgba(27, 67, 50, 0.08);
  scroll-snap-align: start;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-item video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.gallery-video-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: minmax(40px, 72px) 1fr minmax(40px, 72px);
  align-items: center;
  padding: 1rem;
  background: rgba(7, 17, 13, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content-wrap {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.lightbox-content {
  width: min(94vw, 1120px);
  max-height: 78vh;
  display: grid;
  place-items: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-nav {
  width: 42px;
  height: 52px;
  border-radius: 10px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  justify-self: start;
}

.lightbox-next {
  justify-self: end;
}

@media (max-width: 700px) {
  .lightbox {
    grid-template-columns: 1fr;
    padding: 0.6rem;
    place-items: center;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 42px;
    font-size: 1.6rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
  }

  .lightbox-prev {
    left: 0.45rem;
  }

  .lightbox-next {
    right: 0.45rem;
  }

  .lightbox-content {
    width: min(88vw, 520px);
    max-height: 72vh;
  }

  .lightbox-content img,
  .lightbox-content video {
    max-height: 72vh;
  }
}

/* Split / SEO block */

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.split-text h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.split-text p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.25);
}

.split-aside blockquote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(145deg, var(--color-sand), #fff);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: var(--shadow);
}

.split-aside p {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-accent-dark);
  line-height: 1.5;
}

/* Fruit list */

.fruit-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .fruit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 940px) {
  .fruit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fruit-list p {
  margin: 0;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  background: var(--color-surface);
  border: 1px solid rgba(45, 106, 79, 0.14);
  color: var(--color-text);
  font-weight: 500;
}

/* Contact / CTA */

.cta-section {
  background: linear-gradient(160deg, var(--color-accent-dark) 0%, #0f291f 100%);
  color: #e8f5e9;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.cta-section .section-sub {
  color: rgba(232, 245, 233, 0.85);
}

.cta-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.cta-copy--center {
  text-align: center;
}

.cta-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: #fff;
}

.contact-block {
  font-style: normal;
  margin-top: 1.5rem;
}

.contact-block--prominent {
  margin-top: 1.75rem;
}

.contact-tel-row {
  margin: 0 0 1.25rem !important;
}

.contact-block p {
  margin: 0 0 0.85rem;
}

.contact-block .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.15rem;
}

.cta-section a {
  color: #b7e4c7;
  font-weight: 600;
}

.cta-section a:hover {
  color: #fff;
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.footer-inner p {
  margin: 0.35rem 0;
}

.footer-seo {
  font-size: 0.78rem;
  opacity: 0.75;
}
