/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  overflow-x: hidden;
  background: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #333;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #d4af37;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #e0e0e0;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section - Cinematic Italian Golden Hour */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0a0806;
}

/* Atmospheric layers */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 70% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 100% 100% at 20% 80%, rgba(120, 60, 30, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0a0806 0%, #12100d 50%, #0a0806 100%);
}

/* Dramatic light rays */
.hero-light-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}

.light-ray {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1), transparent);
  transform-origin: top center;
  animation: rayFloat 20s ease-in-out infinite;
}

.ray-1 { left: 20%; transform: rotate(-15deg); animation-delay: 0s; }
.ray-2 { left: 50%; transform: rotate(5deg); animation-delay: 7s; width: 3px; }
.ray-3 { left: 75%; transform: rotate(12deg); animation-delay: 14s; }

@keyframes rayFloat {
  0%, 100% { opacity: 0.3; transform: rotate(-15deg) translateX(0); }
  50% { opacity: 0.6; transform: rotate(-12deg) translateX(20px); }
}

/* Film grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* CSS particles hidden - using canvas particles instead */
.hero-particles {
  display: none;
}

/* Main container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding: 0 60px;
  z-index: 2;
  gap: 80px;
}

/* Content side */
.hero-content {
  flex: 1;
  max-width: 600px;
}

/* Elegant tagline */
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.2s both;
}

.tagline-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.tagline-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4af37;
}

/* Dramatic title */
.hero-title {
  margin-bottom: 30px;
  line-height: 0.9;
}

