/* =========================================
   Askıda Ekmek — Landing Page Styles
   Modern, warm, orange-accented design
   ========================================= */

/* ---------- Base ---------- */
.landing-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

.landing-shell {
  max-width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* ---------- Navbar ---------- */
.lp-nav {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.lp-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 12px 24px;
}

.lp-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lp-nav__logo img {
  height: 32px;
  width: auto;
}

.lp-nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.lp-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.lp-nav__links a:hover {
  background: #fff3e8;
  color: #e8722a;
}

.lp-nav__cta {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #e8722a;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  margin-left: auto;
  box-shadow: 0 4px 16px rgba(232,114,42,0.3);
}

.lp-nav__cta:hover {
  background: #d4621f;
  transform: translateY(-1px);
}

/* Hamburger */
.lp-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 101;
}

.lp-nav__hamburger span {
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.lp-nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.lp-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.lp-nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open state */
.lp-nav__links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  z-index: 99;
  animation: slideDown 0.3s ease;
}

.lp-nav__cta.active {
  display: block;
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 0;
  padding: 16px;
  z-index: 99;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  padding: 48px 24px 32px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 50%, #fdd9b5 100%);
  overflow: hidden;
  min-height: 480px;
}

/* Decorative blobs */
.lp-hero__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.lp-hero__blob--1 {
  width: 300px;
  height: 300px;
  background: rgba(232,114,42,0.12);
  top: -80px;
  right: -60px;
}

.lp-hero__blob--2 {
  width: 200px;
  height: 200px;
  background: rgba(232,114,42,0.08);
  bottom: -40px;
  left: -40px;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.lp-hero__text {
  text-align: center;
}

.lp-hero__title {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.lp-hero__title span {
  color: #e8722a;
}

.lp-hero__desc {
  font-size: 1rem;
  color: #555;
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.lp-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Pill buttons */
.lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.lp-pill--orange {
  background: #e8722a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,114,42,0.3);
}

.lp-pill--orange:hover {
  background: #d4621f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,114,42,0.35);
}

.lp-pill--outline {
  background: #fff;
  color: #e8722a;
  border: 2px solid #e8722a;
}

.lp-pill--outline:hover {
  background: #fff3e8;
  transform: translateY(-2px);
}

.lp-pill--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* Hero images */
.lp-hero__images {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.lp-hero__img-main {
  width: 65%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.lp-hero__img-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.lp-hero__img-secondary {
  width: 33%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  align-self: flex-end;
}

.lp-hero__img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ---------- Sections ---------- */
.lp-section {
  padding: 64px 24px;
}

.lp-section--warm {
  background: #fdf7f0;
}

.lp-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Tags & headings */
.lp-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8722a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.lp-tag--center {
  display: block;
  text-align: center;
}

.lp-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-heading--center {
  text-align: center;
}

.lp-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* ---------- About ---------- */
.lp-about {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-about__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.lp-about__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ---------- Info Card ---------- */
.lp-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  border-left: 4px solid #e8722a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.lp-info-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.lp-info-card__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.lp-info-card__btn {
  flex-shrink: 0;
}

/* ---------- Steps ---------- */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.lp-step {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.lp-step__num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7a84e, #e8722a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(232,114,42,0.25);
}

.lp-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.lp-step__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Bakery Cards ---------- */
.lp-bakeries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

.lp-bakery-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-bakery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.lp-bakery-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.lp-bakery-card__body {
  padding: 20px 24px;
}

.lp-bakery-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a1a1a;
}

.lp-bakery-card__body p {
  font-size: 0.85rem;
  color: #888;
  margin: 0 0 12px;
}

.lp-bakery-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  background: #e6f7ee;
  color: #2e8b57;
}

/* ---------- Donate CTA ---------- */
.lp-donate {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-donate__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.lp-donate__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.lp-donate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- Trust ---------- */
.lp-trust {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-trust__item {
  text-align: center;
  background: #fdf7f0;
  padding: 32px 24px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.lp-trust__item:hover {
  transform: translateY(-4px);
}

.lp-trust__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lp-trust__item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a1a;
}

.lp-trust__item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Footer ---------- */
.lp-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 64px 24px 24px;
}

.lp-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp-footer__brand {
  max-width: 320px;
}

.lp-footer__logo {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.lp-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #999;
}

.lp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.lp-footer__links a {
  font-size: 0.9rem;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer__links a:hover {
  color: #e8722a;
}

.lp-footer__bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #333;
  text-align: center;
}

.lp-footer__bottom p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* =========================================
   DESKTOP (min-width: 768px)
   ========================================= */
@media (min-width: 768px) {
  /* Nav */
  .lp-nav {
    padding: 16px 48px;
  }
  .lp-nav.scrolled {
    padding: 12px 48px;
  }
  .lp-nav__links {
    display: flex;
    margin-left: 40px;
  }
  .lp-nav__cta {
    display: inline-flex;
    margin-left: auto;
  }
  .lp-nav__hamburger {
    display: none;
  }

  /* Hero */
  .lp-hero {
    padding: 80px 48px 80px;
    min-height: 600px;
  }
  .lp-hero__blob--1 {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -100px;
  }
  .lp-hero__blob--2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
  }
  .lp-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .lp-hero__text {
    flex: 1;
    text-align: left;
  }
  .lp-hero__title {
    font-size: 3.25rem;
  }
  .lp-hero__desc {
    margin-left: 0;
    margin-right: 0;
    max-width: 480px;
  }
  .lp-hero__buttons {
    justify-content: flex-start;
  }
  .lp-hero__images {
    flex: 1;
    max-width: 520px;
  }
  .lp-hero__img-main img {
    height: 380px;
  }
  .lp-hero__img-secondary img {
    height: 300px;
  }

  /* Sections */
  .lp-section {
    padding: 100px 48px;
  }

  /* About */
  .lp-about {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .lp-about__image {
    flex: 1;
  }
  .lp-about__image img {
    height: 380px;
  }
  .lp-about__content {
    flex: 1;
  }
  .lp-heading {
    font-size: 2.5rem;
  }

  /* Info card */
  .lp-info-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
  }

  /* Steps */
  .lp-steps {
    flex-direction: row;
    gap: 32px;
  }
  .lp-step {
    flex: 1;
  }

  /* Bakeries */
  .lp-bakeries {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* Donate */
  .lp-donate {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .lp-donate__content {
    flex: 1;
  }
  .lp-donate__image {
    flex: 1;
    order: 2;
  }
  .lp-donate__image img {
    height: 380px;
  }

  /* Trust */
  .lp-trust {
    flex-direction: row;
    gap: 32px;
  }
  .lp-trust__item {
    flex: 1;
  }

  /* Footer */
  .lp-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =========================================
   LARGE DESKTOP (min-width: 1100px)
   ========================================= */
@media (min-width: 1100px) {
  .lp-nav {
    padding: 16px 80px;
  }
  .lp-nav.scrolled {
    padding: 12px 80px;
  }
  .lp-hero {
    padding: 100px 80px;
  }
  .lp-hero__title {
    font-size: 3.75rem;
  }
  .lp-section {
    padding: 120px 80px;
  }
}
