:root {
  --yellow: #d6b757;
  --yellow-dark: #b99b3e;
  --green: #123f25;
  --green-dark: #082416;
  --green-soft: #eaf2e9;
  --black: #202020;
  --paper: #f5f8f2;
  --muted: #6f6f6f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green);
  border-bottom: 3px solid #0a2717;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 112px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: min(440px, 52vw);
  height: 92px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.brand-seal {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid var(--green-dark);
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
  outline: 3px solid rgba(255, 255, 255, 0.12);
}

.brand-seal.large {
  width: 132px;
  height: 132px;
  border-width: 6px;
  font-size: 36px;
}

.brand-name {
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.phone-box {
  display: grid;
  min-width: 230px;
  padding: 12px 18px 16px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.phone-box span,
.delivery-phone span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.phone-box strong,
.delivery-phone strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
  min-height: 84px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-nav > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
}

.site-nav .active {
  color: var(--yellow);
}

.nav-link::after {
  content: "⌄";
  margin-left: 10px;
  font-size: 17px;
  transform: translateY(-1px);
}

.site-nav > a::before,
.nav-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav > a:hover::before,
.site-nav > a.active::before {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  min-width: 185px;
  padding: 8px;
  border-radius: 8px;
  background: var(--green-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.dropdown a {
  display: block;
  padding: 13px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  text-transform: none;
}

.dropdown a:hover {
  color: #fff;
  background: var(--green);
}

.nav-item:hover .dropdown,
.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.lang span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lang span::before {
  content: "";
  width: 28px;
  height: 18px;
  border-radius: 2px;
  background: #e30a17;
  box-shadow: inset 10px 0 0 rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 32px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--green-dark);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.slider {
  position: relative;
  height: clamp(360px, 46vw, 660px);
  overflow: hidden;
  background: var(--green-dark);
}

.slides,
.slide {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 1400ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 63, 37, 0.78);
  font-size: 29px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.slider-btn:hover {
  background: rgba(18, 63, 37, 0.96);
  transform: translateY(-50%) scale(1.06);
}

.slider-btn.prev {
  left: 18px;
}

.slider-btn.next {
  right: 18px;
}

.food-carousel {
  padding: 0;
  background: var(--green-dark);
}

.food-carousel-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin: 0 auto;
}

.food-tile {
  position: relative;
  min-height: clamp(150px, 16vw, 230px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: #fff;
  background: linear-gradient(135deg, #174b2d, #d6b757);
  box-shadow: none;
  transition: transform 350ms ease, opacity 350ms ease;
}

.food-tile:last-child {
  border-right: 0;
}

.food-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 28%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(0deg, rgba(8, 36, 22, 0.82), rgba(8, 36, 22, 0.08));
}

.food-tile::after {
  content: attr(data-title) "\A" attr(data-subtitle);
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  white-space: pre-line;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.food-tile[data-kind="doner"] {
  background: linear-gradient(135deg, #143d28, #8d5a28);
}

.food-tile[data-kind="kebap"] {
  background: linear-gradient(135deg, #123f25, #b34c2f);
}

.food-tile[data-kind="corba"] {
  background: linear-gradient(135deg, #1a5935, #d6b757);
}

.food-tile[data-kind="tatli"] {
  background: linear-gradient(135deg, #0b2a19, #bca04a);
}

.social-band {
  background: var(--green);
}

.social-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  width: min(1220px, calc(100% - 36px));
  min-height: 180px;
  margin: 0 auto;
}

.social-inner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.02;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 25px;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease;
}

.social-icons svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.social-icons a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
}

.delivery-band {
  background: #123f25;
}

.delivery-inner {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  min-height: 190px;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.delivery-logo {
  display: grid;
  place-items: center;
  min-width: 200px;
  min-height: 78px;
  padding: 12px 22px;
  border-radius: 5px;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.delivery-logo span,
.delivery-logo small {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.yemeksepeti {
  background: #ec0064;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.getir {
  background: #5632bd;
  color: #ffd629;
}

.getir span {
  color: #fff;
}

.trendyol {
  background: #fb5a13;
}

.migros {
  background: #ff3f16;
}

.delivery-phone {
  display: grid;
  color: #fff;
  text-align: center;
}

.page-hero {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 8vw, 150px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 36, 22, 0.94), rgba(18, 63, 37, 0.84)),
    linear-gradient(135deg, #123f25, #082416);
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.text-page,
.gallery-grid,
.menu-list,
.contact-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.text-page h2,
.contact-page h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

.text-page > p,
.contact-page p {
  max-width: 980px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.info-grid article,
.menu-item-card,
.contact-card {
  border: 1px solid rgba(18, 63, 37, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 36, 22, 0.08);
}

.info-grid article {
  display: grid;
  gap: 10px;
  padding: 26px;
}

.info-grid strong {
  color: var(--green);
  font-size: 20px;
}

.info-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(18, 63, 37, 0.14);
  background: var(--green-dark);
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-item-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 26px;
}

.menu-item-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% + 52px);
  height: 170px;
  margin: -26px -26px 20px;
  object-fit: cover;
}

.menu-item-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-soft);
}

.menu-item-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 24px;
  font-weight: 950;
}

.menu-item-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.button-link,
.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 32px;
}

.contact-card strong {
  color: var(--green);
  font-size: clamp(32px, 4vw, 48px);
}

.contact-card a:last-child {
  color: var(--green);
  background: var(--green-soft);
}

.content-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  width: min(1180px, calc(100% - 36px));
  padding: 90px 0;
  margin: 0 auto;
}

.content-strip > div > p {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.content-strip h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.content-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.branch-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 8vw, 150px);
  color: #fff;
  background: var(--green);
}

.branch-strip span,
.branch-strip strong {
  display: block;
}

.branch-strip span {
  margin-bottom: 5px;
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.branch-strip strong {
  font-size: 24px;
}

.branch-strip a {
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-weight: 950;
}

.why-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 74px);
  width: min(1180px, calc(100% - 36px));
  padding: 0 0 86px;
  margin: 0 auto;
}

