/* =========================================================================
   Midye Point - "Sarı Nokta, Gece Vardiyası"
   Asfalt siyahı zemin, marka sarısı tek aksan, poster tipografisi.
   Big Shoulders (display) + Barlow (gövde).
   ========================================================================= */

:root {
  --asphalt: #161616;
  --asphalt-2: #1f1f1f;
  --chalk: #f4f1ea;
  --chalk-deep: #e9e4d8;
  --ink: #1a1a1a;
  --yellow: #f7c600;
  --yellow-deep: #d9ae00;
  --grey: #b9b4a9;
  --line-dark: rgba(244, 241, 234, 0.14);
  --line-light: rgba(26, 26, 26, 0.14);
  --display: "Big Shoulders", sans-serif;
  --body: "Barlow", sans-serif;
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 1.05rem; line-height: 1.6;
  color: var(--chalk); background: var(--asphalt);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ------- header ------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background 0.3s, box-shadow 0.3s; }
.site-header.scrolled { background: rgba(22, 22, 22, 0.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-dark); }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.9rem; padding-bottom: 0.9rem; }
.wordmark {
  font-family: var(--display); font-weight: 800; font-size: 1.7rem;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; line-height: 1;
}
.wordmark .pt { color: var(--yellow); }
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
  color: var(--grey); border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; text-transform: uppercase;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--chalk); border-color: var(--yellow); }

.lang-toggle { display: flex; border: 1px solid var(--line-dark); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  font-family: var(--body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem; border: 0; background: transparent; color: var(--grey); cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] { background: var(--yellow); color: var(--ink); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--chalk); transition: transform 0.25s, opacity 0.25s; }

@media (max-width: 840px) {
  .nav-burger { display: flex; position: relative; z-index: 70; }
  .main-nav {
    position: fixed; inset: 0; background: var(--asphalt);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateY(-100%); transition: transform 0.35s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-family: var(--display); font-size: 2rem; font-weight: 700; }
  body.nav-open { overflow: hidden; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ------- hero ------- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 115%; object-fit: cover; object-position: center 60%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,0.96) 8%, rgba(22,22,22,0.45) 50%, rgba(22,22,22,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.5rem, 8vh, 5rem); }
.hero-kicker {
  display: inline-block; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); background: var(--yellow);
  padding: 0.3rem 0.7rem; margin-bottom: 1.3rem;
}
.hero h1 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 7rem); line-height: 0.96; letter-spacing: 0.01em;
  max-width: 14ch; margin-bottom: 1.2rem;
}
.hero h1 .y { color: var(--yellow); }
.hero-lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(244,241,234,0.88); max-width: 36rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px;
  padding: 0.9rem 1.8rem; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--yellow); color: var(--ink); border: 1px solid var(--yellow); }
.btn-primary:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); }
.btn-ghost { border: 1px solid rgba(244,241,234,0.7); color: var(--chalk); }
.btn-ghost:hover { background: var(--chalk); color: var(--ink); }
.btn-ghost-dark { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--chalk); }
.hero-meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.95rem; color: rgba(244,241,234,0.85); }
.hero-meta strong { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--yellow); }

/* ------- şerit: gece vurgusu ------- */
.night-strip { background: var(--yellow); color: var(--ink); }
.night-strip .wrap {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2.5rem; align-items: baseline;
  justify-content: space-between; padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.night-strip .big { font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.9rem); text-transform: uppercase; }
.night-strip .small { font-weight: 600; font-size: 0.98rem; }

/* ------- sections ------- */
section { padding-top: clamp(3.5rem, 9vh, 6rem); padding-bottom: clamp(3.5rem, 9vh, 6rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vh, 3rem); }
.section-head h2 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1; margin-bottom: 0.9rem;
}
.section-head p { color: var(--grey); }
.rule { width: 64px; height: 4px; background: var(--yellow); border: 0; margin: 0 0 1.2rem; }

