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

:root {
  --bg: #0d0d0d;
  --bg-card: #161616;
  --orange: #FF6B2B;
  --orange-dark: #e05518;
  --text: #f0f0f0;
  --text-muted: #888;
  --border: #252525;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ── SITE HEADER (announce bar + nav într-un singur container fix) ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announce-bar strong { font-weight: 700; }

.announce-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.announce-bar a:hover { border-bottom-color: #fff; }

/* ── NAV ── */
nav {
  height: 80px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 60px;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,43,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: breathe 7s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-logo {
  width: 700px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(255,107,43,0.5));
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, black 100%, transparent 140%);
  mask-image: radial-gradient(circle closest-side at 50% 50%, black 100%, transparent 140%);
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-title span { color: var(--orange); }

.hero-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 1.75rem auto;
  position: relative;
  z-index: 1;
}

.hero-sub, .hero-sub a {
  color: var(--text);
  text-decoration: none;
}

.hero-sub {
  font-size: 1rem;
  letter-spacing: 1px;
  max-width: 500px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, color 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.btn-outline:hover {
  background: rgba(255,107,43,0.1);
  transform: translateY(-2px);
}

.scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bobDown 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

@keyframes bobDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── HOME SECTIONS ── */
.home-about {
  padding: 7rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 2rem;
}

.section-text {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

.home-cards {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.home-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}

.card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0.8;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

.card-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── PAGE HEADER ── */
.page-header {
  padding-top: 80px;
  background: linear-gradient(160deg, #111 0%, #1a0800 100%);
  padding-bottom: 3.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}

.page-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── MENIU CTA BANNER ── */
.meniu-cta {
  background: linear-gradient(135deg, #1a0800 0%, #111 50%, #1a0800 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.meniu-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,107,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.meniu-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.meniu-cta-label {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.meniu-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.meniu-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.meniu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 3rem;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 30px rgba(255,107,43,0.3);
}

.meniu-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,107,43,0.4);
}

.meniu-cta-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.meniu-cta-btn:hover .meniu-cta-btn-arrow {
  transform: translateX(4px);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
  padding: 3rem 2rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 2px dashed #2a2a2a;
}

.gallery-placeholder-icon {
  font-size: 2rem;
  opacity: 0.2;
}

.gallery-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.4;
}

.gallery-notice {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 1.25rem 2rem;
  background: rgba(255,107,43,0.06);
  border: 1px solid rgba(255,107,43,0.18);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── MENU ── */
.menu-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.menu-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  margin-top: 2.5rem;
}

.menu-tab {
  padding: 1rem 2.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}

.menu-tab:hover { color: var(--text); }

.menu-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.menu-panel {
  display: none;
  text-align: center;
}

.menu-panel.active { display: block; }

.menu-panel img {
  max-width: 100%;
  width: 720px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.menu-panel-caption {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.menu-panel-image {
  text-align: center;
}

.menu-panel-image img {
  max-width: 100%;
  width: 720px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: inline-block;
}

/* ── SUB-NAVIGARE MENIU ── */
.tmenu-subnav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tmenu-subnav-btn {
  padding: 0.5rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.tmenu-subnav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,43,0.06);
}

/* ── TEXT MENU ── */
.tmenu-wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.tmenu-section {
  margin-bottom: 3rem;
}

#tab-bauturi .tmenu-section,
#tab-mancare .tmenu-section,
#tab-cartofi .tmenu-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

#tab-bauturi .tmenu-section .tmenu-section-title,
#tab-mancare .tmenu-section .tmenu-section-title,
#tab-cartofi .tmenu-section .tmenu-section-title {
  border-bottom-color: var(--border);
}

/* ── FUNDALURI BĂUTURI ── */
#tab-bauturi .tmenu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
#tab-bauturi .tmenu-section > * { position: relative; z-index: 1; }

#tab-mancare .tmenu-section::before,
#tab-cartofi .tmenu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
#tab-mancare .tmenu-section > * { position: relative; z-index: 1; }
#tab-cartofi .tmenu-section > * { position: relative; z-index: 1; }

.bauturi-bg-racoritoare::before  { background-image: url('../fundal bauturi/fundal bauturi sticla.jpg'); }
.bauturi-bg-energy::before       { background-image: url('../fundal bauturi/fundal energy drinks.jpg'); }
.bauturi-bg-fresh::before        { background-image: url('../fundal bauturi/fundal fresh si limonada.jpg'); }
.bauturi-bg-bere::before         { background-image: url('../fundal bauturi/fundal bere.jpg'); }
.bauturi-bg-virgin::before       { background-image: url('../fundal bauturi/fundal virgin cocktails.jpg'); }
.bauturi-bg-cafea::before        { background-image: url('../fundal bauturi/fundal cafea.jpg'); }
.bauturi-bg-spritzer::before     { background-image: url('../fundal bauturi/fundal spritzer.jpg'); }
.bauturi-bg-cocktails::before    { background-image: url('../fundal bauturi/fundal cocktails.jpg'); }
.bauturi-bg-gin::before          { background-image: url('../fundal bauturi/fundal gin.jpg'); }
.bauturi-bg-longdrinks::before   { background-image: url('../fundal bauturi/fundal long drinks.jpg'); }
.bauturi-bg-spirits::before      { background-image: url('../fundal bauturi/fundal spirits.jpg'); }
.bauturi-bg-shots::before        { background-image: url('../fundal bauturi/fundal shots.jpg'); }
.mancare-bg-fastfood::before     { background-image: url('../fundal mancaruri/fundal fast food.jpg'); }
.mancare-bg-cartofi::before      { background-image: url('../fundal mancaruri/fundal cartofi.jpg'); }
.mancare-bg-sosuri::before       { background-image: url('../fundal mancaruri/fundal sosuri.jpg'); }

/* ── HAPPY HOUR BANNER ── */
.happy-hour-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,107,43,0.35);
  max-width: 380px;
}
.happy-hour-img {
  display: block;
  width: 100%;
  height: auto;
}
.happy-hour-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.0) 40%, rgba(13,13,13,0.88) 100%);
  z-index: 1;
}
.happy-hour-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  width: 100%;
}
.happy-hour-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.happy-hour-time {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.happy-hour-offer {
  font-size: 1.05rem;
  color: rgba(240,240,240,0.85);
}
.happy-hour-offer strong {
  color: var(--orange);
  font-weight: 700;
}

.tmenu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--orange);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.tmenu-section-title span {
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 1rem;
}