.title-word {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-word-1 {
  font-size: 7rem;
  letter-spacing: -2px;
  animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.title-word-2 {
  font-size: 5.5rem;
  font-style: italic;
  color: #d4af37;
  margin-top: -10px;
  animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(60px) skewY(3deg);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: blur(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Elegant subtitle */
.hero-subtitle {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.subtitle-italic {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.subtitle-bold {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Signature divider */
.hero-divider {
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 1s both;
}

.divider-ornament {
  display: inline-block;
  color: #d4af37;
  font-size: 1.2rem;
  animation: ornamentPulse 3s ease-in-out infinite;
}

@keyframes ornamentPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0806;
  box-shadow:
    0 4px 20px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e5c45a 0%, #d4af37 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 40px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(5px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-secondary:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-3px);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary .btn-text {
  position: relative;
  z-index: 1;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: fadeInUp 1s ease-out 1.3s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #d4af37;
}

.stat-divider {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, #d4af37, transparent);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
}

/* Visual side */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: visualReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes visualReveal {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* Elegant frame */
.visual-frame {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.frame-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Visual content */
.visual-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-showcase {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(212, 175, 55, 0.15);
  animation: logoFloat 6s ease-in-out infinite;
}

.showcase-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.logo-showcase:hover .showcase-logo {
  transform: scale(1.1);
}

.logo-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Animated rings */
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.ring-1 {
  width: 280px;
  height: 280px;
  animation: ringRotate 30s linear infinite;
}

.ring-2 {
  width: 350px;
  height: 350px;
  animation: ringRotate 45s linear infinite reverse;
  border-style: dashed;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(10, 8, 6, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(20px);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  animation: badgeFloat 8s ease-in-out infinite;
}

.floating-badge i {
  color: #d4af37;
  font-size: 0.9rem;
}

.badge-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  left: -20px;
  animation-delay: 4s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: fadeIn 1s ease-out 2s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, #d4af37, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator .scroll-text {
  display: block !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* About Section */
.about {
  padding: 100px 0;
  background: #2a2a2a;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.about-text p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: #333333;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #444;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Menu Section */
.menu {
  padding: 100px 0;
  background: #1a1a1a;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section-header p {
  font-size: 1.2rem;
  color: #b0b0b0;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-btn {
  padding: 1rem 2rem;
  border: 2px solid #d4af37;
  background: transparent;
  color: #d4af37;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
  background: #d4af37;
  color: #1a1a1a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.menu-grid.hidden {
  display: none;
}

.menu-card {
  background: #2a2a2a;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #444;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: #d4af37;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.menu-card-header h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.price {
  background: #d4af37;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.menu-description {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.menu-sizes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-sizes span {
  background: #333333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 500;
  border: 1px solid #444;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(42, 42, 42, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid #444;
}

.contact-item i {
  font-size: 2rem;
  color: #d4af37;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-item p {
  opacity: 0.9;
  color: #b0b0b0;
}

.contact-cta {
  text-align: center;
  padding: 3rem;
  background: rgba(42, 42, 42, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid #444;
}

.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #b0b0b0;
}

/* Map Section */
.map-section {
  margin: 3rem 0; /* add top/bottom breathing room */
}

.map-header h3 {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.map-header p {
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.map-card {
  background: rgba(42, 42, 42, 0.8);
  border: 1px solid #444;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 1rem; /* provide inset spacing so the iframe isn't flush */
}

.map-embed {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px; /* rounded inner corners */
  box-shadow: 0 0 0 1px #333 inset; /* subtle inner border separation */
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1rem 0 0; /* spacing from map, align with card padding */
}

/* Footer */
.footer {
  background: #0f0f0f;
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid #333;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: #d4af37;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-container {
    padding: 0 40px;
    gap: 40px;
  }

  .title-word-1 {
    font-size: 5.5rem;
  }

  .title-word-2 {
    font-size: 4rem;
  }

  .visual-frame {
    width: 320px;
    height: 320px;
  }

  .logo-showcase {
    width: 160px;
    height: 160px;
  }

  .ring-1 {
    width: 220px;
    height: 220px;
  }

  .ring-2 {
    width: 280px;
    height: 280px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-content {
    gap: 3rem;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Offset content so fixed navbar doesn't cover headings */
  body {
    padding-top: 80px;
  }

  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #333;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-logo {
    font-size: 1.2rem;
  }
  
  .nav-logo img {
    width: 35px;
    height: 35px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero-container {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-tagline {
    justify-content: center;
    margin-bottom: 24px;
  }

  .tagline-line {
    width: 40px;
  }

  .tagline-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .title-word-1 {
    font-size: 4rem;
  }

  .title-word-2 {
    font-size: 3rem;
    margin-top: -5px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }

  .subtitle-italic {
    font-size: 1.2rem;
  }

  .subtitle-bold {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .hero-divider {
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 16px 28px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .stat-separator {
    display: none;
  }

  .stat-item {
    align-items: center;
    min-width: 100px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  /* Hero Visual */
  .visual-frame {
    width: 260px;
    height: 260px;
  }

  .frame-corner {
    width: 40px;
    height: 40px;
  }

  .logo-showcase {
    width: 140px;
    height: 140px;
  }

  .ring-1 {
    width: 190px;
    height: 190px;
  }

  .ring-2 {
    width: 240px;
    height: 240px;
  }

  .floating-badge {
    display: none;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-line {
    height: 40px;
  }

  /* Light rays mobile */
  .hero-light-rays {
    opacity: 0.2;
  }
  
  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
  
  /* Menu Section */
  .menu-categories {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .menu-card {
    padding: 1.5rem;
  }
  
  .menu-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .menu-card-header h3 {
    font-size: 1.3rem;
  }
  
  .price {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }
  
  .menu-sizes {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .menu-sizes span {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-item {
    padding: 1.5rem;
    text-align: center;
  }
  
  .contact-cta {
    text-align: center;
    padding: 2rem 1rem;
  }

  .map-card {
    padding: 0.75rem;
    border-radius: 16px;
  }

  .map-embed {
    height: 320px;
  }

  .map-actions {
    justify-content: space-between;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-logo img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 15px;
  }
  
  /* Navigation */
  .nav-container {
    padding: 0 15px;
  }
  
  .nav-logo {
    font-size: 1rem;
  }
  
  .nav-logo img {
    width: 30px;
    height: 30px;
  }
  
  /* Hero Section */
  .hero-container {
    padding: 0 16px;
    gap: 30px;
  }

  .hero-tagline {
    gap: 12px;
    margin-bottom: 20px;
  }

  .tagline-line {
    width: 30px;
  }

  .tagline-text {
    font-size: 0.65rem;
  }

  .title-word-1 {
    font-size: 3rem;
  }

  .title-word-2 {
    font-size: 2.2rem;
  }

  .subtitle-italic {
    font-size: 1rem;
  }

  .subtitle-bold {
    font-size: 0.7rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-divider {
    width: 20px;
  }

  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  /* Hero Visual */
  .visual-frame {
    width: 220px;
    height: 220px;
  }

  .frame-corner {
    width: 30px;
    height: 30px;
  }

  .logo-showcase {
    width: 120px;
    height: 120px;
  }

  .ring-1 {
    width: 160px;
    height: 160px;
  }

  .ring-2 {
    width: 200px;
    height: 200px;
  }

  .scroll-line {
    height: 30px;
  }

  .scroll-indicator .scroll-text {
    font-size: 0.55rem;
  }
  
  .hero-glow {
    width: 200px;
    height: 200px;
  }
  
  /* Section Headers */
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  /* Menu Section */
  .menu-categories {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .category-btn {
    width: 100%;
    max-width: 200px;
    padding: 0.8rem 1rem;
  }
  
  .menu-card {
    padding: 1.2rem;
  }
  
  .menu-card-header h3 {
    font-size: 1.2rem;
  }
  
  .menu-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .menu-sizes {
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .menu-sizes span {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    text-align: center;
  }
  
  /* About Section */
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .about-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .feature {
    padding: 1.2rem;
  }
  
  .feature h3 {
    font-size: 1.1rem;
  }
  
  .feature p {
    font-size: 0.85rem;
  }
  
  /* Contact Section */
  .contact-item {
    padding: 1.2rem;
  }
  
  .contact-item h3 {
    font-size: 1.1rem;
  }
  
  .contact-item p {
    font-size: 0.9rem;
  }
  
  .contact-cta h3 {
    font-size: 1.5rem;
  }
  
  .contact-cta p {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-logo h3 {
    font-size: 1.3rem;
  }
  
  .footer-logo p {
    font-size: 0.9rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Particles canvas styling - contained within hero */
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
  /* Improve touch targets */
  .nav-link,
  .btn,
  .category-btn,
  .menu-card {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  /* Reduce animations on mobile for better performance */
  .visual-ring {
    animation-duration: 60s;
  }

  /* Reduce particle visibility on mobile for performance */
  #particles {
    opacity: 0.5;
  }
  
  /* Optimize scrolling */
  .hero,
  .map-section,
  .about,
  .menu,
  .contact {
    scroll-margin-top: 80px;
  }
  
  /* Improve text readability */
  .hero-title,
  .section-header h2,
  .menu-card-header h3 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero-container {
    flex-direction: row;
    gap: 30px;
  }

  .hero-content {
    order: 1;
    text-align: left;
  }

  .hero-visual {
    order: 2;
  }

  .hero-tagline {
    justify-content: flex-start;
  }

  .title-word-1 {
    font-size: 2.5rem;
  }

  .title-word-2 {
    font-size: 1.8rem;
  }

  .visual-frame {
    width: 180px;
    height: 180px;
  }

  .logo-showcase {
    width: 100px;
    height: 100px;
  }

  .ring-1 {
    width: 130px;
    height: 130px;
  }

  .ring-2 {
    width: 160px;
    height: 160px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

  .btn {
    width: auto;
  }

  .scroll-indicator {
    display: none;
  }
} 
