/* ============ Pizza 20 — Glassmorphism Luxury CSS ============ */

:root {
  --bg: #0a0612;
  --bg-deep: #050308;
  --gold: #d4af37;
  --gold-light: #f0d075;
  --rose: #e8b4b8;
  --violet: #7c4dff;
  --ink: #f7f3ef;
  --muted: rgba(247, 243, 239, 0.65);
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --shadow-glow: 0 25px 80px -20px rgba(212, 175, 55, 0.25);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

@media (hover: none), (max-width: 1024px) {
  body { cursor: auto; }
  .custom-cursor, .custom-cursor-dot { display: none !important; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }

/* ============ CUSTOM CURSOR ============ */
.custom-cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease-out, width .3s ease, height .3s ease, border-color .3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.custom-cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform .1s ease-out;
}
.custom-cursor.hover {
  width: 70px; height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-light);
}

/* ============ AURORA BACKGROUND ============ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-deep);
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float-aurora 20s infinite ease-in-out;
}
.aurora-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -10%; left: -10%;
}
.aurora-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  top: 40%; right: -10%;
  animation-delay: -5s;
}
.aurora-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  bottom: -20%; left: 30%;
  animation-delay: -10s;
  opacity: 0.25;
}
@keyframes float-aurora {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(100px, -50px) scale(1.1); }
  66% { transform: translate(-80px, 60px) scale(0.95); }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all .4s ease;
  background: transparent;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 6, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.logo-text {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: all .3s ease;
}
.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,0.4) 0%, rgba(10,6,18,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 80px;
}
.hero-tagline {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title .italic {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--rose));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  transition: all .3s ease;
  cursor: none;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  box-shadow: 0 10px 40px -10px rgba(212, 175, 55, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px -10px rgba(212, 175, 55, 0.7);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ink);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.btn-block { width: 100%; justify-content: center; }

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 3px;
}
.scroll-line {
  width: 60px; height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-anim 2.5s infinite;
}
@keyframes scroll-anim {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============ SECTIONS GENERAL ============ */
section { padding: 120px 5%; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ GLASSMORPHISM ============ */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 24px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  perspective: 1500px;
}
.service-card {
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s ease, border-color .6s ease;
  transform-style: preserve-3d;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212,175,55,0.08) 100%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
  box-shadow: var(--shadow-glow);
  border-color: rgba(212, 175, 55, 0.3);
}
.service-card:hover::before { opacity: 1; }
.card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.service-card:hover .card-img img { transform: scale(1.1); }
.card-body {
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}
.card-body h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 14px;
  letter-spacing: -0.5px;
}
.card-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-glow);
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.about-img:hover img { transform: scale(1.05); }
.about-text p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 16px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat .lbl {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: grayscale(20%);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* ============ CTA SECTION ============ */
.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 60px;
}
.cta-content .eyebrow { padding-left: 0; }
.cta-content .eyebrow::before { display: none; }
.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  margin: 16px 0 20px;
}
.cta-content p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-inner { padding-top: 0; }
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 500;
  letter-spacing: -1px;
  margin: 16px 0 20px;
}
.page-hero-content .eyebrow { padding-left: 0; }
.page-hero-content .eyebrow::before { display: none; }
.page-hero-content p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ MENU PAGE ============ */
.menu-section { padding: 80px 5% 120px; max-width: 1400px; margin: 0 auto; }
.menu-block { margin-bottom: 100px; }
.menu-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.menu-title .eyebrow {
  padding-left: 0;
  margin-bottom: 0;
}
.menu-title .eyebrow::before { display: none; }
.menu-title h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -1px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-card {
  display: flex;
  gap: 24px;
  padding: 20px;
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all .4s ease;
}
.menu-card:hover {
  background: var(--glass-strong);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.menu-card img {
  width: 130px; height: 130px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.menu-info p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.menu-info .price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 80px 5%; max-width: 1400px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  margin: 12px 0 32px;
  letter-spacing: -1px;
}
.info-block {
  display: flex;
  gap: 18px;
  padding: 24px 28px;
  margin-bottom: 16px;
  align-items: center;
  border-radius: 16px;
  transition: all .3s ease;
}
.info-block:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(6px);
}
.info-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.info-block h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 4px;
}
.info-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.info-block a { color: var(--muted); }
.info-block a:hover { color: var(--gold); }

.form-card {
  padding: 50px 45px;
  border-radius: 24px;
}
.form-card .eyebrow { padding-left: 0; }
.form-card .eyebrow::before { display: none; }
.form-card h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin: 12px 0 12px;
  letter-spacing: -1px;
}
.form-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  transition: all .3s ease;
  cursor: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.map-section { padding: 60px 5% 120px; max-width: 1400px; margin: 0 auto; }
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(60%) contrast(1.1);
  transition: filter .4s ease;
}
.map-wrap:hover { filter: grayscale(0%); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 80px 5% 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--gold);
}
.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  transition: color .3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
}
.footer .logo { margin-bottom: 16px; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: revealFallback 1s ease 0.5s forwards; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 80px 5%; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 350px;
    height: 100vh;
    background: rgba(10, 6, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right .4s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; padding: 12px 0; }
  .hamburger { display: flex; z-index: 100; }

  .hero { padding-top: 120px; min-height: 90vh; }
  .hero-content { padding-top: 20px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { flex-direction: column; }
  .menu-card img { width: 100%; height: 200px; }

  .contact-form .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 35px 25px; }
  .cta-content { padding: 50px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-col { justify-self: center; }
}