.tmenu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.tmenu-item:last-child { border-bottom: none; }

.tmenu-item-left { flex: 1; min-width: 0; }

.tmenu-item-name {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.tmenu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tmenu-item-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.97rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
}

.tmenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.tmenu-special {
  background: linear-gradient(135deg, #1a0800, #111);
  border: 1px solid rgba(255,107,43,0.3);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.tmenu-special-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.tmenu-special h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.tmenu-special p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tmenu-special-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.tmenu-sizes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tmenu-size-card {
  flex: 1;
  min-width: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.25s;
}

.tmenu-size-card:hover { border-color: var(--orange); }

.tmenu-size-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.tmenu-size-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tmenu-size-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
}

.tmenu-subsection-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 2.5rem 0 1rem;
  display: block;
}

.tmenu-vinerie {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.tmenu-vinerie-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

.tmenu-vinerie-bg-sarica::before    { background-image: url('../Logo sarica.jpg'); }
.tmenu-vinerie-bg-jidvei::before    { background-image: url('../logo jidvei.jpg'); }
.tmenu-vinerie-bg-murfatlar::before { background-image: url('../Logo murfatlar.jpg'); }
.tmenu-vinerie-bg-purcari::before   { background-image: url('../logo purcari.jpg'); }
.tmenu-vinerie-bg-spumant::before   { background-image: url('../vin spumant.jpg'); }

.tmenu-vinerie-bg > * {
  position: relative;
  z-index: 1;
}

.tmenu-vinerie-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 0.65rem;
  margin-bottom: 1.25rem;
}

.tmenu-vinerie-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: 0.5px;
}

.tmenu-vinerie-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tmenu-pahar-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tmenu-pahar-card {
  flex: 1;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tmenu-pahar-card > * {
  position: relative;
  z-index: 1;
}

.tmenu-pahar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.tmenu-pahar-alb::before {
  background-image: url('https://images.pexels.com/photos/51970/a-glass-of-wine-alcohol-white-wine-51970.jpeg?auto=compress&cs=tinysrgb&w=600');
}

.tmenu-pahar-rose::before {
  background-image: url('https://images.pexels.com/photos/15186519/pexels-photo-15186519.jpeg?auto=compress&cs=tinysrgb&w=600');
}

.tmenu-pahar-spumant::before {
  background-image: url('https://images.pexels.com/photos/3036525/pexels-photo-3036525.jpeg?auto=compress&cs=tinysrgb&w=600');
}

.tmenu-pahar-card .tmenu-item-name {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.tmenu-promo-aniversarium-alb,
.tmenu-promo-aniversarium-rose {
  position: relative;
  overflow: hidden;
}

.tmenu-promo-aniversarium-alb > *,
.tmenu-promo-aniversarium-rose > * {
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}

.tmenu-promo-aniversarium-rose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../aniversarium rose.png') center/contain no-repeat;
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}

.tmenu-promo-aniversarium-rose > * {
  position: relative;
  z-index: 1;
}

.tmenu-promo-aniversarium-alb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../aniversarium alb.png') center/contain no-repeat;
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}

