/* ============================================
   PIZZA — LUXE / CHIC
   Palette : Or (#c9a961), Noir (#0a0a0a), Crème (#f5f1e8)
   ============================================ */

:root {
  --gold: #c9a961;
  --gold-light: #e0c98b;
  --gold-dark: #9a7d3f;
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --cream: #f5f1e8;
  --white: #ffffff;
  --gray: #888;
  --gray-light: #ddd;
  --shadow: 0 10px 40px rgba(0,0,0,0.15);
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1920&q=80') center/cover no-repeat;
  z-index: -2;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 100%);
  z-index: -1;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  max-width: 900px;
  padding: 0 5%;
  animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  padding: 0 40px;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-tag::before { left: 0; }
.hero-tag::after { right: 0; }

.hero h1 {
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 16px 42px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before { left: 0; }
.btn:hover { color: var(--black); }

.btn-filled {
  background: var(--gold);
  color: var(--black);
}

.btn-filled::before { background: var(--gold-light); }
.btn-filled:hover { color: var(--black); }

/* ============ SECTIONS ============ */
section {
  padding: 120px 0;
  position: relative;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

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

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: revealFallback 1s ease 0.4s forwards;
}

.reveal.delay-1 { transition-delay: 0.15s; animation-delay: 0.5s; }
.reveal.delay-2 { transition-delay: 0.3s; animation-delay: 0.6s; }
.reveal.delay-3 { transition-delay: 0.45s; animation-delay: 0.7s; }

/* ============ ABOUT ============ */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 1.5s ease;
}

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

.about-img::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-text h2 { margin-bottom: 24px; }
.about-text .divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 0 0 32px;
}
.about-text p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.9;
}

.about-text p em {
  font-style: italic;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ============ MENU (PIZZAS) ============ */
.menu {
  background: var(--black);
  color: var(--white);
  padding: 140px 0;
}

.menu .section-title h2 { color: var(--white); }
.menu .section-title h2 em { color: var(--gold); }

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

.pizza-card {
  background: var(--black-soft);
  border: 1px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.pizza-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pizza-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.pizza-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.pizza-info {
  padding: 32px;
  text-align: center;
}

.pizza-info h3 {
  color: var(--gold);
  margin-bottom: 8px;
  font-style: italic;
}

.pizza-info .ingredients {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  min-height: 50px;
}

.pizza-info .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 500;
}

.pizza-info .price::before {
  content: '— ';
  color: var(--gold);
}

/* ============ EXPERIENCE / FEATURES ============ */
.experience {
  background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)),
              url('https://images.unsplash.com/photo-1571066811602-716837d681de?w=1920&q=80') center/cover fixed;
  color: var(--white);
  text-align: center;
  padding: 140px 0;
}

.experience .section-title h2 { color: var(--white); }
.experience .section-title h2 em { color: var(--gold); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature {
  text-align: center;
  padding: 20px;
}

.feature svg {
  margin: 0 auto 24px;
  color: var(--gold);
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.feature p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  position: relative;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { background: rgba(10,10,10,0.3); }

.gallery-item.tall { grid-row: span 2; height: 660px; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.testimonials .section-title h2 { color: var(--white); }
.testimonials .section-title h2 em { color: var(--gold); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.testimonial {
  background: var(--black-soft);
  padding: 50px 30px;
  border: 1px solid rgba(201,169,97,0.2);
  transition: all 0.4s ease;
}

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

.testimonial .stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 4px;
}

.testimonial p {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #ddd;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial .author {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 24px; }
.contact-info .divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 0 0 32px;
}

.contact-info p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.9;
}

.contact-info p em {
  font-style: italic;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.info-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.info-item span, .info-item a {
  color: #333;
  font-size: 0.95rem;
}

.info-item a:hover { color: var(--gold); }

/* ============ FORM ============ */
.contact-form {
  background: var(--white);
  padding: 50px 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.contact-form::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-style: italic;
  color: var(--black);
}

.contact-form .form-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  margin-top: 12px;
}

.form-message {
  padding: 16px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,97,0.08);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  border-color: #2d9d54;
  background: rgba(45,157,84,0.08);
  color: #1f7a3d;
}

.form-message.error {
  display: block;
  border-color: #c54040;
  background: rgba(197,64,64,0.08);
  color: #962c2c;
}

/* ============ MAP ============ */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  display: block;
  filter: grayscale(50%) contrast(1.1);
  transition: filter 0.5s ease;
}

.map-section iframe:hover { filter: grayscale(0%); }

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: #aaa;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo { display: block; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #888;
  font-family: var(--font-display);
  font-style: italic;
}

footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 600;
}

footer h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
footer ul a:hover { color: var(--gold); }

.footer-hours p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.footer-hours p span { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 1px;
}

.footer-bottom a { color: var(--gold); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid var(--gold);
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; flex: 1; min-width: 220px; }
.cookie-banner button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 60px auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .navbar { padding: 18px 5%; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    padding: 60px 20px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }

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

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img img { height: 400px; }
  .about-img::after { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; height: 320px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  footer h4::after { margin: 12px auto 0; }
  .footer-hours p { justify-content: center; gap: 12px; }

  .contact-form { padding: 35px 25px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-tag { padding: 0 24px; letter-spacing: 4px; font-size: 0.7rem; }
  .hero-tag::before, .hero-tag::after { width: 18px; }
}
