html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --bg: #161616;
  --bg-secondary: #1d1d1d;
  --text: #f3eee8;
  --accent: #c9a27e;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.08);
  --meta: rgba(255, 255, 255, 0.65);
  --button-bg: rgba(255, 255, 255, 0.12);
  --button-text: #ffffff;
  --overlay: rgba(0, 0, 0, 0.2);
  --shadow: rgba(0, 0, 0, 0.22);
  --heading-gradient-start: #ffffff;
  --heading-gradient-end: #c9a27e;
}

body.light {
  --bg: #f5f1eb;
  --bg-secondary: #ece5dc;
  --text: #222222;
  --card: rgba(255, 255, 255, 0.7);
  --card-border: rgba(34, 34, 34, 0.08);
  --meta: rgba(34, 34, 34, 0.7);
  --button-bg: rgba(255, 255, 255, 0.7);
  --button-text: #222222;
  --overlay: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.12);
  --heading-gradient-start: #222222;
  --heading-gradient-end: #c9a27e;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 162, 126, 0.08), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
  color: var(--text);
  transition: background 0.4s ease, color 0.4s ease;
}

/* HERO */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
    url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.top-bar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.top-bar button {
  margin-left: 10px;
  padding: 10px 12px;
  cursor: pointer;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--button-bg);
  color: var(--button-text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.top-bar button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 820px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 0;
  filter: drop-shadow(0 4px 20px rgba(201, 162, 126, 0.25));
}

/* ... ВЕСЬ ТВОЙ CSS ОСТАЁТСЯ БЕЗ ИЗМЕНЕНИЙ ДО ЭТОГО МЕСТА ... */

/* КНОПКИ (ИЗМЕНЕНЫ) */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 0;
  padding: 12px 22px;

  border-radius: 999px;
  border: 1px solid rgba(201,162,126,0.45);

  background: rgba(201,162,126,0.08);
  color: #f3eee8;

  text-decoration: none;
  font-weight: 500;
  font-size: 15px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(201,162,126,0.18);
  border-color: rgba(201,162,126,0.7);
  color: #ffffff;
}

/* СВЕТЛАЯ ТЕМА ДЛЯ КНОПОК */

body.light .btn {
  color: #222;
  background: rgba(201,162,126,0.16);
  border-color: rgba(201,162,126,0.55);
}

body.light .btn:hover {
  background: rgba(201,162,126,0.24);
}
/* SECTIONS */

section {
  padding: 90px 20px;
  text-align: center;
}

.about p,
.map p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.6;
}

.about h2,
.section-header h2,
.map h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  background: linear-gradient(90deg, var(--heading-gradient-start), var(--heading-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about h2 {
  font-size: 44px;
  margin: 0 0 24px;
}

.about p {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: 19px;
  line-height: 1.9;
  opacity: 0.92;
}

/* MENU */

.menu-section {
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 48px;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.section-text {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 28px;
}

.menu-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 30%
  );
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.menu-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.menu-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

.menu-card-content {
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.menu-card-top h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.1;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  padding: 8px 12px;
  border: 1px solid rgba(201, 162, 126, 0.35);
  border-radius: 999px;
  background: rgba(201, 162, 126, 0.08);
}

.menu-desc {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.92;
  flex: 1;
}

.menu-meta {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--meta);
}

/* MAP */

.map iframe {
  width: min(1000px, 85%);
  height: 340px;
  border: none;
  border-radius: 24px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px 20px 50px;
  opacity: 0.7;
}

/* ANIMATION */

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 980px) {
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .menu-card img {
    height: 280px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 340px;
    max-width: 88%;
    margin: 0 auto -2px;
  }

  .hero {
    padding: 110px 20px 70px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    gap: 12px;
    margin-top: 16px;
  }

  .btn {
    padding: 12px 22px;
  }

  .about p,
  .map p {
    font-size: 18px;
  }

  .about h2 {
    font-size: 34px;
  }

  .map iframe {
    width: 100%;
    height: 300px;
  }
}