/* =======================
   MODERN VIETNAMESE RESTAURANT STYLES
   ======================= */

/* Variables CSS */
:root {
  --primary-color: #c8102e;
  --primary-light: #e31837;
  --primary-dark: #a00e24;
  --secondary-color: #ffd700;
  --accent-color: #00a651;
  --dark-color: #1a1a1a;
  --dark-light: #2c2c2c;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Dancing Script', cursive;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

.btn {
  font-weight: 500;
  border-radius: var(--border-radius);
  padding: 12px 24px;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}



/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1562565652-a0d8f0c59eb4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.8), rgba(26, 26, 26, 0.6));
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge i {
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-title .text-primary {
  color: var(--secondary-color) !important;
  font-family: var(--font-secondary);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 500;
}

.feature-item i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.contact-title {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-item i {
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
  width: 20px;
}

.contact-link {
  color: #6c757d;
  text-decoration: none;
}

.hours {
  color: var(--secondary-color);
  font-weight: 500;
}

.contact-rating {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-stars {
  margin-bottom: 0.5rem;
}

.rating-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down {
  display: inline-block;
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.feature-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Specialties Section */
.specialties-section {
  padding: 6rem 0;
  background: white;
}

.specialty-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.specialty-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.specialty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.specialty-card:hover .specialty-image {
  transform: scale(1.1);
}

.specialty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.specialty-card:hover .specialty-overlay {
  opacity: 1;
}

.specialty-price {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
}

.specialty-content {
  padding: 2rem;
}

.specialty-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.specialty-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.specialty-badge {
  display: inline-flex;
  align-items: center;
  background: var(--light-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.specialty-badge i {
  margin-right: 0.5rem;
}

/* Menu Section */
.menu-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.menu-tabs .nav-pills {
  --bs-nav-pills-link-active-bg: var(--primary-color);
}

.nav-pills .nav-link {
  color: var(--text-dark);
  background: white;
  border-radius: 25px;
  padding: 12px 24px;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.nav-pills .nav-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.menu-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.menu-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.menu-item-description {
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.menu-item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 1rem;
  flex-shrink: 0;
}

/* Chefs Section */
.chefs-section {
  padding: 6rem 0;
  background: white;
}

.chefs-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chefs-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.chefs-image-wrapper:hover .chefs-image {
  transform: scale(1.05);
}

.chefs-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 215, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.chefs-badge i {
  margin-right: 0.5rem;
}

.chefs-content .section-title {
  text-align: left;
}

.chefs-content .section-title::after {
  left: 0;
  transform: none;
}

.chefs-names {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.chefs-quote {
  position: relative;
  margin-bottom: 2rem;
}

.quote-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  position: absolute;
  top: -10px;
  left: -10px;
}

.chefs-description {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  padding-left: 1.5rem;
}

.chefs-philosophy {
  margin-bottom: 2rem;
}

.philosophy-title {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.chefs-signature {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.chefs-stats {
  display: flex;
  gap: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  color: white;
}

.testimonials-section .section-title::after {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--secondary-color);
}

.testimonials-stats .stat-number {
  color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: white;
}

.contact-form-wrapper {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  transition: var(--transition);
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(200, 16, 46, 0.1);
}

.contact-info-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-info-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.quick-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  color: white;
}

.map-section {
  margin-top: 4rem;
}

.map-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-color);
}

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map {
  border-radius: var(--border-radius);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer-section {
  background: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-info .footer-item {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--secondary-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.footer-copyright,
.footer-credit {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
}

.scroll-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .chefs-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .contact-info {
    margin-top: 3rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-section,
  .specialties-section,
  .menu-section,
  .chefs-section,
  .testimonials-section,
  .contact-section,
  .cta-section {
    padding: 4rem 0;
  }
  
  .nav-pills .nav-link {
    margin: 0.25rem;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .menu-item {
    flex-direction: column;
    text-align: center;
  }
  
  .menu-item-price {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .chefs-stats {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .features-section,
  .specialties-section,
  .menu-section,
  .chefs-section,
  .testimonials-section,
  .contact-section,
  .cta-section {
    padding: 3rem 0;
  }
  
  .feature-card,
  .contact-form-wrapper,
  .contact-info-card {
    padding: 2rem 1.5rem;
  }
  
  .specialty-content {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: var(--shadow);
}

.shadow-hover {
  box-shadow: var(--shadow-hover);
}
.admin-layout {
  background-color: #f8f9fa;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.admin-navbar {
  background: #2c3e50;
  color: white;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.admin-logo {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.admin-nav-menu {
  display: flex;
  gap: 10px;
}

.admin-nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.2s;
  font-size: 14px;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background-color: rgba(255,255,255,0.1);
  color: white;
}

.admin-nav-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-user-email {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.admin-logout-btn {
  color: #e74c3c;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #e74c3c;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.2s;
}

.admin-logout-btn:hover {
  background-color: #e74c3c;
  color: white;
}

.admin-main {
  padding: 20px 0;
}

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

.admin-alert {
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 14px;
}

.admin-alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.admin-alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.admin-page-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}

.admin-page-title {
  font-size: 32px;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.admin-page-subtitle {
  color: #6c757d;
  margin: 0;
}

.admin-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.admin-btn:hover {
  background-color: #2980b9;
  color: white;
}

.admin-btn-success {
  background-color: #27ae60;
}

.admin-btn-success:hover {
  background-color: #229954;
}

.admin-btn-danger {
  background-color: #e74c3c;
}

.admin-btn-danger:hover {
  background-color: #c0392b;
}

.admin-btn-warning {
  background-color: #f39c12;
}

.admin-btn-warning:hover {
  background-color: #e67e22;
}

.admin-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .admin-nav-container {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
  }

  .admin-nav-menu {
    margin: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .admin-nav-user {
    flex-direction: column;
    gap: 10px;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  font-size: 32px;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #6c757d;
  margin-top: 4px;
}

.dashboard-section {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.section-header h2 {
  margin: 0;
  color: #2c3e50;
}

.orders-tabs {
  margin-top: 20px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6c757d;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tab-btn.active {
  color: #3498db;
  border-bottom-color: #3498db;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.order-card {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.order-card.new-order {
  border-left: 4px solid #e74c3c;
  background: #fff5f5;
  animation: slideIn 0.5s ease;
}

.new-badge {
  background: #e74c3c !important;
  color: white !important;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 12px !important;
  font-weight: bold;
  margin-left: 8px;
  animation: pulse 2s infinite;
  display: inline-block !important;
  position: relative;
  z-index: 10;
}

.order-time.urgent {
  color: #e74c3c;
  font-weight: bold;
  animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
  0% { color: #e74c3c; }
  50% { color: #c0392b; }
  100% { color: #e74c3c; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.order-time {
  font-size: 12px;
  color: #6c757d;
}

.order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.order-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-item {
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #6c757d;
}

.order-total {
  font-weight: bold;
  color: #27ae60;
}

.order-actions {
  display: flex;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 40px;
  color: #6c757d;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .order-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* =======================
   MODERN VIETNAMESE RESTAURANT STYLES
   ======================= */

/* Variables CSS */
:root {
  --primary-color: #c8102e;
  --primary-light: #e31837;
  --primary-dark: #a00e24;
  --secondary-color: #ffd700;
  --accent-color: #00a651;
  --dark-color: #1a1a1a;
  --dark-light: #2c2c2c;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Dancing Script', cursive;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

.btn {
  font-weight: 500;
  border-radius: var(--border-radius);
  padding: 12px 24px;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}



/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1562565652-a0d8f0c59eb4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.8), rgba(26, 26, 26, 0.6));
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge i {
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-title .text-primary {
  color: var(--secondary-color) !important;
  font-family: var(--font-secondary);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 500;
}

.feature-item i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.contact-title {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-item i {
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
  width: 20px;
}

.contact-link {
  color: #6c757d;
  text-decoration: none;
}

.hours {
  color: var(--secondary-color);
  font-weight: 500;
}

.contact-rating {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-stars {
  margin-bottom: 0.5rem;
}

.rating-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down {
  display: inline-block;
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.feature-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Specialties Section */
.specialties-section {
  padding: 6rem 0;
  background: white;
}

.specialty-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.specialty-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.specialty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.specialty-card:hover .specialty-image {
  transform: scale(1.1);
}

.specialty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.specialty-card:hover .specialty-overlay {
  opacity: 1;
}

.specialty-price {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
}

.specialty-content {
  padding: 2rem;
}

.specialty-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.specialty-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.specialty-badge {
  display: inline-flex;
  align-items: center;
  background: var(--light-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.specialty-badge i {
  margin-right: 0.5rem;
}

/* Menu Section */
.menu-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.menu-tabs .nav-pills {
  --bs-nav-pills-link-active-bg: var(--primary-color);
}

.nav-pills .nav-link {
  color: var(--text-dark);
  background: white;
  border-radius: 25px;
  padding: 12px 24px;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.nav-pills .nav-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.menu-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.menu-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.menu-item-description {
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.menu-item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 1rem;
  flex-shrink: 0;
}

/* Chefs Section */
.chefs-section {
  padding: 6rem 0;
  background: white;
}

.chefs-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chefs-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.chefs-image-wrapper:hover .chefs-image {
  transform: scale(1.05);
}

.chefs-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 215, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.chefs-badge i {
  margin-right: 0.5rem;
}

.chefs-content .section-title {
  text-align: left;
}

.chefs-content .section-title::after {
  left: 0;
  transform: none;
}

.chefs-names {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.chefs-quote {
  position: relative;
  margin-bottom: 2rem;
}

.quote-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  position: absolute;
  top: -10px;
  left: -10px;
}

.chefs-description {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  padding-left: 1.5rem;
}

.chefs-philosophy {
  margin-bottom: 2rem;
}

.philosophy-title {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.chefs-signature {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.chefs-stats {
  display: flex;
  gap: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  color: white;
}

.testimonials-section .section-title::after {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--secondary-color);
}

.testimonials-stats .stat-number {
  color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: white;
}

.contact-form-wrapper {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  transition: var(--transition);
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(200, 16, 46, 0.1);
}

.contact-info-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-info-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.quick-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  color: white;
}

.map-section {
  margin-top: 4rem;
}

.map-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-color);
}

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map {
  border-radius: var(--border-radius);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white !important;
  text-align: center !important;
}

.cta-section .container {
  text-align: center !important;
}

.cta-section * {
  text-align: center !important;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  color: white !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: white !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* Footer */
.footer-section {
  background: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-info .footer-item {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--secondary-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.footer-copyright,
.footer-credit {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
}

.scroll-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .chefs-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .contact-info {
    margin-top: 3rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-section,
  .specialties-section,
  .menu-section,
  .chefs-section,
  .testimonials-section,
  .contact-section,
  .cta-section {
    padding: 4rem 0;
  }
  
  .nav-pills .nav-link {
    margin: 0.25rem;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .menu-item {
    flex-direction: column;
    text-align: center;
  }
  
  .menu-item-price {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .chefs-stats {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .features-section,
  .specialties-section,
  .menu-section,
  .chefs-section,
  .testimonials-section,
  .contact-section,
  .cta-section {
    padding: 3rem 0;
  }
  
  .feature-card,
  .contact-form-wrapper,
  .contact-info-card {
    padding: 2rem 1.5rem;
  }
  
  .specialty-content {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: var(--shadow);
}

.shadow-hover {
  box-shadow: var(--shadow-hover);
}
.menu-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.menu-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #d4572a, #e67e22);
  color: white;
  border-radius: 15px;
  margin: 0 -20px 50px -20px;
}

.menu-header h1 {
  font-size: 48px;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.menu-subtitle {
  font-size: 18px;
  margin: 0 0 30px 0;
  opacity: 0.9;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-section {
  margin-bottom: 60px;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 32px;
  color: #d4572a;
  margin: 0 0 15px 0;
  position: relative;
  display: inline-block;
}

.category-header h2:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d4572a;
  border-radius: 2px;
}

.category-description {
  font-size: 16px;
  color: #666;
  font-style: italic;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.plats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.plat-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.plat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.plat-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.plat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.plat-card:hover .plat-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.plat-card:hover .image-overlay {
  opacity: 1;
}

.plat-content {
  padding: 25px;
}

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

.plat-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  margin: 0;
  flex: 1;
  transition: color 0.2s;
}

.plat-title:hover {
  color: #d4572a;
}

.plat-price {
  font-size: 22px;
  font-weight: bold;
  color: #d4572a;
  white-space: nowrap;
}

.plat-description {
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-size: 15px;
}

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

.stock-info {
  font-size: 14px;
  font-weight: 500;
}

.stock-available {
  color: #28a745;
}

.stock-limited {
  color: #ffc107;
}

.stock-unavailable {
  color: #dc3545;
}

.menu-footer {
  margin-top: 80px;
  padding: 50px 0;
  background: #f8f9fa;
  border-radius: 15px;
  margin-left: -20px;
  margin-right: -20px;
}

.cta-section {
  text-align: center;
}

.cta-section h3 {
  font-size: 28px;
  color: #333;
  margin: 0 0 15px 0;
}

.cta-section p {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  font-weight: 600;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4572a, #e67e22);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 87, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 87, 42, 0.4);
}

.btn-outline-secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-light {
  background-color: rgba(255,255,255,0.9);
  color: #333;
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background-color: white;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .menu-header {
    margin: 0 -10px 30px -10px;
    padding: 30px 20px;
  }
  
  .menu-header h1 {
    font-size: 36px;
  }
  
  .menu-subtitle {
    font-size: 16px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .plats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .category-header h2 {
    font-size: 28px;
  }
  
  .menu-footer {
    margin-left: -10px;
    margin-right: -10px;
    padding: 40px 20px;
  }
  
  .cta-section h3 {
    font-size: 24px;
  }
}
/* Navbar styles */
.navbar {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: white !important;
}

.brand-text {
  color: #d4572a !important;
}

.nav-link {
  color: white !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  padding: 0.8rem 1rem !important;
  margin: 0 0.2rem !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.nav-link:hover {
  color: #d4572a !important;
  background: rgba(212, 87, 42, 0.1) !important;
}

/* Padding pour éviter que le contenu passe sous la navbar fixe */
main {
  padding-top: 100px !important;
}

/* Exception pour la page d'accueil */
.home-page main {
  padding-top: 0 !important;
}

.cart-indicator {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 87, 42, 0.1);
  color: #d4572a !important;
}

.cart-indicator:hover {
  background: rgba(212, 87, 42, 0.2);
  color: #d4572a !important;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #d4572a;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

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

/* Styles pour le bouton admin */
.admin-link {
  opacity: 0.6;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
}

.admin-link:hover {
  opacity: 1;
  background: rgba(108, 117, 125, 0.1) !important;
  color: #6c757d !important;
}
.ordering-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.menu-section {
  margin-bottom: 40px;
}

.category-section {
  margin-bottom: 30px;
}

.category-section h2 {
  color: #d4572a;
  border-bottom: 2px solid #d4572a;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.category-description {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.plats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.plat-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.plat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.plat-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.plat-info {
  padding: 15px;
}

.plat-info h3 {
  margin: 0 0 10px 0;
  color: #333;
}

.plat-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #d4572a;
  margin-bottom: 5px;
}

.stock {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.quantity-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quantity-input {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cart-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.cart-section h2 {
  color: #333;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.item-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.item-name {
  font-weight: 500;
}

.item-quantity {
  color: #666;
  font-size: 14px;
}

.item-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.item-price {
  font-weight: bold;
  color: #d4572a;
}

.cart-total {
  text-align: right;
  font-size: 20px;
  color: #333;
  padding: 20px 0;
  border-top: 2px solid #d4572a;
  margin: 20px 0;
}

.order-form {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.order-form h3 {
  color: #333;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-control {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: #d4572a;
  box-shadow: 0 0 0 2px rgba(212, 87, 42, 0.2);
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: #d4572a;
  color: white;
}

.btn-primary:hover {
  background-color: #b8481f;
}

.btn-success {
  background-color: #28a745;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
}

.empty-cart {
  text-align: center;
  padding: 40px;
  color: #666;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
  .plats-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .item-actions {
    width: 100%;
    justify-content: space-between;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
