:root {
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --accent: #C75B39;
  --accent-light: #E8F4F8;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: #888888;
  --border: #E5E5E5;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1100px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--text-primary);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #A84832;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #20BD5A;
}

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}

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

.hero-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-info-item {
  text-align: center;
}

.hero-info-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hero-info-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Menu Categories */
.menu-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-tab {
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.menu-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-category h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.menu-category > p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.menu-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.menu-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-card-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.menu-card-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Featured */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.featured-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.featured-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.featured-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.featured-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-section .btn {
  background: white;
  color: var(--accent);
}

.cta-section .btn:hover {
  background: var(--bg-primary);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer p,
.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 2;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Contact Page */
.contact-hero {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-secondary);
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 60px 0;
}

.contact-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.map-placeholder {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  color: var(--text-secondary);
  margin-top: 40px;
}

/* Page Header */
.page-header {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-info {
    flex-direction: column;
    gap: 24px;
  }
  
  .nav {
    display: none;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

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

.animate-in {
  animation: fadeIn 0.5s ease forwards;
}

.menu-card {
  animation: fadeIn 0.4s ease forwards;
}

/* Print */
@media print {
  .header, .footer, .cta-section {
    display: none;
  }
}

/* Story Section */
.story {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #E8C547, var(--accent));
}

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

.story-content {
  max-width: 500px;
}

.story-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent), #A84832);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.story h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.story h2 span {
  color: var(--accent);
}

.story p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-highlight {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.story-stat {
  text-align: center;
}

.story-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.story-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.story-image {
  background: linear-gradient(135deg, #F5F0E8 0%, #E8DFD0 100%);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.story-image::before {
  content: '🇱🇧';
  font-size: 6rem;
  margin-bottom: 20px;
}

.story-image-pattern {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  background: repeating-linear-gradient(
    45deg,
    var(--accent),
    var(--accent) 2px,
    transparent 2px,
    transparent 8px
  );
  border-radius: 8px;
}

.story-image h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.story-image p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  min-height: 400px;
  background: #f0f0f0;
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-info {
  padding: 20px 0;
}

.map-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.map-directions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-direction-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.map-direction-item:hover {
  box-shadow: var(--shadow);
}

.map-direction-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-direction-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.map-direction-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Two Column Info */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-list .time {
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 968px) {
  .story-grid,
  .map-container,
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  
  .story-image {
    order: -1;
    min-height: 300px;
  }
  
  .story-highlight {
    justify-content: center;
  }
  
  .map-frame iframe {
    height: 300px;
  }
}

/* Social Feed */
.social-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.social-feed-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-primary);
}

.social-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.social-feed-item:hover img {
  transform: scale(1.05);
}

.social-feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-feed-item:hover .social-feed-overlay {
  opacity: 1;
}

.social-feed-overlay span {
  color: white;
  font-size: 1.5rem;
}

/* Elfsight Widget Container */
.elfsight-widget-instagram {
  max-width: 100%;
  overflow: hidden;
}

/* Instagram Feed Widget */
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 640px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-feed-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-feed-item:hover .instagram-feed-overlay {
  opacity: 1;
}

.instagram-feed-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* QR Code Section - Redesigned */
.qr-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 50%, #F5F0E8 100%);
  position: relative;
  overflow: hidden;
}

.qr-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(199, 91, 57, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.qr-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 91, 57, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.qr-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.qr-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.qr-code-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 3px solid var(--accent);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

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

.qr-code-card img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  display: block;
}

.qr-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(199, 91, 57, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.qr-content {
  padding: 20px 0;
}

.qr-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qr-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.1;
}

.qr-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.qr-description strong {
  color: var(--accent);
}

.qr-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.qr-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.qr-feature-icon {
  font-size: 1.1rem;
}

.qr-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.qr-buttons .btn {
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

.qr-buttons .btn-outline {
  border-width: 2px;
}

@media (max-width: 800px) {
  .qr-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .qr-visual {
    order: -1;
  }
  
  .qr-content h2 {
    font-size: 2rem;
  }
  
  .qr-features {
    justify-content: center;
  }
  
  .qr-buttons {
    flex-direction: column;
  }
  
  .qr-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .qr-section {
    padding: 60px 0;
  }
  
  .qr-code-card {
    padding: 16px;
  }
  
  .qr-code-card img {
    width: 180px;
    height: 180px;
  }
  
  .qr-features {
    gap: 12px;
  }
  
  .qr-feature {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

.elfsight-app-instagram-feed {
  max-width: 100%;
}

.elfsight-app-instagram-feed .elfsight-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 768px) {
  .elfsight-app-instagram-feed .elfsight-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}
