/* ===== Flory Pizza — stiluri ===== */
:root {
  --bg: #151110;
  --bg-soft: #1d1713;
  --card: #211a15;
  --card-hover: #281f18;
  --line: #382c22;
  --text: #f4ecdb;
  --muted: #b3a28a;
  --red: #c0392b;
  --red-dark: #96271c;
  --gold: #d4a53f;
  --gold-light: #e8c56a;
  --gold-dark: #a37c26;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    var(--bg);
}

.container { width: min(1100px, 92%); margin: 0 auto; }

h1, h2, h3, .brand-name { font-family: 'Marcellus', 'Times New Roman', serif; font-weight: 400; }

::selection { background: var(--red); color: #fff; }

/* ===== Butoane ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: scale(.97); }

.btn-call {
  background: linear-gradient(180deg, #cf4433, var(--red) 55%, var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(192, 57, 43, .35), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-call:hover { box-shadow: 0 6px 20px rgba(192, 57, 43, .5), inset 0 1px 0 rgba(255, 255, 255, .18); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-big { padding: 15px 30px; font-size: 17px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 17, 16, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.brand-name { font-size: 23px; letter-spacing: .5px; }
.brand-name em { color: var(--gold); font-style: normal; }

.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .3px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--gold); border-color: var(--gold); }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(212, 165, 63, .09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(192, 57, 43, .08) 0%, transparent 50%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 56px;
}
.hero-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); text-shadow: 0 2px 18px rgba(192, 57, 43, .35); }
.hero-sub { color: var(--muted); font-size: 18px; max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-note {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before { content: "🛵"; }

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(145deg, var(--gold-dark), var(--gold-light) 45%, var(--gold-dark));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .5);
  transform: rotate(1.2deg);
}
.hero-frame img {
  display: block;
  width: 100%;
  border-radius: 14px;
}
.hero-stamp {
  position: absolute;
  top: -26px;
  right: -18px;
  font-family: 'Marcellus', serif;
  font-size: 17px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 2px;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: 50%;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  background: rgba(21, 17, 16, .82);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .4);
  opacity: .92;
}

/* ===== Titluri de secțiune ===== */
.section-title {
  font-size: clamp(32px, 4vw, 44px);
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}
.section-title::after {
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}
.section-title span { padding: 0 4px; }

/* ===== Meniu ===== */
.menu-section { padding: 76px 0 84px; }

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -14px 0 46px;
}
.menu-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .6px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .15s ease;
}
.menu-nav a:hover {
  color: #1d1713;
  background: var(--gold);
  border-color: var(--gold);
}

/* Plăcuță aurie pentru categorii — ca pe meniul printat */
.menu-cat {
  text-align: center;
  margin: 52px 0 30px;
}
.menu-cat span {
  display: inline-block;
  font-size: 21px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #241a08;
  padding: 10px 42px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .4);
  position: relative;
}
.menu-cat span::before,
.menu-cat span::after {
  content: "❖";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(36, 26, 8, .6);
}
.menu-cat span::before { left: 14px; }
.menu-cat span::after { right: 14px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}

.menu-item {
  padding: 15px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.menu-item:hover {
  background: var(--card-hover);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.mi-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mi-name {
  font-family: 'Marcellus', serif;
  font-size: 17.5px;
  letter-spacing: .4px;
}
.mi-dots {
  flex: 1;
  border-bottom: 2px dotted #4d3f31;
  transform: translateY(-4px);
}
.mi-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}
.mi-price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.mi-desc {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 4px;
  line-height: 1.5;
}

.menu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.menu-two-col .menu-grid { grid-template-columns: 1fr; }

/* ===== Contact ===== */
.contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 165, 63, .07) 0%, transparent 55%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 76px 0;
  text-align: center;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
  text-align: left;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s ease, transform .15s ease;
}
.contact-card:hover { transform: translateY(-2px); }
a.contact-card:hover { border-color: var(--red); }
.contact-icon {
  font-size: 22px;
  width: 48px;
  height: 48px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.contact-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .5px;
}
.contact-card p { color: var(--muted); font-size: 14.5px; }

/* ===== Footer ===== */
.footer {
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.footer-logo {
  width: 56px;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
}

/* ===== Buton apel plutitor ===== */
.fab-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #cf4433, var(--red-dark));
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(192, 57, 43, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(192, 57, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

/* ===== Mobil ===== */
@media (max-width: 860px) {
  .hero { padding: 44px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stamp { width: 88px; height: 88px; font-size: 14px; top: -18px; right: -6px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-two-col { grid-template-columns: 1fr; }
  .menu-cat span { padding: 9px 30px; font-size: 18px; letter-spacing: 3px; }
  .contact-cards { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header .btn-call { margin-left: auto; }
  .fab-call { display: flex; }
}