.why-heading p {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.why-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.why-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(18, 63, 37, 0.16);
  border-radius: 8px;
  color: var(--green);
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 36, 22, 0.08);
}

.why-card strong {
  color: var(--green);
  font-size: 23px;
  line-height: 1.12;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.map-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(64px, 8vw, 110px);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 36vw, 470px);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 36, 22, 0.12);
}

.site-footer {
  background: #123f25;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.8fr;
  align-items: center;
  gap: 54px;
  width: min(1180px, calc(100% - 36px));
  min-height: 286px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  display: block;
}

.footer-logo img {
  display: block;
  width: min(380px, 100%);
  height: 130px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

address a:hover,
.footer-nav a:hover {
  color: var(--yellow);
}

.footer-nav {
  display: grid;
  gap: 9px;
  justify-items: end;
  color: var(--yellow);
  font-size: 21px;
  font-weight: 950;
  text-transform: uppercase;
}

.credit {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  font-weight: 600;
}

.copyright {
  padding: 16px;
  color: var(--black);
  background: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .delivery-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-phone {
    grid-column: 1 / -1;
  }

  .food-carousel-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .header-top {
    min-height: 92px;
    padding-right: 62px;
  }

  .phone-box {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    min-height: 0;
    padding: 8px 18px 18px;
    font-size: 17px;
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .site-nav > a,
  .nav-link {
    width: 100%;
    min-height: 48px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px 16px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.is-open .dropdown {
    display: block;
  }

  .social-inner,
  .content-strip,
  .footer-inner,
  .info-grid,
  .why-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .menu-list,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-inner {
    justify-items: start;
    padding: 34px 0;
  }

  .footer-nav {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .brand-seal {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-logo {
    width: min(320px, 68vw);
    height: 72px;
  }

  .slider {
    height: 300px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .delivery-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .food-carousel-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .menu-list,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .food-tile {
    min-height: 132px;
  }

  .delivery-logo {
    width: 100%;
  }

  .branch-strip {
    display: grid;
  }

  .copyright {
    font-size: 16px;
  }
}
