:root {
  --bg-dark: #2b0f0f;
  --bg-darker: #1a0505;
  --accent: #f3c98b;
  --text-light: #f7f3ee;
  --text-muted: #d0c3b8;
  --card-bg: #ffffff;
  --body-bg: #f8efe1;

  --about-bg: #fdf8f0;
  --about-surface: #ffffff;
  --about-border: #e4d7c7;
  --about-text: #2b0f0f;
  --about-muted: #7b6a58;
  --about-accent: var(--accent);
  --about-max-width: 1100px;
}

/* MAIN */
.about-main {
  background-color: var(--about-bg);
  color: var(--about-text);
  padding: 80px 16px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HERO */
.about-hero {
  max-width: var(--about-max-width);
  text-align: center;
  margin-bottom: 64px;
}

.about-eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--about-muted);
}

.about-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--about-muted);
  line-height: 1.7;
}

/* ZİGZAG SECTIONS */
.about-section {
  max-width: var(--about-max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;   /* SOL-SAG */
  gap: 48px;
  margin-bottom: 100px;
  align-items: center;
}

/* 2. ve 4. bloklarda yön tersine döner */
.about-section:nth-child(even) .about-media-wrapper {
  order: 2;
}
.about-section:nth-child(even) .about-content {
  order: 1;
}

/* Sticky wrapper */
.about-media-wrapper {
  width: 100%;
}

/* Sticky sadece desktop */
@media (min-width: 900px) {
  .about-media-wrapper {
    position: sticky;
    top: 120px;
  }
}

/* FOTOĞRAF */
.about-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--about-border);
  background: #f1e3d1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: 0.4s;
}

.about-media:hover img {
  transform: scale(1.06);
}

/* METİN KARTI */
.about-content {
  background: var(--about-surface);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--about-border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.about-section-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--about-accent);
}

.about-section-title {
  font-size: 24px;
  margin: 14px 0;
}

.about-section-text {
  font-size: 15px;
  color: var(--about-muted);
  line-height: 1.85;
}

/* MOBIL */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Sticky kapansın */
  .about-media-wrapper {
    position: static !important;
  }
}
