:root {
    --anthracite: #1a1a1f;
    --anthracite-2: #222228;
    --anthracite-3: #2d2d35;
    --anthracite-light: #3a3a44;
    --crimson: #8b0000;
    --crimson-mid: #a50000;
    --crimson-bright: #c0392b;
    --crimson-glow: #e74c3c;
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --off-white: #f5f0e8;
    --text-muted: #888890;
  }

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

/* Metin seçmeyi tamamen kapat */
* {
  -webkit-user-select: none;   /* Safari */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE */
  user-select: none;
}

/* Görsel ve videoların sürüklenmesini kapat */
img, video {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Linklerin sürüklenmesini engelle */
a {
  -webkit-user-drag: none;
}

/* iOS long-press menüsünü kapat */
html {
  -webkit-touch-callout: none;
}

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--anthracite);
    color: var(--off-white);
    overflow-x: hidden;
    
  }

  /* MOBILE NAV */
  .nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
    z-index: 1001;
  }
  .nav-hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--off-white); transition: all 0.3s;
    border-radius: 2px;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 1024px) {
    .nav-hamburger { display: flex !important; }

    .nav-links {
      display: none;
       position: fixed;
  inset: 0;
        height: 100dvh;   /* kritik satır */
      background: rgba(13,13,16,0.98);
      backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 36px;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-16px);
      transition: opacity 0.35s, transform 0.35s;
      pointer-events: none;
    }
    .nav-links.open {
      display: flex !important;
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
    .nav-links li { list-style: none; }
    .nav-links a {
      font-size: 28px !important;
      letter-spacing: 4px;
      font-family: 'Bebas Neue', cursive;
    }
    .nav-cta { display: inline-block !important; }
  }


  .cursor {
    width: 12px; height: 12px;
    background: var(--crimson-glow);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--crimson-bright);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 180px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(26,26,31,0.95);
    backdrop-filter: blur(20px);
    padding: 16px 180px;
    border-bottom: 1px solid rgba(139,0,0,0.3);
  }
  .nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 4px;
    color: var(--off-white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--crimson-glow); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
    transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--crimson-glow);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--off-white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--crimson);
    color: var(--off-white) !important;
    padding: 10px 24px;
    border: 1px solid var(--crimson-mid);
    transition: all 0.3s !important;
  }
  .nav-cta:hover { background: var(--crimson-bright) !important; }
  .nav-cta::after { display: none !important; }

  /* PAGE SECTIONS */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* ===== HERO ===== */
  #hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 65% 50%, rgba(139,0,0,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(139,0,0,0.1) 0%, transparent 50%),
      linear-gradient(135deg, #0d0d10 0%, #1a1a1f 50%, #1f1015 100%);
  }

  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(139,0,0,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(139,0,0,0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 120px;
    max-width: 700px;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(139,0,0,0.15);
    border: 1px solid rgba(192,57,43,0.4);
    padding: 6px 16px;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--crimson-glow);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s 0.2s both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--crimson-glow);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }

  .hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(80px, 12vw, 160px);
    line-height: 0.9;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s 0.4s both;
  }
  .hero-title .line-1 { display: block; color: var(--off-white); }
  .hero-title .line-2 {
    display: block;
    -webkit-text-stroke: 1px rgba(245,240,232,0.3);
    color: transparent;
    position: relative;
  }
 .hero-title .line-2 .highlight {
    -webkit-text-stroke: 0;
    color: var(--crimson-glow);

    text-shadow:
      0 0 40px rgba(231,76,60,0.6),
      0 0 80px rgba(231,76,60,0.4),
      0 0 140px rgba(231,76,60,0.25);

    animation: flicker 4.2s infinite;
}

