/* =========================================================
   ABOUT BG WRAPPER
   Dalgalı yeşil arka plan — header + hero bu div'in üstünde durur
   Overlap yok, normal belge akışı
========================================================= */

.about-bg-wrapper {
  position: relative;
  width: 100%;
  background-image: url('../images/about-header-bg1.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  background-color: #F5FCF9;
}

/* Sağdaki limon görseli — wrapper'a göre absolute */
.about-header-lemons {
    position: absolute;
    right: 6%;
    top: 20%;
    width: 450px;
    height: auto;
    z-index: 3;
    pointer-events: none;
    animation: lemonFloat 3.2s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
}

@keyframes lemonFloat {
  0%   { transform: translateY(0px)   rotate(0deg); }
  30%  { transform: translateY(-16px) rotate(4deg); }
  65%  { transform: translateY(-8px)  rotate(-3deg); }
  100% { transform: translateY(0px)   rotate(0deg); }
}

/* =========================================================
   HEADER — Sadece nav çubuğu
========================================================= */

.about-header {
  position: relative;
  z-index: 10;
  width: 100%;
}


.about-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Logo — doğal boyut */
.about-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100%;
}

.about-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
   padding-top: 40px;
  padding-bottom: 20px;
}

.about-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}

.about-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #3B896A;
  transition: width 0.2s ease-out;
}

.about-nav a.active::after,
.about-nav a:hover::after {
  width: 100%;
}

/* =========================================================
   HERO SECTION — Header altında, tam ayrı section
========================================================= */

.about-hero-section {
  position: relative;
  z-index: 5;
  margin-top: 20rem;
}

.about-hero-content {
  max-width: 100%;
}

/* "BİZİ DAHA YAKINDAN TANIYIN" */
.about-eyebrow {
    font-size: 30px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #01673D;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.4;
}

/* "HAKKIMIZDA" */
.about-title {
  font-size: 55px;
  color: #27272F;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

/* Dekoratif yaprak çizgisi */
.about-decor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.about-decor img {
  width: auto;
  height: auto;
}

/* Açıklama paragrafı */
.about-desc {
  color: #8D8D99;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 900px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
  .about-header-lemons {
    width: 360px;
    right: 4%;
    top: 18%;
  }

  .about-hero-section {
    margin-top: 16rem;
  }

  .about-eyebrow {
    font-size: 24px;
  }

  .about-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .about-header-lemons {
    width: 280px;
    right: 2%;
    top: 20%;
  }

  .about-hero-section {
    margin-top: 8rem;
  }

  .about-eyebrow {
    font-size: 20px;
    letter-spacing: 0.3em;
  }

  .about-title {
    font-size: 42px;
  }

  .about-desc {
    font-size: 14.5px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Limon küçültülüp kenara çekilir */
  .about-header-lemons {
    width: 200px;
    right: 0;
    top: 18%;
  }

  .about-hero-section {
    margin-top: 4rem;
  }

  .about-eyebrow {
    font-size: 15px;
    letter-spacing: 0.25em;
  }

  .about-title {
    font-size: 36px;
  }

  .about-nav ul {
    gap: 24px;
    padding-top: 28px;
  }

  .about-nav a {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .about-header-lemons {
    width: 130px;
    right: 0;
    top: 15%;
  }

  .about-hero-section {
    margin-top: 3rem;
  }

  .about-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .about-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .about-desc {
    font-size: 14px;
    line-height: 1.72;
  }

  .about-nav ul {
    gap: 16px;
    padding-top: 20px;
  }

  .about-nav a {
    font-size: 14px;
  }

  .about-decor img {
    width: 36px;
  }
}

@media (max-width: 400px) {
  .about-eyebrow {
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .about-title {
    font-size: 26px;
  }

  .about-nav ul {
    gap: 12px;
  }

  .about-nav a {
    font-size: 13px;
  }
}