.tmenu-promo-aniversarium-alb > * {
  position: relative;
  z-index: 1;
}

.tmenu-promo {
  background: rgba(255,107,43,0.08);
  border: 1px solid rgba(255,107,43,0.25);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tmenu-promo h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.95);
  color: #fff;
}

.aniv-nr {
  font-size: 2.8rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,107,43,0.6), 0 2px 8px rgba(0,0,0,0.95);
  vertical-align: middle;
}

.tmenu-promo p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.tmenu-promo-price {
  text-align: center;
  flex-shrink: 0;
}

.tmenu-promo-price .old {
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
  text-decoration-thickness: 2px;
  color: #e74c3c;
  font-size: 1.8rem;
  font-weight: 700;
}

.tmenu-promo-price .new {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  text-shadow: 0 0 20px rgba(255,107,43,0.8), 0 2px 8px rgba(0,0,0,0.9);
  letter-spacing: 1px;
}

.tmenu-promo-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .tmenu-grid { grid-template-columns: 1fr; }
  .tmenu-sizes { flex-direction: column; }
  .tmenu-pahar-grid { flex-direction: column; }
}

/* ── ALLERGENS ── */
.allergens-wrap {
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.allergen-notice {
  background: var(--bg-card);
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.allergen-notice strong { color: var(--text); }

.allergen-list-wrap {
  display: flex;
  flex-direction: column;
}

.allergen-cat-header {
  background: #111;
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  margin-top: 0.5rem;
}

.allergen-cat-header:first-child {
  margin-top: 0;
}

.allergen-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.allergen-row:hover {
  background: rgba(255,107,43,0.04);
}

.allergen-name {
  flex: 0 0 260px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding-top: 0.15rem;
}

.allergen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.atag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(255,107,43,0.12);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  white-space: nowrap;
}

.atag-none {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text-muted);
  font-weight: 400;
}

.allergen-footer {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,107,43,0.06);
  border: 1px solid rgba(255,107,43,0.15);
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2.25rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(255,107,43,0.08);
  border: 1px solid rgba(255,107,43,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item-body strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.contact-item-body span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-box iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  filter: grayscale(80%) invert(90%) contrast(95%);
}

.map-box-placeholder {
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

.map-icon {
  font-size: 3rem;
  opacity: 0.18;
}

.map-box-placeholder p {
  font-size: 0.85rem;
  max-width: 240px;
  line-height: 1.7;
}

.map-box-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--orange);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: border-color 0.25s, background 0.25s;
}

.social-btn:hover {
  border-color: var(--orange);
  background: rgba(255,107,43,0.08);
}

.social-btn i {
  font-size: 1rem;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 72px;
  margin-bottom: 1.75rem;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--orange); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.45;
}

.footer-designed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-designed span {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.5px;
}