/* Gerçekçi florasan flicker */
@keyframes flicker {

  /* Stabil yanık */
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 60px rgba(231,76,60,0.6),
      0 0 120px rgba(231,76,60,0.35),
      0 0 180px rgba(231,76,60,0.2);
  }

  /* Ani sönmeler */
  19%, 23%, 54% {
    opacity: 0.25;
    text-shadow: none;
  }

  /* Yarı arızalı titreme */
  24%, 55% {
    opacity: 0.6;
    text-shadow:
      0 0 20px rgba(231,76,60,0.4),
      0 0 40px rgba(231,76,60,0.2);
  }
}

  .hero-sub {
    font-size: 16px; line-height: 1.7;
    color: var(--text-muted); max-width: 420px;
    margin: 28px 0 40px;
    animation: fadeInUp 0.8s 0.6s both;
  }

  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.8s both;
  }

  .btn-primary {
    background: var(--crimson);
    color: var(--off-white);
    padding: 16px 40px;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    border: none; cursor: pointer;
    position: relative; overflow: hidden;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .btn-primary:hover { background: var(--crimson-bright); transform: translateY(-2px); }
  .btn-primary:hover::before { opacity: 1; }

  .btn-outline {
    background: transparent;
    color: var(--off-white);
    padding: 15px 40px;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid rgba(245,240,232,0.2); cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-outline:hover { border-color: var(--crimson-glow); color: var(--crimson-glow); transform: translateY(-2px); }

  .hero-right {
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    width: 50%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
  }

  .hero-burger-visual {
    position: relative;
    width: 500px; height: 500px;
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
  }

  .hero-burger-visual .ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(139,0,0,0.2);
    animation: rotate 20s linear infinite;
  }
  .ring-1 { inset: 0; }
  .ring-2 { inset: 30px; animation-direction: reverse; animation-duration: 15s; }
  .ring-3 { inset: 60px; border-color: rgba(201,168,76,0.15); animation-duration: 25s; }

  .burger-emoji-container {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 220px;
    filter: drop-shadow(0 0 60px rgba(139,0,0,0.6)) drop-shadow(0 0 120px rgba(139,0,0,0.3));
  }

  .hero-stats {
    position: absolute; bottom: 60px; left: 120px !important;
    display: flex; gap: 60px;
    animation: fadeInUp 0.8s 1s both;
  }
  .stat-item { text-align: left; }
  .stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px; line-height: 1;
    color: var(--off-white);
  }
  .stat-number span { color: var(--crimson-glow); }
  .stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

 .scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: var(--crimson-glow);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  animation: fadeInUp 0.8s 1.2s both;
  z-index: 5;
}
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--crimson-glow), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes rotate { to { transform: rotate(360deg); } }

  /* ===== MARQUEE ===== */
  .marquee-section {
    overflow: hidden;
    border-top: 1px solid rgba(139,0,0,0.3);
    border-bottom: 1px solid rgba(139,0,0,0.3);
    background: var(--crimson);
    padding: 16px 0;
  }
  .marquee-track {
    display: flex; gap: 0;
    width: max-content;
    animation: marquee 20s linear infinite;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    display: flex; align-items: center; gap: 16px;
    padding: 0 32px;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px; letter-spacing: 3px;
    white-space: nowrap;
    color: rgba(245,240,232,0.9);
  }
  .marquee-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* ===== ABOUT / STORY ===== */
  .section { padding: 120px 180px; }

  .section-label {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--crimson-glow); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px; background: var(--crimson-glow);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1; font-weight: 700;
    color: var(--off-white);
  }
  .section-title em { font-style: italic; color: var(--crimson-glow); }

  /* About split layout */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }
  .about-text p {
    font-size: 17px; line-height: 1.8; color: var(--text-muted);
    margin-bottom: 20px;
  }
  .about-text p strong { color: var(--off-white); }

  .about-image-stack {
    position: relative; height: 560px;
  }
  .img-card {
    position: absolute;
    border-radius: 2px;
    overflow: hidden;
  }
.img-card-1 {
  width: 75%;
  top: 0;
  right: 0;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #3a1010, #1a0808);

  transform: rotate(3deg);
  transform-origin: center;

  border-radius: 6px;

  box-shadow:
    inset 0 25px 40px rgba(0,0,0,0.55),   /* üstten kararma */
    inset 0 -15px 30px rgba(0,0,0,0.45),  /* alttan derinlik */
    inset 0 0 60px rgba(201,168,76,0.08); /* hafif ambient glow */
}
 /* .img-card-2 {
    width: 55%; bottom: 0; left: 0;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1f1f28, #2d2d35);
    border: 1px solid rgba(201,168,76,0.2);
  }*/
  .img-card .img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
  }
    
    