/* menü panosu (açık zemin) */
.board { background: var(--chalk); color: var(--ink); }
.board .section-head p { color: #5c574c; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.menu-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(26,26,26,0.5); }
.menu-card .ph { aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.menu-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.menu-card:hover .ph img { transform: scale(1.05); }
.menu-card .body { padding: 1.1rem 1.2rem 1.3rem; border-top: 3px solid var(--yellow); }
.menu-card h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.35rem; margin-bottom: 0.3rem; }
.menu-card p { font-size: 0.94rem; color: #5c574c; }
.menu-note { margin-top: 1.6rem; font-size: 0.92rem; color: #5c574c; }

/* video bandı */
.video-band { background: var(--asphalt-2); }
.video-duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 380px)); gap: 2rem; justify-content: center; }
.video-shell { border-radius: 4px; overflow: hidden; border: 1px solid var(--line-dark); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.video-shell video { width: 100%; }
.video-credit { text-align: center; margin-top: 0.9rem; font-size: 0.85rem; color: var(--grey); }

/* mekan galerisi */
.place-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; }
.place-grid figure { overflow: hidden; border-radius: 3px; border: 1px solid var(--line-dark); background: var(--asphalt-2); }
.place-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.45s ease; }
.place-grid figure:hover img { transform: scale(1.04); }
.place-grid figcaption { padding: 0.75rem 0.95rem; font-size: 0.88rem; color: var(--grey); }

/* yorumlar */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.review { border: 1px solid var(--line-dark); border-radius: 3px; padding: 1.6rem 1.5rem; background: var(--asphalt-2); display: flex; flex-direction: column; gap: 0.9rem; }
.review .stars { color: var(--yellow); letter-spacing: 0.12em; font-size: 0.95rem; }
.review blockquote { font-size: 1rem; color: rgba(244,241,234,0.85); font-style: italic; }
.review cite { font-style: normal; font-weight: 700; font-size: 0.92rem; }
.review-src { margin-top: 1.4rem; font-size: 0.9rem; color: var(--grey); }
.review-src a { color: var(--yellow); }

/* ziyaret / sipariş */
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); }
.visit-info dl { display: grid; gap: 1.3rem; }
.visit-info dt {
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 0.25rem;
}
.visit-info dd { color: var(--grey); }
.visit-info dd a { color: var(--chalk); }
.hours-line { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--chalk); }
.map-shell { border: 1px solid var(--line-dark); border-radius: 3px; overflow: hidden; min-height: 380px; }
.map-shell iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.2); }
@media (max-width: 840px) { .visit-grid { grid-template-columns: 1fr; } }

/* alt sayfa hero */
.page-hero { padding-top: clamp(7rem, 15vh, 9.5rem); padding-bottom: clamp(1.5rem, 4vh, 2.5rem); }
.page-hero h1 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem); line-height: 0.98; margin-bottom: 1rem;
}
.page-hero h1 .y { color: var(--yellow); }
.page-hero p { color: var(--grey); max-width: 40rem; }

/* form (demo) */
.demo-form { display: grid; gap: 1rem; max-width: 480px; }
.demo-form label { font-weight: 700; font-size: 0.92rem; }
.demo-form input, .demo-form textarea {
  width: 100%; padding: 0.8rem 0.9rem; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line-light); border-radius: 2px; margin-top: 0.3rem;
}
.demo-form input:focus, .demo-form textarea:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.form-note { font-size: 0.88rem; color: #5c574c; }

/* footer */
.site-footer { background: #101010; color: var(--grey); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding-top: 3.2rem; padding-bottom: 2.4rem; }
.site-footer .wordmark { color: var(--chalk); }
.site-footer h4 {
  font-family: var(--display); font-weight: 800; font-size: 1rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--chalk); margin-bottom: 0.8rem;
}
.site-footer a { color: var(--grey); text-decoration: none; }
.site-footer a:hover { color: var(--chalk); }
.site-footer ul { list-style: none; display: grid; gap: 0.45rem; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 1.3rem; padding-bottom: 1.6rem; font-size: 0.84rem; color: #7a766c; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* reveal: görünürlük JS ile, CSS asla gizlemez */
.reveal { will-change: transform, opacity; }
