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

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

:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --text: #f0ead6;
  --muted: #8a8070;
  --border: #2a2520;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-brand span:last-child {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 100px 5% 60px;
  position: relative;
  background: radial-gradient(ellipse at center top, #1a140a 0%, #0d0d0d 70%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-logo {
  width: 460px;
  height: 460px;
  object-fit: contain;
  margin-bottom: 28px;
  mix-blend-mode: lighten;
  filter: brightness(1.1) drop-shadow(0 0 24px rgba(201,168,76,0.2));
}

.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f0ead6, var(--gold-light), #f0ead6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #0d0d0d;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
}

/* ── SECTION LAYOUT ── */
.page-header {
  padding: 140px 5% 60px;
  text-align: center;
  background: linear-gradient(180deg, #141008 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.section-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 50px;
}

/* ── MENU CARDS ── */
.menu-section {
  padding: 60px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-section + .menu-section {
  border-top: 1px solid var(--border);
}

.menu-badge {
  display: inline-block;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.menu-item {
  padding: 24px 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}

.menu-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: var(--bg3);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}

.menu-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.menu-item-weight {
  font-size: 0.68rem;
  color: var(--muted);
  display: block;
  text-align: right;
  margin-top: 2px;
}

.menu-item-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Extra table */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  gap: 12px;
}

.extra-item-name { flex: 1; }
.extra-item-price { color: var(--gold); font-weight: 600; white-space: nowrap; font-size: 0.78rem; }

.allergen-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 1px;
  margin-top: 40px;
  padding: 16px;
  border-top: 1px solid var(--border);
}

/* ── GALLERY ── */
.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.88);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.4);
}

.gallery-placeholder {
  background: var(--bg3);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  gap: 12px;
  padding: 20px;
}

.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
  stroke: var(--gold);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid var(--border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.gallery-tab {
  padding: 12px 36px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Raleway', sans-serif;
}

.gallery-tab.active {
  background: var(--gold);
  color: #0d0d0d;
}

.gallery-tab:hover:not(.active) {
  color: var(--gold);
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card img,
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.85) grayscale(20%);
  transition: filter 0.3s;
}

.team-photo-placeholder {
  background: var(--bg3);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  gap: 10px;
}

.team-photo-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.35;
  stroke: var(--gold);
}

.team-card:hover img { filter: brightness(1) grayscale(0%); }

.team-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-top: 14px;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  margin-bottom: 36px;
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.contact-value {
  font-size: 1rem;
  line-height: 1.7;
}

.contact-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 500;
}

.map-container {
  background: var(--bg3);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

.map-placeholder {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
}

.footer-nexa a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-nexa span {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-nexa img {
  height: 42px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-nexa a:hover span { color: var(--text); }
.footer-nexa a:hover img { opacity: 1; }

/* ── HOME FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 20px;
}

.feature-card {
  padding: 48px 36px;
  background: var(--bg2);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s;
}

.feature-card:hover { border-color: rgba(201,168,76,0.4); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 900px) {
  .gallery-grid { columns: 2; column-gap: 8px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 36px 28px; }
  .map-container { aspect-ratio: 16/9; }
}

/* Hamburger nav: apare când cele 5 linkuri nu mai încap */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 0 6%;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 99;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-bottom: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 0 4%; height: 64px; }
  .nav-links { top: 64px; }
  .nav-brand span:first-child { font-size: 0.95rem; }
  .nav-logo img { height: 40px; }

  .hero { padding: 90px 6% 50px; }
  .hero-logo { width: 280px; height: 280px; }
  .hero-tagline { letter-spacing: 3px; }
  .hero-sub { font-size: 0.78rem; letter-spacing: 1px; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: 100%; max-width: 300px; text-align: center; }

  .page-header { padding: 104px 6% 40px; }
  .page-header h1 { letter-spacing: 1px; }

  section { padding: 50px 5%; }

  .menu-section { padding: 40px 5%; }
  .menu-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .menu-item { padding: 20px 18px; }

  .gallery-grid { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }

  .alergeni-grid { grid-template-columns: 1fr; }

  footer { flex-direction: column; text-align: center; padding: 28px 5%; gap: 10px; }
}

/* Mobile mic */
@media (max-width: 480px) {
  .hero-logo { width: 220px; height: 220px; }
  .hero { padding: 80px 5% 40px; }
  .hero h1 { letter-spacing: 1px; }
  .hero-sub { font-size: 0.7rem; letter-spacing: 0.5px; }
  .hero-divider { margin: 0 auto 32px; }

  .gallery-grid { columns: 1; }

  .menu-item { padding: 16px 14px; }
  .extra-item { padding: 10px 12px; font-size: 0.76rem; }

  .section-title { letter-spacing: 1.5px; }
  .page-header { padding: 88px 5% 28px; }

  .alergen-card { padding: 18px 16px; gap: 14px; }
  .alergen-icon { width: 38px; height: 38px; font-size: 1.6rem; }

  .contact-info-block { margin-bottom: 24px; }
  .contact-divider { margin: 24px 0; }
  .social-links { gap: 8px; }
  .social-link { padding: 8px 12px; font-size: 0.76rem; }

  .map-container { aspect-ratio: 1/1; }
}
