/* ===== Yade Döner – Mockup Stylesheet ===== */
:root {
  --red: #c8102e;
  --red-dark: #9e0b23;
  --ink: #1c1a18;
  --ink-soft: #33302c;
  --cream: #faf6f0;
  --cream-2: #f1e9dd;
  --gold: #d4a04c;
  --muted: #6f6862;
  --line: #e6ddd0;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(28, 26, 24, .12);
  --shadow-sm: 0 8px 20px rgba(28, 26, 24, .08);
  --radius: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: "Oswald", sans-serif; font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: .3px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent; transition: all .25s ease;
  font-family: "Inter", sans-serif; letter-spacing: .3px;
}
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,16,46,.35); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ===== Topbar ===== */
.topbar { background: var(--ink); color: #d7cfc6; font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar__left, .topbar__right { display: flex; gap: 18px; align-items: center; }
.topbar__sep { opacity: .4; }
.topbar a:hover { color: var(--gold); }
@media (max-width: 760px) { .topbar__left { display: none; } .topbar__inner { justify-content: center; } }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.08); transition: box-shadow .3s; }
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 46px; width: auto; }
.brand__name { font-family: "Oswald", sans-serif; font-size: 24px; font-weight: 500; color: var(--ink); letter-spacing: 1px; text-transform: uppercase; }
.brand__name strong { color: var(--red); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 500; font-size: 15px; color: #e9e0d6; position: relative; padding: 6px 0; transition: color .2s; }
.nav a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--red); transition: width .25s; }
.nav a:not(.nav__cta):hover { color: #fff; }
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--red); color: #fff !important; padding: 10px 22px; border-radius: 50px; }
.nav__cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; background: url("../img/hero.jpg") center/cover no-repeat; color: #fff; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20,16,14,.86) 0%, rgba(20,16,14,.55) 55%, rgba(20,16,14,.25) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 680px; padding-top: 40px; padding-bottom: 40px; }
.hero__badge { display: inline-block; background: rgba(212,160,76,.18); border: 1px solid var(--gold); color: var(--gold); padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.hero__title { color: #fff; font-size: clamp(48px, 8vw, 92px); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; line-height: .98; }
.hero__title span { color: var(--red); display: inline-block; }
.hero__text { font-size: 19px; margin: 22px 0 34px; max-width: 560px; color: #ece6df; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--ink); color: #d7cfc6; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title { font-size: clamp(30px, 4vw, 44px); text-transform: uppercase; }
.section--dark .section__title { color: #fff; }
.section__sub { margin-top: 14px; color: var(--muted); font-size: 17px; }
.section--dark .section__sub { color: #ab9f95; }
.eyebrow { display: inline-block; color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow--light { color: var(--gold); }

/* ===== Intro ===== */
.intro__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.intro__exp { position: absolute; right: -18px; bottom: -18px; background: var(--red); color: #fff; border-radius: var(--radius); padding: 20px 26px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.intro__exp-num { font-family: "Oswald", sans-serif; font-size: 42px; font-weight: 700; line-height: 1; }
.intro__exp-label { font-size: 13px; line-height: 1.2; text-transform: uppercase; letter-spacing: .5px; }
.intro__content p { margin-bottom: 16px; color: var(--ink-soft); }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); }
.feature-list__icon { width: 40px; height: 40px; display: grid; place-items: center; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); font-size: 18px; }

/* ===== Cards ===== */
.cards { display: grid; gap: 28px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__img img { transform: scale(1.07); }
.card__body { padding: 22px 22px 26px; }
.card__body h3 { font-size: 21px; margin-bottom: 8px; }
.card__body p { font-size: 14.5px; color: var(--muted); }

/* ===== Category cards ===== */
.cat-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card__body { padding: 22px; }
.cat-card__body h3 { font-size: 22px; margin-bottom: 14px; color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { background: var(--cream-2); color: var(--ink-soft); font-size: 13px; padding: 6px 12px; border-radius: 50px; border: 1px solid var(--line); }

/* ===== Steps (Verarbeitung) ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 32px 26px; position: relative; transition: border-color .3s, transform .3s; }
.step:hover { border-color: var(--gold); transform: translateY(-6px); }
.step__num { font-family: "Oswald", sans-serif; font-size: 46px; font-weight: 700; color: var(--red); opacity: .9; display: block; margin-bottom: 8px; }
.step h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.step p { color: #ab9f95; font-size: 14.5px; }

/* ===== Stats ===== */
.stats { background: var(--red); color: #fff; padding: 54px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-family: "Oswald", sans-serif; font-size: 46px; font-weight: 700; display: block; line-height: 1; }
.stat__label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: .9; margin-top: 8px; display: block; }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__content p { margin-bottom: 16px; }
.about__support { background: var(--cream-2); border-left: 4px solid var(--gold); padding: 16px 20px; border-radius: 10px; font-size: 15px; }

/* ===== Contact ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact__info { display: grid; gap: 22px; align-content: start; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon { width: 50px; height: 50px; flex: none; display: grid; place-items: center; background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); font-size: 22px; }
.contact__item h4 { font-size: 16px; margin-bottom: 2px; color: var(--ink); }
.contact__item p { color: var(--muted); font-size: 15px; }
.contact__item a:hover { color: var(--red); }
.contact__form { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form input, .contact__form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; background: var(--cream); transition: border-color .2s, box-shadow .2s; }
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.12); background: #fff; }
.contact__form textarea { resize: vertical; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #b3a99f; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.brand--footer .brand__name { color: #fff; }
.footer__col p { font-size: 14.5px; margin-bottom: 10px; }
.footer__col h4 { color: #fff; font-size: 18px; margin-bottom: 18px; text-transform: uppercase; }
.footer__col a { display: block; font-size: 14.5px; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13.5px; text-align: center; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .intro__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { order: -1; }
}
@media (max-width: 760px) {
  .nav { position: fixed; top: 116px; right: 0; height: calc(100vh - 116px); width: 75%; max-width: 320px; background: var(--cream); flex-direction: column; align-items: flex-start; gap: 0; padding: 24px; box-shadow: var(--shadow); transform: translateX(110%); transition: transform .3s; }
  .nav.open { transform: translateX(0); }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 12px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cards--4, .cards--3, .steps, .stats__grid, .feature-list { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ===== Katalog / iç sayfa eklemeleri ===== */
.muted { color: var(--muted); }
.section__cta { text-align: center; margin-top: 42px; }

/* Aktif nav linki */
.nav a.active:not(.nav__cta) { color: #fff; }
.nav a.active:not(.nav__cta)::after { width: 100%; }

/* İç sayfa başlığı */
.page-head { background: var(--cream-2); border-bottom: 1px solid var(--line); padding: 50px 0 42px; }
.page-head h1 { font-size: clamp(30px, 5vw, 48px); text-transform: uppercase; }
.page-head p { color: var(--muted); margin-top: 12px; max-width: 760px; font-size: 16.5px; }
.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs a { color: var(--red); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { opacity: .5; }

/* Paket/ölçü rozeti */
.pack { display: inline-block; margin-top: 12px; background: var(--cream-2); border: 1px solid var(--line); color: var(--ink-soft); font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 50px; }

/* Kategori kartı (link) */
.cat-card { text-decoration: none; color: inherit; }
.cat-card__body p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.cat-card__more { font-weight: 600; color: var(--red); font-size: 14px; }

/* Görselsiz yer tutucu */
.card__img .ph-mark { display: grid; place-items: center; width: 100%; height: 100%; font-family: "Oswald", sans-serif; font-size: 56px; font-weight: 700; color: #fff; background: linear-gradient(160deg, var(--red), var(--red-dark)); }

/* Ürün listesi (görselsiz kategoriler) */
.prod-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.prod-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.prod-item__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: space-between; }
.prod-item__head h3 { font-size: 19px; }
.prod-item .pack { margin-top: 0; }
.prod-item p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

/* CTA bandı */
.cta-band { background: linear-gradient(120deg, var(--ink), #2a2522); color: #fff; padding: 58px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; }
.cta-band p { color: #cbbfb4; margin-top: 6px; }

/* Kontrol listesi (Über Uns) */
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-sm); font-weight: 500; }
.check { color: var(--red); font-weight: 800; }

/* Form select + flash + honeypot */
.contact__form select { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; background: var(--cream); color: var(--ink-soft); }
.contact__form select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.12); background: #fff; }
.flash-ok { background: #e7f7ec; border: 1px solid #b7e3c4; color: #1b6b35; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; }
.flash-err { background: #fdeaea; border: 1px solid #f5c2c2; color: #a12020; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14.5px; }
.flash-err div { margin: 2px 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Harita */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.15); }

@media (max-width: 760px) {
  .nav a { color: var(--ink-soft); }
  .nav a.active:not(.nav__cta) { color: var(--red); }
}
@media (max-width: 620px) {
  .prod-list, .check-list { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