.img-card-2 {
  width: 55%;
  bottom: 0;
  left: 0;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1f1f28, #2d2d35);
  border: 1px solid rgba(201,168,76,0.2);

  transform: rotate(358deg);
  transform-origin: center;

  border-radius: 6px;

  box-shadow:
    -15px 25px 50px rgba(0,0,0,0.7),
    -5px 10px 20px rgba(0,0,0,0.4),
    0 0 40px rgba(201,168,76,0.15);
}

/* Video kartı tamamen doldursun */
.img-video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* kırpar ama boşluk bırakmaz */
  display: block;
}
    
    .video-glitch {
  position: relative;
  overflow: hidden;
     
}

.video-glitch video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Siyah beyaz + kontrast */
  filter: grayscale(150%) contrast(120%) brightness(50%);
  
  animation: glitch-shift 3s infinite;
    opacity: 0.8;
}

    
    .video-glitch::before,
.video-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
}

.video-glitch::before {
  background: rgba(255, 0, 0, 0.15);
  transform: translate(2px, 0);
}

.video-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: rgba(0, 255, 255, 0.15);
  transform: translate(-2px, 0);
  mix-blend-mode: screen;

  /* Inset shadow eklendi */
box-shadow:
  inset 0 0 120px rgba(0,0,0,0.9);

  border-radius: inherit;
}



/* Label üstte kalsın */
.img-label {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: rgba(26,26,31,0.9);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  /*z-index: 2;*/
}
    
 /* .img-label {
    position: absolute; bottom: -1px; left: 0; right: 0;
    background: rgba(26,26,31,0.9);
    padding: 10px 16px;
    font-size: 12px; letter-spacing: 1px; color: var(--text-muted);
  }*/

  .highlight-box {
    background: linear-gradient(135deg, rgba(139,0,0,0.15), rgba(139,0,0,0.05));
    border-left: 3px solid var(--crimson);
    padding: 24px 28px; margin-top: 32px;
  }
  .highlight-box p {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-style: italic;
    color: var(--off-white); line-height: 1.5;
    margin: 0 !important;
  }

  /* ===== MENU / PRODUCTS ===== */
  #menu-page { background: var(--anthracite); }

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

  .menu-hero {
    height: 25vh; min-height: 360px;
    background:
      radial-gradient(ellipse 60% 80% at 50% 100%, rgba(139,0,0,0.35) 0%, transparent 60%),
      linear-gradient(180deg, var(--anthracite) 0%, #1a0808 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 60px; text-align: center;
  }
  .menu-hero-content .section-label { justify-content: center; }
  .menu-hero-content .section-label::before { display: none; }

  .menu-tabs {
    display: flex; justify-content: center; gap: 4px;
    padding: 0 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .menu-tab {
    padding: 16px 28px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); background: none; border: none; cursor: pointer;
    position: relative; transition: color 0.3s;
  }
  .menu-tab::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 2px; background: var(--crimson-glow);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .menu-tab.active { color: var(--off-white); }
  .menu-tab.active::after { transform: scaleX(1); }

  .menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    padding: 0 60px 120px;
  }

  .menu-card {
    background: var(--anthracite-2);
    position: relative; overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s;
  }
  .menu-card:hover { transform: scale(1.02); z-index: 2; }
  .menu-card:hover .card-overlay { opacity: 1; }
  .menu-card:hover .card-details { transform: translateY(0); }

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /*border-radius: 18px;*/
    background: linear-gradient(135deg, #1f1015, #2a1a1a);
    font-size: 80px; /* emoji fallback */
    color: rgba(255,255,255,0.2);
}

/* Eğer img varsa */
.card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.menu-card:hover .card-image img {
    transform: scale(1.06);
}

