/* ===== NIKO'S PIZZA — PREMIUM DESIGN ===== */
:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --red-glow: rgba(192,57,43,0.3);
  --gold: #f39c12;
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #f0ece4;
  --dim: #9a9490;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.logo { height: 48px; width: auto; object-fit: contain; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-name span { color: var(--red); }

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

nav a:hover { color: var(--text); background: var(--glass); }

.call {
  background: var(--red) !important;
  color: white !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  transition: all 0.2s !important;
  white-space: nowrap;
}

.call:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--red-glow);
}

.lang-toggle {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--dim);
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.lang-toggle:hover { color: var(--text); border-color: var(--red); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.7) 60%, rgba(13,13,13,1) 100%),
    url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #ff8a80;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.highlight { color: var(--red); }

.hero p {
  font-size: 1.2rem;
  color: var(--dim);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.5);
}

.btn-secondary {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.hero-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  font-size: 0.9rem;
}

.hero-info i { color: var(--red); }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--dim);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.section-sub a { color: var(--red); text-decoration: none; }
.section-sub a:hover { text-decoration: underline; }

/* ===== FEATURES ===== */
.features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.feature-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-item p { color: var(--dim); font-size: 0.9rem; }

/* ===== MENU ===== */
#menu { background: var(--bg); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pizza-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.pizza-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(192,57,43,0.2);
  border-color: rgba(192,57,43,0.4);
}

.pizza-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.pizza-card:hover .pizza-img { transform: scale(1.05); }

.pizza-info {
  padding: 20px;
}

.pizza-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pizza-info p {
  color: var(--dim);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pizza-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.order-btn {
  background: var(--red);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.order-btn:hover { background: var(--red-dark); transform: scale(1.05); }

.menu-img-full {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 40px;
  border: 1px solid var(--border);
}

/* ===== ORDER ===== */
#order { background: var(--bg2); }

.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.order-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.order-info p { color: var(--dim); margin-bottom: 24px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--red);
  width: 24px;
  text-align: center;
}

.contact-item a { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--red); }

form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dim); }

input, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(192,57,43,0.05);
}

textarea { resize: vertical; min-height: 120px; }

.status-loading { color: var(--gold); font-size: 0.9rem; }
.status-success { color: #4caf50; font-size: 0.9rem; }

/* ===== MAP ===== */
#map { background: var(--bg); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-wrap iframe { display: block; }

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-inner strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-inner p, .footer-inner a {
  color: var(--dim);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-inner a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--dim) !important;
  transition: all 0.2s;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white !important;
  transform: translateY(-2px);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav a:not(.call) { display: none; }
  .order-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.6rem; }
  form { padding: 24px; }
  .hero-info { flex-direction: column; gap: 12px; }
}
