/* Noodle Boss Asian Restaurant Theme */

:root {
  --font-headers: 'Playfair Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/backgroundAnime.webp') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-family: var(--font-headers);
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  background: #c19b2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Intro Section */
.intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  background: #fff;
}

.intro h2 {
  font-family: var(--font-headers);
  font-size: 3rem;
  color: #333;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.intro p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Featured Dishes Section */
.featured-dishes {
  background: #f8f9fa;
  padding: 6rem 2rem;
}

.featured-dishes h2 {
  font-family: var(--font-headers);
  font-size: 3rem;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  display: block;
}

.featured-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  text-decoration: none;
}

.featured-item-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.featured-item:hover .featured-item-image {
  transform: scale(1.1);
}

.featured-item-content {
  padding: 2rem;
  position: relative;
}

.featured-item-category {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: #d4af37;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.featured-item-title {
  font-family: var(--font-headers);
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.featured-item-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-item-price {
  font-size: 1.3rem;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 1.5rem;
}



/* Features Section */
.features {
  background: #fff;
  padding: 6rem 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 2.5rem;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-item h3 {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Menu Section */
.menu-list {
  background: #f8f9fa;
  padding: 6rem 2rem;
  min-height: 100vh;
}

.menu-list h2 {
  font-family: var(--font-headers);
  font-size: 3rem;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  background: #fff;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
  background: #d4af37;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.menu-item {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.menu-item-name {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-item-price {
  font-size: 1.2rem;
  color: #d4af37;
  font-weight: 600;
}

.menu-item-ingredients {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Food Detail */
.food-detail {
  background: #f8f9fa;
  min-height: 100vh;
  padding-top: 2rem;
}

.food-fullscreen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.food-image-full {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.food-info {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
}

.food-info h1 {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.food-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.food-price {
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 2rem;
}

.food-info h3 {
  font-family: var(--font-headers);
  font-size: 1.3rem;
  color: #333;
  margin: 1.5rem 0 0.5rem 0;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.food-info ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.food-info ul li {
  padding: 0.3rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.food-info ul li::before {
  content: '•';
  color: #d4af37;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.back-to-menu {
  display: inline-block;
  margin-top: 2rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #d4af37;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.back-to-menu:hover {
  background: #d4af37;
  color: #fff;
}





/* About Section */
.about-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
  background: #fff;
}

.about-section h1 {
  font-family: var(--font-headers);
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.about-section h2 {
  font-family: var(--font-headers);
  font-size: 2rem;
  color: #333;
  margin: 2.5rem 0 1rem 0;
  letter-spacing: -0.01em;
}

.about-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Find Us Section */
.find-us {
  background: #1a1a1a;
  color: #fff;
  padding: 6rem 2rem;
}

.find-us h2 {
  font-family: var(--font-headers);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.find-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.find-us-info h3 {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #d4af37;
  letter-spacing: -0.01em;
}

.find-us-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ccc;
  line-height: 1.8;
}

.map-container {
  background: #333;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #0f0f0f;
  color: #fff;
  padding: 3rem 0 1rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-section h3 {
  font-family: var(--font-headers);
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: #999;
  margin: 0.5rem 0;
}

/* Main Content */
.main-content {
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ensure proper layout for pages with footer */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make sure content takes available space */
.main-content, .menu-list, .menu-list-vertical {
  flex: 1 0 auto;
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .intro h2, .featured-dishes h2, .menu-list h2, .find-us h2 {
    font-size: 2.5rem;
  }
  
  .featured-grid, .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  

  
  .find-us-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .intro, .featured-dishes, .features, .menu-list, .find-us {
    padding: 4rem 1rem;
  }
  
  .food-fullscreen {
    padding: 2rem 1rem;
  }
  
  .food-info {
    padding: 1.5rem;
  }
  
  .about-section {
    padding: 4rem 1rem;
  }
  
  .category-filter {
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  

}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .intro h2, .featured-dishes h2, .menu-list h2, .find-us h2 {
    font-size: 2rem;
  }
} 