/* Hafif premium gradient overlay */
.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 60%);
    pointer-events: none;
}

  .card-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--crimson);
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 10px; color: var(--off-white);
  }
  .card-badge.gold { background: var(--gold); color: var(--anthracite); }

  .card-info { padding: 24px; }
  .card-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--off-white); margin-bottom: 8px;
  }
  .card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; }
  .card-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px; color: var(--crimson-glow);
    letter-spacing: 1px;
  }
  .card-price small { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-muted); margin-left: 4px; }

  .card-add {
    width: 36px; height: 36px;
    background: var(--crimson); border: none;
    color: white; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  }
  .card-add:hover { background: var(--crimson-bright); transform: scale(1.1); }

  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(139,0,0,0.3), transparent);
    opacity: 0; transition: opacity 0.4s;
    pointer-events: none;
  }

  /* ===== CAROUSEL / SPECIALS ===== */
  .specials-section {
    padding: 120px 180px;
    background: linear-gradient(180deg, var(--anthracite), #1a0808, var(--anthracite));
    overflow: hidden;
  }
  .specials-header { padding: 0 60px; margin-bottom: 60px; }

  .carousel-wrapper { position: relative; }
  .carousel-track {
    display: flex; gap: 24px;
    padding: 20px 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
  }
  .carousel-track::-webkit-scrollbar { display: none; }
  .carousel-track.grabbing { cursor: grabbing; }

  .special-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, var(--anthracite-2), var(--anthracite-3));
    border: 1px solid rgba(139,0,0,0.2);
    position: relative; overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(139,0,0,0.3);
    border-color: rgba(192,57,43,0.5);
  }
  .special-card-image {
    height: 220px;
    display: flex; align-items: center; justify-content: center;
    font-size: 100px;
    background: linear-gradient(135deg, rgba(139,0,0,0.1), transparent);
    position: relative;
  }
  .special-tag {
    position: absolute; bottom: 0; left: 0;
    background: var(--crimson); padding: 4px 14px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  }
  .special-card-body { padding: 28px; }
  .special-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; margin-bottom: 10px; color: var(--off-white);
  }
  .special-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
  .special-price-row { display: flex; align-items: center; gap: 12px; }
  .special-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px; color: var(--gold);
  }
  .special-old-price {
    font-size: 16px; color: var(--text-muted);
    text-decoration: line-through;
  }

  .carousel-nav {
    display: flex; justify-content: center; gap: 12px;
    margin-top: 40px; padding: 0 60px;
  }
  .carousel-btn {
    width: 48px; height: 48px;
    background: var(--anthracite-3); border: 1px solid rgba(139,0,0,0.3);
    color: var(--off-white); font-size: 20px; cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  .carousel-btn:hover { background: var(--crimson); border-color: var(--crimson); }

  /* ===== EXPERIENCE ===== */
  .experience-section {
    padding: 120px 60px;
    background: var(--anthracite-2);
  }
  .experience-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2px; margin-top: 60px;
  }
  .exp-card {
    padding: 48px 36px;
    background: var(--anthracite);
    position: relative; overflow: hidden;
    transition: background 0.4s;
  }
  .exp-card:hover { background: var(--anthracite-3); }
  .exp-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    transform: scaleX(0); transition: transform 0.4s;
  }
  .exp-card:hover::before { transform: scaleX(1); }
  .exp-icon { font-size: 48px; margin-bottom: 20px; }
  .exp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--off-white); margin-bottom: 12px;
  }
  .exp-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { padding: 120px 180px; }
  .testimonials-header { text-align: center; margin-bottom: 80px; }
  .testimonials-header .section-label { justify-content: center; }
  .testimonials-header .section-label::before { display: none; }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testimonial-card {
    background: var(--anthracite-2);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 36px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }
  .testimonial-card:hover { transform: translateY(-4px); border-color: rgba(139,0,0,0.3); }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 120px; line-height: 0.8;
    color: rgba(139,0,0,0.15);
    position: absolute; top: 20px; left: 24px;
    pointer-events: none;
  }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
  .testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--anthracite-3));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .author-name { font-size: 14px; color: var(--off-white); font-weight: 500; }
  .author-role { font-size: 12px; color: var(--text-muted); }

  /* ===== CONTACT PAGE ===== */
  #contact-page { background: var(--anthracite); }
  .contact-hero {
    height: 40vh; min-height: 320px;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 60px; text-align: center;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(139,0,0,0.25) 0%, transparent 60%);
  }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; padding: 0 0 120px;
  }

  .contact-info { padding: 60px 120px; background: var(--anthracite-2); }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; color: var(--off-white); margin-bottom: 32px;
  }
  .contact-item {
    display: flex; gap: 16px; margin-bottom: 28px;
    padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .contact-item:last-of-type { border-bottom: none; }
  .contact-icon {
    width: 44px; height: 44px;
    background: rgba(139,0,0,0.15); border: 1px solid rgba(139,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .contact-item-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson-glow); margin-bottom: 4px; }
  .contact-item-value { font-size: 15px; color: var(--off-white); }
  .contact-item-sub { font-size: 13px; color: var(--text-muted); }

  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
  .hour-row { font-size: 13px; }
  .hour-day { color: var(--text-muted); }
  .hour-time { color: var(--off-white); }

  .contact-form-section { padding: 60px; }
  .contact-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; color: var(--off-white); margin-bottom: 32px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .form-group label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
  .form-group input, .form-group textarea, .form-group select {
    background: var(--anthracite-2);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--off-white); padding: 14px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    transition: border-color 0.3s; outline: none;
    appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--crimson);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--anthracite-2); }

  .map-container {
    height: 400px;
    background: var(--anthracite-3);
    position: relative; overflow: hidden;
    border-top: 2px solid rgba(139,0,0,0.3);
  }
  .map-container iframe {
    width: 100%; height: 100%; border: none;
    filter: grayscale(100%) invert(100%) sepia(20%) hue-rotate(170deg) brightness(0.6) contrast(0.8);
    opacity: 0.7;
  }
 .map-overlay-card {
    position: absolute;
    top: 30px;
    left: calc((100% - 1520px) / 2 + 12px); /* container sol hizası */
    background: rgba(26,26,31,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139,0,0,0.3);
    padding: 20px 24px;
    z-index: 10;
}
  .map-overlay-card h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px; letter-spacing: 2px;
    color: var(--off-white); margin-bottom: 4px;
  }
  .map-overlay-card p { font-size: 13px; color: var(--text-muted); }
  .map-overlay-card .map-dot {
    display: inline-block; width: 8px; height: 8px;
    background: var(--crimson-glow); border-radius: 50;
    margin-right: 6px; animation: pulse 2s infinite;
    border-radius: 50%;
  }

  /* ===== FOOTER ===== */
  footer {
    background: #0d0d10;
    border-top: 1px solid rgba(139,0,0,0.2);
    padding: 80px 180px 40px;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .footer-brand .nav-logo { font-size: 40px; display: block; margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
  .footer-col h4 {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--crimson-glow); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .footer-col a:hover { color: var(--off-white); }
  .footer-social { display: flex; gap: 12px; margin-top: 24px; }
  .social-btn {
    width: 40px; height: 40px;
    background: transparent !important;
      border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; transition: all 0.3s;
    text-decoration: none; color: var(--text-muted);
  }
  .social-btn:hover { background: var(--crimson); border-color: var(--crimson); color: white; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: var(--text-muted);
  }

  /* ===== REVEAL ANIMATIONS ===== */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===== PAGE TRANSITIONS ===== */
  .page-enter {
    animation: pageEnter 0.5s ease both;
  }
  @keyframes pageEnter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* === FIRE EFFECT ON HERO === */
  .fire-particle {
    position: absolute;
    border-radius: 50% 50% 20% 20%;
    pointer-events: none;
    animation: fireRise linear infinite;
  }
  @keyframes fireRise {
    0% { opacity: 0.8; transform: translateY(0) scale(1) rotate(0deg); }
    100% { opacity: 0; transform: translateY(-120px) scale(0.3) rotate(20deg); }
  }

  /* ===== RESPONSIVE ===== */

  /* Tablet: 768px – 1280px */
  @media (max-width: 1280px) {
    nav { padding: 22px 60px; }
    nav.scrolled { padding: 14px 60px; }

    .section { padding: 100px 60px; }
    .specials-section { padding: 100px 60px; }
    .testimonials-section { padding: 100px 60px; }
    footer { padding: 80px 60px 40px; }

    .hero-content { padding: 0 60px; }
    .hero-stats { left: 60px !important; }
    .hero-burger-visual { width: 380px; height: 380px; }
    .burger-emoji-container { font-size: 170px; }
  }

  @media (max-width: 1024px) {
    nav { padding: 20px 32px; }
    nav.scrolled { padding: 14px 32px; }

    /* Hamburger menu göster */
    .nav-links { display: none; }
    .nav-hamburger {
      display: flex !important;
      flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .nav-hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--off-white); transition: all 0.3s;
    }

    .section { padding: 80px 32px; }
    .specials-section { padding: 80px 32px; }
    .testimonials-section { padding: 80px 32px; }
    footer { padding: 60px 32px 32px; }

    .hero-content { padding: 0 32px; max-width: 100%; }
    .hero-right { display: none; }
    .hero-stats { left: 32px !important; gap: 32px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-stack { height: 380px; }

    .menu-tabs { padding: 0 32px; flex-wrap: wrap; }
    .menu-grid {
      grid-template-columns: 1fr 1fr;
      padding: 0 32px 80px;
      gap: 16px;
    }
    .specials-header { padding: 0; }
    .carousel-track { padding: 20px 0; }
    .carousel-nav { padding: 0; }

    .experience-section { padding: 80px 32px; }
    .experience-grid { grid-template-columns: 1fr 1fr; }

    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { padding: 48px 32px; }
    .contact-form-section { padding: 48px 32px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  /* Mobile: max 768px */
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    nav { padding: 18px 20px; }
    nav.scrolled { padding: 12px 20px; }

    .nav-links { display: none; }
    .nav-cta { display: none; }

    /* HERO */
    .hero-content {
      padding: 0 20px;
      max-width: 100%;
    }
    .hero-badge { font-size: 10px; letter-spacing: 2px; }
    .hero-title { font-size: clamp(60px, 18vw, 100px); }
    .hero-sub { font-size: 15px; max-width: 100%; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 16px 24px; }
    .hero-right { display: none; }
    .hero-stats {
      left: 20px !important;
      bottom: 32px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .stat-number { font-size: 36px; }

    /* SECTIONS */
    .section { padding: 64px 20px; }
    .specials-section { padding: 64px 20px; overflow: hidden; }
    .testimonials-section { padding: 64px 20px; }

    .section-title { font-size: clamp(32px, 9vw, 52px); }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-stack { height: 280px; }
    .img-card-1 { width: 80%; }
    .img-card-2 { width: 60%; }
    .about-text p { font-size: 15px; }

    /* MENU */
    .menu-hero { height: 38vh; min-height: 280px; padding-bottom: 40px; }
    .menu-tabs { padding: 0 20px; gap: 2px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
    .menu-tab { padding: 14px 18px; font-size: 11px; white-space: nowrap; }
    .menu-grid {
      grid-template-columns: 1fr;
      padding: 0 20px 60px;
      gap: 20px;
    }

    /* CAROUSEL */
    .specials-header { padding: 0; margin-bottom: 40px; }
    .carousel-track { padding: 16px 0; gap: 16px; }
    .special-card { flex: 0 0 82vw; }
    .carousel-nav { margin-top: 28px; padding: 0; }

    /* EXPERIENCE */
    .experience-section { padding: 64px 20px; }
    .experience-grid { grid-template-columns: 1fr; gap: 2px; }
    .exp-card { padding: 36px 24px; }

    /* TESTIMONIALS */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials-header { margin-bottom: 48px; }
    .testimonial-card { padding: 28px 24px; }

    /* CONTACT */
    .contact-hero { height: 32vh; min-height: 240px; padding-bottom: 40px; }
    .contact-grid { grid-template-columns: 1fr; padding-bottom: 60px; }
    .contact-info { padding: 40px 20px; }
    .contact-form-section { padding: 40px 20px; }
    .contact-form-section h3, .contact-info h3 { font-size: 26px; }
    .form-row { grid-template-columns: 1fr; }
    .hours-grid { grid-template-columns: 1fr; }

    /* FOOTER */
    footer { padding: 48px 20px 28px; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 40px;
      padding-bottom: 40px;
    }
    .footer-brand .nav-logo { font-size: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* MAP */
    .map-overlay-card { left: 16px; top: 16px; padding: 14px 18px; }
  }

  /* Very small screens */
  @media (max-width: 400px) {
    .hero-title { font-size: clamp(52px, 20vw, 80px); }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 30px; }
    .menu-tab { padding: 12px 14px; font-size: 10px; }
    .special-card { flex: 0 0 90vw; }
  }

  /* Loading screen */
  
#loader {
  position: fixed;
  inset: 0;
  background: var(--anthracite);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

/* Wrapper */
.loader-wrapper {
  position: relative;
  width: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--anthracite);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, transform .6s ease;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

/* Ana Circle */
.loader-circle {
  position: relative;
  width: 150px;
  height: 150px;
}

/* Dönen Progress Ring */
.progress-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(
    var(--crimson-glow) 0deg,
    var(--crimson-glow) 70deg,
    transparent 70deg
  );
  animation: rotateRing 1.4s linear infinite;
}

/* Ring iç boşluk */
.progress-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--anthracite);
  border-radius: 50%;
}

/* Logo Container */
.logo-container {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 25px rgba(220, 20, 60, 0.4),
    inset 0 0 25px rgba(220, 20, 60, 0.2);
}

/* Logo */
.logo-container img {
  width: 70%;
  animation: floatLogo 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Parıldama efekti */
.logo-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

/* Animations */
@keyframes rotateRing {
  100% { transform: rotate(360deg); }
}

@keyframes shine {
  100% { left: 130%; }
}

@keyframes floatLogo {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

  .loader-bar {
    width: 200px; height: 2px;
    background: var(--anthracite-3);
    position: relative; overflow: hidden;
  }
  .loader-bar::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, var(--crimson), var(--crimson-glow), transparent);
    animation: loaderAnim 1.2s ease-in-out forwards;
  }
  @keyframes loaderAnim {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
  }


#fireSection{
  position:absolute;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* CANVAS */
#fireCanvas{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  opacity:.35; /* GENEL ŞEFFAFLIK */
}

/* DOM MERKEZ ALEV */
#fireContainer{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:420px;
  height:350px;
  z-index:2;
  pointer-events:none;
  opacity:.4; /* Daha geri planda */
}

