/* ===== PIZZA 9 — Luxe Noir & Or ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e0c76a;
  --gold-dark: #a88a30;
  --white: #ffffff;
  --gray: #999999;
  --gray-light: #cccccc;
  --font: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95); box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  padding: 14px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font); font-size: 28px; font-weight: 700;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.nav-logo span { color: var(--white); font-weight: 300; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 75%; max-width: 340px; height: 100vh;
  background: var(--dark); z-index: 999; padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block; font-size: 16px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 998;
}
.overlay.open { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 5%; }
.hero-badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold);
  padding: 8px 24px; margin-bottom: 30px;
}
.hero-title {
  font-family: var(--font); font-size: clamp(42px, 7vw, 80px); font-weight: 700;
  line-height: 1.1; margin-bottom: 24px; color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 16px; font-weight: 300; color: var(--gray-light); letter-spacing: 1px;
  line-height: 1.8; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-btn {
  display: inline-block; padding: 16px 48px; background: var(--gold);
  color: var(--black); font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; transition: all 0.3s ease; border: 2px solid var(--gold);
}
.hero-btn:hover { background: transparent; color: var(--gold); }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font); font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.section-line {
  width: 60px; height: 2px; background: var(--gold); margin: 20px auto 0;
}

/* ===== NOS PIZZAS ===== */
.pizzas-section { background: var(--black); }
.pizza-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.pizza-card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden; transition: all 0.4s ease; position: relative;
}
.pizza-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.pizza-card-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.6s ease;
}
.pizza-card:hover .pizza-card-img { transform: scale(1.05); }
.pizza-card-body { padding: 28px; }
.pizza-card-name {
  font-family: var(--font); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.pizza-card-desc {
  font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px;
}
.pizza-card-price {
  font-family: var(--font); font-size: 24px; font-weight: 700; color: var(--gold);
}

/* ===== RÉASSURANCE ===== */
.reassurance-section { background: var(--dark); }
.reassurance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.reassurance-item {
  text-align: center; padding: 40px 20px;
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.08);
  border-radius: 12px; transition: all 0.3s ease;
}
.reassurance-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); border-color: rgba(201,168,76,0.2); }
.reassurance-icon { margin-bottom: 20px; }
.reassurance-icon svg { width: 48px; height: 48px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
.reassurance-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: 1px; }
.reassurance-subtitle { font-size: 13px; color: var(--gray); }

/* ===== ABOUT ===== */
.about-section { background: var(--black); }
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img {
  width: 100%; height: 500px; object-fit: cover;
  border: 1px solid rgba(201,168,76,0.15);
}
.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-text .section-line { margin: 0 0 24px 0; }
.about-desc {
  font-size: 15px; color: var(--gray-light); line-height: 1.9; margin-bottom: 32px;
}
.about-btn {
  display: inline-block; padding: 14px 40px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s;
}
.about-btn:hover { background: var(--gold); color: var(--black); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); border-top: 1px solid rgba(201,168,76,0.1);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font); font-size: 28px; font-weight: 700;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--white); font-weight: 300; }
.footer-desc { font-size: 14px; color: var(--gray); line-height: 1.8; max-width: 360px; }
.footer-heading {
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--gray); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-info { list-style: none; }
.footer-info li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--gray); margin-bottom: 16px;
}
.footer-info svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.5; fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  text-align: center; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 12px; color: var(--gray); letter-spacing: 1px; }

/* ===== CONTACT PAGE ===== */
.page-hero {
  height: 50vh; min-height: 350px; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1600') center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.9));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font); font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--white);
}

.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-form-wrap { background: var(--dark2); padding: 48px; border: 1px solid rgba(201,168,76,0.1); }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; background: var(--black);
  border: 1px solid rgba(201,168,76,0.15); color: var(--white);
  font-family: var(--font-body); font-size: 14px; transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit {
  display: inline-block; padding: 16px 48px; background: var(--gold);
  color: var(--black); font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; border: 2px solid var(--gold);
  cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
}
.form-submit:hover { background: transparent; color: var(--gold); }

.contact-info-wrap { display: flex; flex-direction: column; gap: 30px; }
.contact-info-card {
  background: var(--dark2); padding: 32px; border: 1px solid rgba(201,168,76,0.1);
  display: flex; align-items: flex-start; gap: 20px;
}
.contact-info-card svg { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 1.5; fill: none; flex-shrink: 0; }
.contact-info-card h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--gray); }
.contact-map {
  width: 100%; height: 250px; border: 1px solid rgba(201,168,76,0.1);
  margin-top: auto;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(1.1); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: revealFallback 0.8s ease 0.3s forwards;
}
.reveal.visible { opacity: 1; transform: translateY(0); animation: none; }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; right: 30px; background: var(--gold);
  color: var(--black); padding: 16px 32px; font-size: 14px; font-weight: 600;
  z-index: 9999; transform: translateY(100px); opacity: 0;
  transition: all 0.4s ease; border-radius: 4px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  section { padding: 70px 0; }
  .hero { min-height: 500px; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .pizza-grid { grid-template-columns: 1fr; gap: 24px; }
  .pizza-card-img { height: 220px; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reassurance-item { padding: 28px 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrap { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .reassurance-grid { grid-template-columns: 1fr; }
  .hero-btn { padding: 14px 36px; font-size: 11px; }
}

/* ===== ADMIN ===== */
.admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--black); padding: 20px;
}
.admin-login-box {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.15);
  padding: 48px; width: 100%; max-width: 440px; text-align: center;
}
.admin-login-box h1 {
  font-family: var(--font); font-size: 28px; color: var(--gold);
  margin-bottom: 8px; letter-spacing: 2px;
}
.admin-login-box p { font-size: 14px; color: var(--gray); margin-bottom: 32px; }
.admin-login-box .form-group { text-align: left; }
.admin-panel { display: none; min-height: 100vh; background: var(--black); padding: 40px 5%; }
.admin-panel h2 { font-family: var(--font); font-size: 24px; color: var(--gold); margin-bottom: 24px; }
.domain-btn {
  display: inline-block; padding: 16px 40px; background: var(--gold);
  color: var(--black); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; border: none; transition: all 0.3s;
  margin-top: 20px;
}
.domain-btn:hover { background: var(--gold-light); }
