:root{
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --card: #151515;
  --card-2: #1b1b1b;
  --yellow: #f5c400;
  --yellow-2: #ffcc00;
  --text: #ffffff;
  --muted: #bdbdbd;
  --line: rgba(255, 204, 0, 0.15);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

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

html{
  scroll-behavior: smooth;
}

body{
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 204, 0, 0.08), transparent 20%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: var(--text);
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero{
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 204, 0, 0.10), transparent 35%),
    linear-gradient(180deg, rgba(255, 204, 0, 0.04), rgba(0,0,0,0.15));
  pointer-events: none;
}

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

.logo{
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: #000;
  box-shadow:
    0 0 0 6px rgba(255, 204, 0, 0.08),
    0 12px 35px rgba(0,0,0,0.45);
}

.business-name{
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--yellow-2);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.business-subtitle{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CATEGORY AREA */
.categories{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 204, 0, 0.08);
}

.category-buttons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
}

.cat-btn{
  border: 1px solid rgba(255, 204, 0, 0.18);
  background: linear-gradient(180deg, #171717, #101010);
  color: #f7f7f7;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}

.cat-btn:hover{
  border-color: rgba(255, 204, 0, 0.45);
  color: var(--yellow-2);
  transform: translateY(-1px);
}

.cat-btn.active{
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #000;
  border-color: var(--yellow);
  box-shadow:
    0 8px 20px rgba(255, 204, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* MENU */
.menu-section{
  padding: 30px 0 50px;
}

.menu-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.menu-card{
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 204, 0, 0.10);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-card:hover{
  transform: translateY(-5px);
  border-color: rgba(255, 204, 0, 0.30);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255, 204, 0, 0.06);
}

.menu-image-wrap{
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255, 204, 0, 0.08);
}

.menu-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-image-wrap img{
  transform: scale(1.05);
}

.menu-card-body{
  padding: 18px;
}

.menu-title-row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-title-row h3{
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}

.price{
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #000;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(255, 204, 0, 0.18);
}

.menu-card p{
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* İSTEĞE BAĞLI TAG */
.menu-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #000;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(0,0,0,0.30);
}

.menu-image-wrap{
  position: relative;
}

/* FOOTER FEEL */
.menu-section::after{
  content: "";
  display: block;
  width: 100%;
  height: 40px;
}

/* TABLET */
@media (min-width: 700px){
  .menu-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .hero{
    min-height: 390px;
  }

  .business-name{
    font-size: 2.7rem;
  }

  .business-subtitle{
    font-size: 1.05rem;
  }

  .menu-image-wrap{
    height: 240px;
  }
}

/* DESKTOP */
@media (min-width: 1024px){
  .menu-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .hero{
    min-height: 430px;
  }

  .logo{
    width: 135px;
    height: 135px;
  }

  .menu-image-wrap{
    height: 250px;
  }
}
.price-box{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.old-price{
  font-size: 0.8rem;
  color: #888;
  text-decoration: line-through;
  opacity: 0.8;
}

.new-price{
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #000;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(255, 204, 0, 0.2);
}
/* Menü içerik listesi */
.menu-card-body p{
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Soluna tik / ikon */
.menu-card-body p::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-2);
  font-size: 1rem;
  font-weight: bold;
}

/* Son elemanın alt boşluğu azalsın */
.menu-card-body p:last-child{
  margin-bottom: 0;
}
.menu-extra{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 204, 0, 0.06);
  border: 1px solid rgba(255, 204, 0, 0.12);
}

.extra-text{
  font-size: 0.82rem;
  color: #b8b8b8;
  line-height: 1;
}

.extra-price{
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
  background: var(--yellow-2);
  padding: 2px 7px;
  border-radius: 6px;
  line-height: 1;
}
.portion-box{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portion-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 204, 0, 0.08);
}

.portion-name{
  font-size: 0.85rem;
  color: #ccc;
}

.portion-price{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-2);
}
.menu-title{
  margin: 30px 0 15px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow-2);
  letter-spacing: 1px;
  position: relative;
  padding-left: 14px;
}

/* sol çizgi */
.menu-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(var(--yellow), var(--yellow-2));
  border-radius: 2px;
}
.menu-footer{
  margin-top: 40px;
  padding: 22px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 204, 0, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255, 204, 0, 0.03));
}

.footer-contact{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-phone{
  background: #151515;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-map{
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #000;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.16);
}

.footer-contact:hover{
  transform: translateY(-2px);
}

.footer-icon{
  font-size: 1rem;
  line-height: 1;
}

.footer-text{
  line-height: 1;
}

.footer-map-box iframe{
  display: block;
  width: 100%;
  height: 230px;
}