/* TABAN GLOW */
.fire-base{
  position:absolute;
  bottom:0;
  left:50%;
  width:220px;
  height:70px;
  transform:translateX(-50%);
  background:radial-gradient(circle,
      rgba(110,20,0,0.6) 0%,
      rgba(70,15,0,0.4) 40%,
      transparent 75%);
  filter:blur(45px);
  animation:baseFlicker 3s infinite alternate ease-in-out;
}

@keyframes baseFlicker{
  0%{transform:translateX(-50%) scale(1);opacity:.6;}
  100%{transform:translateX(-50%) scale(1.08);opacity:.8;}
}

/* ALEV PARTICLE */
.fire-particle{
  position:absolute;
  bottom:0;
  border-radius:50% 50% 40% 40%;
  transform-origin:center bottom;
  background:radial-gradient(circle at 50% 70%,
      rgba(140,20,0,.55) 0%,
      rgba(110,30,0,.45) 40%,
      rgba(80,25,0,.35) 65%,
      rgba(40,10,0,.2) 85%,
      transparent 100%);
  animation:flameRise ease-out forwards;
  filter:blur(6px);
}

@keyframes flameRise{
  0%{transform:translateY(0) scaleX(1) scaleY(1);opacity:.6;}
  50%{transform:translateY(-70px) scaleX(.85) scaleY(1.25);opacity:.5;}
  100%{transform:translateY(-160px) scaleX(.6) scaleY(1.6);opacity:0;}
}

.bink-signature {
    position: relative;
    display: inline-block;
        font-family: "DM Sans", sans-serif;
    text-decoration: none;
   
    transition: all 0.4s ease;
    font-size: 20px;
    font-weight: bolder;
}
.bink-signature span {
    position: relative;
    font-weight: 800;
    display: inline-block;

    background: linear-gradient(
        120deg,
        #5f5f63 0%,
        #7a7a80 25%,
        #888890 45%,
        #c2c2c8 50%,
        #888890 55%,
        #7a7a80 75%,
        #5f5f63 100%
    );

    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: greenShine 3.2s linear infinite;

    /* Koyu premium shadow */
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.45))
            drop-shadow(0 0 6px rgba(0, 0, 0, 0.35));
}

@keyframes greenShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


/* Hover'da daha belirgin olsun */
.bink-signature:hover span {
    transform: scale(1.15);
}