/* Premium Restaurant Aesthetic - CSS Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-color: #0d0d0d;
  --surface-color: #1a1a1a;
  --surface-glass: rgba(26, 26, 26, 0.7);
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent-primary: #e63946;
  /* Vibrant Red/Orange for Taco Vibe */
  --accent-hover: #ff4d5a;
  --transition-speed: 0.3s;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  position: relative;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

html::before,
html::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  /* Side border width */
  background-image: url('../templates/boder%20sides.jpg');
  background-repeat: repeat-y;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 9999;
}

html::before {
  left: 0;
}

html::after {
  right: 0;
  transform: scaleX(-1);
  /* Flips the border for the right side for a mirrored effect */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed);
}

/* Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding var(--transition-speed);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../templates/broder%20top.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  transition: background var(--transition-speed);
}

.navbar.scrolled {
  padding: 0 4%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}



.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: auto;
  border-radius: 50%;
  transition: transform var(--transition-speed);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-primary);
  transition: width var(--transition-speed);
}

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

.nav-link:hover {
  color: var(--accent-primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-speed);
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--text-main);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section (Cinematic & Parallax) */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Extra height for parallax */
  background-image: url('../templates/store%20front.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* Will be translated by JS for parallax */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(13, 13, 13, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.btn-primary {
  display: inline-block;
  background: var(--accent-primary);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), background var(--transition-speed);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
  color: white;
}

/* Sections General */
section {
  padding: 100px 5%;
  position: relative;
}

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

.section-subtitle {
  color: var(--accent-primary);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

/* Meet the Staff / Home Sections */
.bg-parallax {
  background-image: url('../templates/front%20glass.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.bg-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.85);
  /* Dark overlay */
}

.staff-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.staff-card {
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  max-width: 500px;
  box-shadow: var(--shadow-premium);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.staff-card:hover {
  transform: translateY(-10px);
}

.staff-img-wrapper {
  overflow: hidden;
}

.staff-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

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

.staff-info {
  padding: 2rem;
  text-align: center;
}

/* Menu Page */
.page-header {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../templates/front%20glass.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 2rem;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.7);
}

.page-header h1 {
  position: relative;
  z-index: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 3/4;
}

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

.menu-item:hover img {
  transform: scale(1.08);
}

.menu-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition-speed);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
}

.menu-item:hover .menu-item-overlay {
  opacity: 1;
}

.zoom-icon {
  color: white;
  font-size: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.menu-item:hover .zoom-icon {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent-primary);
}

/* Contact Page */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-card {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
  background: rgba(230, 57, 70, 0.1);
  padding: 15px;
  border-radius: 50%;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-info p,
.contact-info a {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-info a:hover {
  color: var(--accent-primary);
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

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

.hours-list li span:first-child {
  font-weight: 500;
  color: var(--text-main);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-speed);
}

.social-icon:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

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

/* Footer */
footer {
  background: #050505;
  text-align: center;
  padding: 2rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: left 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .lang-switcher {
    margin-top: 1rem;
  }
}

/* --- MENU UPDATE STYLES --- */

/* Menu Switcher */
.menu-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 2rem auto 3rem;
  padding: 5px;
  background: var(--surface-glass);
  border-radius: 40px;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 25px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.toggle-btn.active {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

/* Menu Modes */
.menu-mode {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.menu-mode.active {
  display: block;
  opacity: 1;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 5%;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition-speed);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Category Sections */
.category-section {
  padding-top: 100px;
  /* Offset for fixed navbar */
  margin-top: -50px;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

/* Sarape Header */
.sarape-header {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.sarape-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #e63946 0%, #e63946 20%, #f4a261 20%, #f4a261 40%, #2a9d8f 40%, #2a9d8f 60%, #e9c46a 60%, #e9c46a 80%, #e63946 80%, #e63946 100%);
  border-radius: 3px;
}

/* Written Grid */
.written-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Written Card */
.written-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.written-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border-color: rgba(230, 57, 70, 0.3);
}

.written-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 15px;
}

.written-card-title {
  font-size: 1.25rem;
  color: var(--accent-primary);
}

.written-card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #f4a261;
  white-space: nowrap;
}

.written-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Category Button Container */
.category-btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.category-order-btn,
.category-phone-btn {
  display: block;
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  padding: 10px 30px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition-speed);
}

.category-phone-btn {
  color: #2a9d8f;
  border-color: #2a9d8f;
}

.category-order-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.category-phone-btn:hover {
  background: #2a9d8f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

/* Floating Action Buttons Container */
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2000;
  align-items: flex-end;
}

.floating-order-btn {
  background: var(--accent-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.floating-order-btn.online-btn {
  animation: pulse 2s infinite;
}

.floating-order-btn.phone-btn {
  background: #2a9d8f;
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.4);
}

.floating-order-btn:hover {
  transform: scale(1.05);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

@media (max-width: 768px) {
  .floating-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .floating-order-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}