.footer-nexa-logo {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-designed a:hover .footer-nexa-logo {
  opacity: 1;
}

/* ── WINE SECTION ── */
.wine-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.wine-legend-title {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.wine-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  flex-shrink: 0;
}

.wine-tag::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wine-tag-alb  { color: #c9a84c; border: 1px solid rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }
.wine-tag-alb::before  { background: #c9a84c; }

.wine-tag-rose { color: #d4688a; border: 1px solid rgba(212,104,138,0.4); background: rgba(212,104,138,0.08); }
.wine-tag-rose::before { background: #d4688a; }

.wine-tag-rosu { color: #c04040; border: 1px solid rgba(192,64,64,0.4); background: rgba(192,64,64,0.08); }
.wine-tag-rosu::before { background: #c04040; }

.wine-tag-spumant { color: #b8a850; border: 1px solid rgba(184,168,80,0.4); background: rgba(184,168,80,0.08); }
.wine-tag-spumant::before { background: #b8a850; }

.wine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.wine-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.wine-card-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  background: linear-gradient(90deg, rgba(255,107,43,0.07) 0%, transparent 100%);
}

.wine-card-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
}

.wine-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.wine-card-header span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.wine-card-body { padding: 0.5rem 1.5rem 1.25rem; }

.wine-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(37,37,37,0.7);
}

.wine-item:last-child { border-bottom: none; }

.wine-item-name {
  flex: 1;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.3;
}

.wine-item-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.wine-card-full { grid-column: 1 / -1; }

.wine-pahar-wrap {
  margin-top: 2rem;
}

.wine-pahar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.wine-pahar-card {
  border: 1px solid var(--border);
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.wine-pahar-card:hover { border-color: var(--orange); }

.wine-pahar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
}

.wine-pahar-card.alb::after  { background: #c9a84c; }
.wine-pahar-card.rose::after { background: #d4688a; }
.wine-pahar-card.spumant::after { background: #b8a850; }

.wine-pahar-card .wine-tag {
  margin-bottom: 0.75rem;
}

.wine-pahar-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.wine-pahar-card-vol {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 0.85rem;
}

.wine-pahar-card-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}

.wine-aniversarium {
  margin-top: 2rem;
  background: linear-gradient(135deg, #1a1200 0%, #111 50%, #1a1200 100%);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2rem;
}

.wine-aniversarium-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.wine-aniversarium-title span {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 0.5rem;
}

.wine-aniversarium-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #c9a84c;
}

.wine-aniversarium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wine-aniversarium-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem;
  text-align: center;
}

.wine-aniversarium-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.wine-aniversarium-card .old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.wine-aniversarium-card .new {
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  display: block;
  margin-top: 0.25rem;
}

@media (max-width: 700px) {
  .wine-grid { grid-template-columns: 1fr; }
  .wine-card-full { grid-column: 1; }
  .wine-pahar-cards { grid-template-columns: 1fr; }
  .wine-aniversarium-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */

/* TABLETĂ (max 1024px) */
@media (max-width: 1024px) {
  .hero-logo { width: 580px; }

  .home-about { padding: 5rem 2rem; }

  .home-cards { padding: 4rem 2rem; }

  .meniu-cta { padding: 4rem 2rem; }

  .tmenu-wrap { padding: 0 1.5rem 4rem; }

  .contact-wrap { gap: 2.5rem; }

  .allergens-wrap { padding: 2.5rem 1.5rem 4rem; }
}

/* MOBIL (max 820px) */
@media (max-width: 820px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 116px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    padding: 2rem 2.5rem;
    gap: 1.75rem;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .nav-links.open { display: flex; }

  .hero-logo { width: 460px; }

  .home-about { padding: 4rem 1.5rem; }

  .home-cards { padding: 3.5rem 1.5rem; }

  .meniu-cta { padding: 3.5rem 1.5rem; }
  .meniu-cta h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); }

  .page-header { padding-bottom: 2.5rem; }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-tab {
    padding: 0.85rem 1rem;
    flex: 1;
    font-size: 0.7rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 2rem 1.5rem 4rem;
  }

  .tmenu-wrap { padding: 0 1.25rem 3.5rem; }

  .tmenu-vinerie { padding: 1.25rem 1.25rem; }

  .tmenu-promo { flex-direction: column; text-align: center; align-items: center; gap: 1rem; }

  .allergens-wrap { padding: 2rem 1rem 3.5rem; }

  .allergen-name { flex: 0 0 180px; font-size: 0.85rem; }

  .footer-links { gap: 1.5rem; }
}

/* TELEFON MIC (max 480px) */
@media (max-width: 480px) {
  .hero-logo { width: 320px; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub { font-size: 1.35rem !important; letter-spacing: 2px !important; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }

  .menu-tabs { flex-direction: column; border-bottom: none; }
  .menu-tab { border-bottom: 1px solid var(--border); border-right: none; }
  .menu-tab.active { border-left: 2px solid var(--orange); background: rgba(255,107,43,0.06); }

  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

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

  .home-about { padding: 3rem 1.25rem; }
  .home-cards { padding: 3rem 1.25rem; }
  .meniu-cta { padding: 3rem 1.25rem; }

  .page-header h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .tmenu-wrap { padding: 0 1rem 3rem; }
  .tmenu-vinerie { padding: 1rem; }
  .tmenu-item { gap: 0.75rem; }
  .tmenu-item-name { font-size: 0.88rem; }
  .tmenu-item-price { font-size: 0.88rem; }
  .tmenu-section-title { font-size: 1.2rem; }

  .tmenu-pahar-grid { flex-direction: column; }
  .tmenu-pahar-card { width: 100%; }

  /* Aniversarium grid → 1 coloană */
  #tab-vinuri .tmenu-section div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .contact-wrap { padding: 2.5rem 1.25rem 3rem; }
  .map-box { height: 280px; }

  .allergens-wrap { padding: 1.5rem 0.75rem 3rem; }

  .allergen-row { flex-direction: column; gap: 0.5rem; }
  .allergen-name { flex: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem 1rem 3rem;
    gap: 0.5rem;
  }

  .footer-links { gap: 1rem; font-size: 0.65rem; }
  .footer-copy { font-size: 0.7rem; }
}
