@charset "UTF-8";
/* ==========================================================================
   Alper Kara Hair — Mobil Menü
   Bagimsiz bilesen. jQuery gerektirmez. Prefix: .mk-
   Masaustu navigasyon 1201px ve uzerinde devralir.
   ========================================================================== */

/* Sitenin eski genel kurallari (nav{height:50px}, nav ul li{float:left} vb.)
   bilesenin icine sizmasin diye yerel sifirlama. */
.mk-header,
.mk-header *,
.mk-drawer,
.mk-drawer * {
  float: none;
  box-sizing: border-box;
}

.mk-drawer ul,
.mk-drawer li {
  width: auto;
  margin: 0;
  padding: 0;
  line-height: normal;
  list-style: none;
  background: none;
}

:root {
  --mk-bar-h: 60px;
  --mk-bg: #000;
  --mk-accent: #c52740;
  --mk-text: #fff;
  --mk-muted: #9a9a9a;
  --mk-line: rgba(255, 255, 255, 0.12);
}

/* --- Ust bar ------------------------------------------------------------ */
/* z-index 9998: galeri lightbox'i (9999/10000) ust barin uzerinde acilabilsin.
   Cekmece ve karartma daha yuksekte kalir. */
.mk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--mk-bar-h);
  padding: 0 14px;
  padding-left: max(14px, env(safe-area-inset-left));
  padding-right: max(14px, env(safe-area-inset-right));
  background: var(--mk-bg);
  box-sizing: border-box;
}

.mk-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.mk-header__logo img {
  display: block;
  max-height: 40px;
  width: auto;
}

/* --- Hamburger butonu --------------------------------------------------- */
.mk-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex: 0 0 auto;
}

.mk-toggle__bar {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: var(--mk-text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.18s ease, top 0.28s ease;
}

.mk-toggle__bar:nth-child(1) { top: 16px; }
.mk-toggle__bar:nth-child(2) { top: 22px; }
.mk-toggle__bar:nth-child(3) { top: 28px; }

.mk-toggle[aria-expanded="true"] .mk-toggle__bar:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.mk-toggle[aria-expanded="true"] .mk-toggle__bar:nth-child(2) {
  opacity: 0;
}
.mk-toggle[aria-expanded="true"] .mk-toggle__bar:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* --- Karartma katmani --------------------------------------------------- */
.mk-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mk-menu-open .mk-overlay {
  opacity: 1;
  visibility: visible;
}

/* --- Cekmece ------------------------------------------------------------ */
.mk-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10002;
  height: auto;
  width: 320px;
  max-width: 86vw;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: env(safe-area-inset-bottom);
  box-sizing: border-box;
}

.mk-menu-open .mk-drawer {
  transform: translateX(0);
}

.mk-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--mk-bar-h);
  padding: 10px 14px 10px 20px;
  border-bottom: 1px solid var(--mk-line);
  flex: 0 0 auto;
}

.mk-drawer__head img {
  display: block;
  max-height: 34px;
  width: auto;
}

.mk-close {
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--mk-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex: 0 0 auto;
}

.mk-close:hover { color: var(--mk-accent); }

/* Odak halkasi yalnizca klavye kullaniminda gorunsun. */
.mk-toggle:focus,
.mk-close:focus,
.mk-drawer a:focus { outline: none; }

.mk-toggle:focus-visible,
.mk-close:focus-visible,
.mk-drawer a:focus-visible {
  outline: 2px solid var(--mk-accent);
  outline-offset: -2px;
}

/* --- Menu linkleri ------------------------------------------------------ */
.mk-nav {
  flex: 1 1 auto;
  padding: 8px 0;
}

.mk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mk-drawer .mk-nav a {
  display: block;
  padding: 16px 20px;
  color: #e8e8e8;
  font-family: 'NexaRegular', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mk-drawer .mk-nav a:hover,
.mk-drawer .mk-nav a:focus {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
}

.mk-drawer .mk-nav a.is-active {
  color: var(--mk-accent);
  border-left-color: var(--mk-accent);
  background: rgba(197, 39, 64, 0.08);
}

/* --- Alt bilgi ---------------------------------------------------------- */
.mk-drawer__foot {
  flex: 0 0 auto;
  padding: 20px;
  border-top: 1px solid var(--mk-line);
}

.mk-drawer .mk-drawer__foot a,
.mk-drawer .mk-drawer__foot p {
  display: block;
  margin: 0 0 12px;
  color: var(--mk-muted);
  font-family: 'NexaLight', Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
}

.mk-drawer .mk-drawer__foot a:last-child,
.mk-drawer .mk-drawer__foot p:last-child { margin-bottom: 0; }

.mk-drawer .mk-drawer__foot a.mk-phone {
  color: #fff;
  font-family: 'NexaRegular', Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.mk-drawer .mk-drawer__foot a:hover { color: var(--mk-accent); }

/* --- Govde kaydirma kilidi ---------------------------------------------- */
.mk-menu-open,
.mk-menu-open body {
  overflow: hidden;
}

/* --- Icerigi bar altina it ----------------------------------------------
   Mobilde .ust yalnizca masaustu nav'i tasiyan bos bir seride donusuyor;
   onu gizleyip yerine bar yuksekliginde bir bosluk koyuyoruz. */
.mk-spacer {
  height: var(--mk-bar-h);
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .ust { display: none; }
}

/* --- Masaustu: mobil menuyu tamamen kapat ------------------------------- */
@media only screen and (min-width: 1201px) {
  .mk-header,
  .mk-overlay,
  .mk-drawer,
  .mk-spacer {
    display: none !important;
  }
}

/* --- Kucuk telefonlar --------------------------------------------------- */
@media only screen and (max-width: 360px) {
  .mk-drawer { width: 280px; }
  .mk-drawer .mk-nav a { padding: 14px 18px; font-size: 14px; }
}

/* --- Yatay mod: dikey bosluklari kis ------------------------------------ */
@media only screen and (max-height: 480px) {
  .mk-drawer .mk-nav a { padding: 11px 20px; }
  .mk-drawer__foot { padding: 14px 20px; }
}

/* --- Hareket azaltma tercihi -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .mk-drawer,
  .mk-overlay,
  .mk-toggle__bar {
    transition: none;
  }
}
