:root {
  --bg-deep: #0a0403;
  --bg-dark: #1a0d0a;
  --gold: #d4af37;
  --gold-muted: #b08d57;
  --crimson: #8b0000;
  --text-primary: #f8f1e9;
  --text-secondary: #d1b8a1;
  --serif: "Playfair Display", serif;
  --sans: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  /* Use both the geometric pattern and the hero image so the download keeps the same rich look */
  background-image: url('pattern.png'), url('hero_bg.png');
  background-blend-mode: overlay;
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat;
  color: var(--text-primary);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  background-color: var(--bg-dark);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

/* Fallback: if animations are blocked, ensure content is visible */
@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    animation: none;
  }
}

.pulse-badge {
  animation: pulse 3s infinite ease-in-out;
  border-color: var(--gold) !important;
}

/* Fixed Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  z-index: 100;
  padding: 1.5rem;
  background: linear-gradient(to bottom, rgba(26,13,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease);
}

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

.nav-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s var(--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 var(--ease);
}

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

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

/* Hero Section */
.hero-section {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 15%, rgba(26, 13, 10, 0.4) 60%, transparent 100%);
}

.hero-text-content {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
}

.hero-logo {
  display: none;
}

.hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.7));
}

.hero-title {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.accent-text {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  font-size: 3.2rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 100%;
  font-weight: 300;
  opacity: 0.9;
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.badge {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-container {
  display: flex;
  gap: 1.2rem;
}

.primary-button, .secondary-button {
  flex: 1;
  text-align: center;
  padding: 1.1rem;
  text-decoration: none;
  font-weight: 800;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.primary-button {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.primary-button:hover {
  background: #e5c048;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.35);
}

.primary-button:active {
  transform: scale(0.97);
  background: #e5c048;
}

.secondary-button {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.secondary-button:active {
  transform: scale(0.97);
  background: rgba(212, 175, 55, 0.2);
}

/* Menu Styles */
.section {
  padding: 5rem 2.5rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  background: #150b09;
}

.small-card-img {
  aspect-ratio: 21/9;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.menu-card:hover .menu-card-image img,
.menu-card:active .menu-card-image img {
  transform: scale(1.08);
}

.menu-card-content {
  padding: 0 0.2rem;
}

.no-img-card {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  background: rgba(212, 175, 55, 0.03);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.card-top h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--serif);
}

.price {
  color: var(--gold);
  font-weight: 800;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.menu-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

.promo-text {
  color: var(--gold) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: inline-block;
}

/* About Section */
.dark-section {
  background-color: #0d0605;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.about-image-feature {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-image-feature img {
  width: 100%;
  display: block;
  transition: transform 1s var(--ease);
}

/* Gallery Horizontal Scroll */
.gallery-section {
  padding: 3rem 0;
  background: var(--bg-deep);
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.2rem;
  padding: 0 2.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.gallery-scroll img {
  height: 200px;
  width: auto;
  display: block;
}

/* Visit Section */
.info-row {
  margin-bottom: 2rem;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.visit-info p {
  font-size: 1.15rem;
}

.phone-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 900;
  transition: opacity 0.3s var(--ease);
}

.phone-link:active {
  opacity: 0.7;
}

.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}

.action-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--text-primary);
  padding: 1.2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.action-btn:active {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(2px);
}

/* Footer */
.site-footer {
  padding: 5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0,0,0,0.5);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
}

.site-footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.download-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-site-btn:active {
  background: var(--gold);
  color: var(--bg-deep);
  transform: scale(0.95);
  border-color: var(--gold);
}

.download-site-btn svg {
  opacity: 0.7;
}

/* Reveal Items - only animate when JS is ready */
.js-ready .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js-ready .reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Facebook Section */
.facebook-section {
  padding: 4rem 2.5rem;
  background: #0d0605;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.facebook-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.facebook-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.facebook-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.facebook-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.fb-card-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  padding: 4px;
}

.fb-card-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}

.fb-card-handle {
  font-size: 0.8rem;
  color: var(--gold-muted);
  margin-top: 2px;
}

.fb-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.facebook-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1.1rem;
  background: #1877F2;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
}

.facebook-btn:hover,
.facebook-btn:active {
  background: #0d65d9;
  transform: translateY(-1px);
}
