@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --rest-bg: #0a0a0a;
  --rest-surface: #171717;
  --rest-accent: #d4af37; 
  --rest-accent-dark: #b5952f;
  --rest-text: #f3f4f6;
  --rest-text-muted: #9ca3af;
  --rest-border: #262626;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--rest-bg);
  color: var(--rest-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--rest-accent);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--rest-text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 4rem;
}

.btn-gold {
  display: inline-block;
  background-color: transparent;
  color: var(--rest-accent);
  border: 1px solid var(--rest-accent);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold:hover {
  background-color: var(--rest-accent);
  color: var(--rest-bg);
}

.btn-solid {
  background-color: var(--rest-accent);
  color: var(--rest-bg);
  border: 1px solid var(--rest-accent);
}

.btn-solid:hover {
  background-color: transparent;
  color: var(--rest-accent);
}

.rest-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.rest-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--rest-accent);
}

.nav-links {
  display: none;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--rest-accent);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--rest-bg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  color: var(--rest-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.menu-nav-wrap {
  position: sticky;
  top: 73px; 
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  border-bottom: 1px solid var(--rest-border);
  border-top: 1px solid var(--rest-border);
}

.menu-cat-nav {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.menu-cat-nav::-webkit-scrollbar {
  display: none;
}

.menu-cat-nav a {
  white-space: nowrap;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rest-text-muted);
  font-weight: 500;
}

.menu-cat-nav a.active, .menu-cat-nav a:hover {
  color: var(--rest-accent);
}

.menu-section {
  padding: 6rem 0;
}

.menu-category {
  margin-bottom: 5rem;
}

.cat-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cat-title {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cat-desc {
  color: var(--rest-accent);
  font-style: italic;
  font-family: var(--font-heading);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 4rem;
}

@media (min-width: 850px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-item {
  position: relative;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-title {
  font-size: 1.25rem;
  color: var(--rest-accent);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  background: var(--rest-surface);
  border: 1px solid var(--rest-accent);
  color: var(--rest-accent);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.tag-spicy { border-color: #ef4444; color: #ef4444; }

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  margin: 0 1rem;
  position: relative;
  top: -4px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--rest-text-muted);
  max-width: 90%;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.special-card {
  background: var(--rest-surface);
  border: 1px solid var(--rest-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.special-card:hover {
  border-color: var(--rest-accent);
  transform: translateY(-5px);
}

.special-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.special-content {
  padding: 1.5rem;
  text-align: center;
}

.special-content .menu-item-title {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.special-content .menu-item-price {
  display: block;
  margin-top: 1rem;
  color: var(--rest-accent);
}

.reservation-section {
  background: url('images/1.jpg') center/cover fixed;
  padding: 8rem 0;
  position: relative;
  text-align: center;
}

.reservation-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.85);
}

.res-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.rest-footer {
  background-color: var(--rest-surface);
  border-top: 1px solid var(--rest-border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-col p {
  color: var(--rest-text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: inline-flex;
  width: 40px; height: 40px;
  border: 1px solid var(--rest-border);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--rest-accent);
}

.footer-socials a:hover {
  background: var(--rest-accent);
  color: var(--rest-bg);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--rest-border);
  color: var(--rest-text-muted);
  font-size: 0.85rem;
}
