/* ==================== HEADER SECTION ==================== */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  background: #fffdf8;
  overflow-x: hidden;
}

/* Modern Header */
header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 25px rgba(255, 107, 53, 0.3);
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header:hover {
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.4);
}

/* Brand Section */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  height: 55px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: rotate(5deg) scale(1.05);
}

.brand h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.brand .divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 20px;
}

/* Navigation Links */
nav {
  display: flex;
  gap: 8px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  transform: translateX(0);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav a:hover::after {
  width: 70%;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .brand {
    flex-direction: row;
    margin-bottom: 10px;
  }
  
  .brand h1 {
    font-size: 16px;
  }
  
  .brand img {
    height: 45px;
  }
  
  nav {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }
  
  nav a {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .brand h1 {
    font-size: 14px;
  }
  
  .brand .divider {
    display: none;
  }
  
  nav a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
/* ==================== HERO SECTION ==================== */

.hero {
  position: relative;
  text-align: center;
  padding: 140px 40px 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa45e 100%);
  color: white;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 138, 66, 0.4) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  line-height: 1.6;
}

/* CTA Button */
.hero-content .btn {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #ff6b35;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-content .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-content .btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-content .btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #fff5f0;
}

/* Parallax Floating Elements */
.parallax-layer {
  position: absolute;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.parallax-layer img {
  width: 100%;
  height: auto;
}

/* Individual Layer Positioning */
.layer1 {
  top: 12%;
  left: 8%;
  width: 140px;
  animation-delay: 0s;
}

.layer2 {
  bottom: 18%;
  right: 12%;
  width: 110px;
  animation-delay: 1.5s;
  opacity: 0.6;
}

.layer3 {
  top: 25%;
  right: 8%;
  width: 95px;
  animation-delay: 2s;
}

.layer4 {
  bottom: 12%;
  left: 15%;
  width: 160px;
  opacity: 0.5;
  animation-delay: 3s;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% {
    transform: translateY(-12px) rotate(2deg);
  }
  50% { 
    transform: translateY(-20px) rotate(-2deg); 
  }
  75% {
    transform: translateY(-12px) rotate(2deg);
  }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 80px;
    min-height: 60vh;
  }
  
  .hero-content h2 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 17px;
    margin-bottom: 25px;
  }
  
  .hero-content .btn {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .layer1, .layer2, .layer3, .layer4 {
    width: 80px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px 60px;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 15px;
  }
  
  .hero-content .btn {
    padding: 12px 28px;
    font-size: 15px;
  }
  
  .layer1, .layer2, .layer3, .layer4 {
    width: 60px !important;
    opacity: 0.5;
  }
}
/* ==================== MENU SECTION ==================== */

.menu {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8f0 100%);
}

.menu h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.menu h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  border-radius: 2px;
}

.menu p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Menu Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Menu Item Link Wrapper */
.menu-item-link {
  text-decoration: none;
  display: block;
}

/* Menu Item Cards */
.menu-item {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Gradient border effect on hover */
.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa45e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-item:hover::before {
  opacity: 1;
}

/* Background glow effect */
.menu-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.menu-item:hover::after {
  width: 300px;
  height: 300px;
}

.menu-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.2);
}

/* Menu Item Title */
.menu-item h3 {
  font-size: 22px;
  color: #2c2c2c;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.menu-item:hover h3 {
  color: #ff6b35;
}

/* Emoji styling - uses text content from HTML */
.menu-item h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Target the emoji (first part of the text) */
.menu-item {
  font-size: 50px;
  transition: transform 0.4s ease;
}

.menu-item:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Menu Detail Grid (for modal items) */
.menu-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.menu-detail .item {
  text-align: center;
  padding: 15px;
  background: #fafafa;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-detail .item:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.menu-detail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  background: #f5f5f5;
  transition: transform 0.3s ease;
}

.menu-detail .item:hover img {
  transform: scale(1.05);
}

.menu-detail p {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.menu-detail .price {
  font-size: 16px;
  color: #ff6b35;
  font-weight: 700;
  margin-top: 5px;
}

/* Mobile Responsive Menu */
@media (max-width: 768px) {
  .menu {
    padding: 60px 20px;
  }
  
  .menu h2 {
    font-size: 32px;
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .menu-item {
    padding: 25px 15px;
  }
  
  .menu-item h3 {
    font-size: 18px;
  }
  
  .menu-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .menu-detail img {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .menu h2 {
    font-size: 28px;
  }
  
  .menu p {
    font-size: 15px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .menu-item {
    padding: 20px;
  }
  
  .menu-item h3::before {
    font-size: 40px;
  }
  
  .menu-item h3 {
    font-size: 16px;
  }
}

/* ==================== VIDEO ADVERTISEMENT SECTION ==================== */

.ad-video {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  overflow: hidden;
}

/* Video wrapper with subtle shadow */
.ad-video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
  border-radius: 20px;
  filter: blur(20px);
  z-index: -1;
  opacity: 0.6;
}

.ad-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-video:hover video {
  transform: scale(1.01);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* Unmute Button Styling */
.unmute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 22px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.unmute-btn:hover {
  background: rgba(255, 107, 53, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.unmute-btn:active {
  transform: scale(0.95);
}

/* Pulsing animation for unmute button */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 0 10px rgba(255, 107, 53, 0);
  }
}

.unmute-btn {
  animation: pulse 2s infinite;
}

.unmute-btn:hover {
  animation: none;
}

/* Hidden state for unmute button */
.unmute-btn[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Responsive Video */
@media (max-width: 768px) {
  .ad-video {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .ad-video video {
    border-radius: 12px;
  }
  
  .unmute-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .ad-video {
    margin: 30px auto;
    padding: 0 10px;
  }
  
  .ad-video video {
    border-radius: 10px;
  }
  
  .unmute-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 12px;
    right: 12px;
  }
}

/* ==================== ABOUT & CONTACT SECTIONS ==================== */

.about, .contact {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(180deg, #fff8f0 0%, #fffdf8 100%);
  position: relative;
}

.about::before, .contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.about h2, .contact h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about h2::after, .contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  border-radius: 2px;
}

.about p, .contact p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto;
  font-weight: 400;
}

.contact p {
  font-size: 17px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Location Section */
.location-section {
  margin-top: 40px;
}

/* Map Container */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Directions Button */
.directions-btn {
  display: inline-block;
  margin: 25px auto;
  padding: 14px 35px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.directions-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.directions-btn:hover::before {
  width: 300px;
  height: 300px;
}

.directions-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.directions-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsive About & Contact */
@media (max-width: 768px) {
  .about, .contact {
    padding: 60px 20px;
  }
  
  .about h2, .contact h2 {
    font-size: 32px;
  }
  
  .about p, .contact p {
    font-size: 16px;
  }
  
  .directions-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about h2, .contact h2 {
    font-size: 28px;
  }
  
  .about p, .contact p {
    font-size: 15px;
  }
  
  .directions-btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* ==================== MODAL SYSTEM ==================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal Content Container */
.modal-content {
  background: white;
  margin: auto;
  padding: 35px 30px;
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35, #ff8c42);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8c42, #ffa45e);
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  color: #999;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  z-index: 10;
}

.close:hover {
  color: white;
  background: #ff6b35;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Modal Header */
.modal-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 10px;
  text-align: center;
  padding-right: 40px;
}

.modal-content > p {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Modal Menu Detail Grid */
.modal .menu-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.modal .menu-detail .item {
  background: #fafafa;
  border-radius: 16px;
  padding: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Hover gradient effect */
.modal .menu-detail .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.modal .menu-detail .item:hover::before {
  opacity: 1;
}

.modal .menu-detail .item:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

/* Modal Item Images */
.modal .menu-detail .item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.modal .menu-detail .item:hover img {
  transform: scale(1.05);
}

/* Modal Item Text */
.modal .menu-detail .item p {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.modal .menu-detail .item .price {
  font-size: 17px;
  color: #ff6b35;
  font-weight: 700;
  text-align: center;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

/* Single Item Modal (for menu.html detail view) */
#itemModal .modal-content {
  max-width: 500px;
  text-align: center;
}

#modalImg {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #f5f5f5;
  padding: 15px;
}

#modalName {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 10px;
}

#modalDesc {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin: 15px 0;
  padding: 0 20px;
}

#modalPrice {
  font-size: 32px;
  color: #ff6b35;
  font-weight: 800;
  margin-top: 20px;
  text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.1);
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 25px 20px;
    width: 95%;
    max-height: 90vh;
  }
  
  .modal-content h2 {
    font-size: 26px;
  }
  
  .modal .menu-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .modal .menu-detail .item img {
    height: 160px;
  }
  
  .modal .menu-detail .item p {
    font-size: 14px;
  }
  
  .close {
    top: 15px;
    right: 15px;
    font-size: 28px;
    width: 36px;
    height: 36px;
  }
  
  #modalName {
    font-size: 24px;
  }
  
  #modalDesc {
    font-size: 15px;
    padding: 0 10px;
  }
  
  #modalPrice {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    padding: 20px 15px;
    border-radius: 20px;
  }
  
  .modal-content h2 {
    font-size: 22px;
    padding-right: 35px;
  }
  
  .modal .menu-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .modal .menu-detail .item {
    padding: 12px;
  }
  
  .modal .menu-detail .item img {
    height: 140px;
  }
  
  .modal .menu-detail .item p {
    font-size: 13px;
  }
  
  .modal .menu-detail .item .price {
    font-size: 15px;
  }
  
  #modalImg {
    max-height: 250px;
    padding: 10px;
  }
  
  #modalName {
    font-size: 20px;
  }
  
  #modalDesc {
    font-size: 14px;
  }
  
  #modalPrice {
    font-size: 24px;
  }
}
/* ==================== FOOTER ==================== */

footer {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.3) 0%, transparent 50%);
  animation: footerPattern 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerPattern {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

footer p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

footer p::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: white;
  margin: 0 auto 15px;
  border-radius: 2px;
  opacity: 0.7;
}

/* Mobile Footer */
@media (max-width: 480px) {
  footer {
    padding: 25px 15px;
  }
  
  footer p {
    font-size: 14px;
  }
  
  footer p::before {
    width: 40px;
    margin-bottom: 12px;
  }
}

/* ==================== GLOBAL ANIMATIONS ==================== */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Up Animation */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Pop Animation */
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Fade-in class */
.fade-in {
  animation: fadeIn 1s ease-out;
}

/* Scroll Fade-Up Effect */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for multiple fade-up elements */
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }

/* ==================== UTILITY CLASSES ==================== */

/* Smooth transitions */
.smooth-transition {
  transition: all 0.3s ease;
}

/* Button base styles */
.btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* ==================== LOADING STATES ==================== */

/* Skeleton loader for images */
.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 10px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==================== ACCESSIBILITY ==================== */

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 3px solid #ff6b35;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== PRINT STYLES ==================== */

@media print {
  header,
  footer,
  .parallax-layer,
  .ad-video,
  .unmute-btn,
  nav {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .menu-item,
  .modal-content {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ==================== SELECTION STYLING ==================== */

::selection {
  background: #ff6b35;
  color: white;
}

::-moz-selection {
  background: #ff6b35;
  color: white;
}

/* ==================== SMOOTH SCROLLING ==================== */

html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35, #ff8c42);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8c42, #ffa45e);
}

/* ==================== IMAGE OPTIMIZATION ==================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ==================== RESPONSIVE TYPOGRAPHY ==================== */

@media (max-width: 1200px) {
  html { font-size: 15px; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
}

@media (max-width: 480px) {
  html { font-size: 13px; }
}

/* ==================== HOVER EFFECTS FOR TOUCH DEVICES ==================== */

@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .menu-item:hover,
  .modal .menu-detail .item:hover {
    transform: none;
  }
  
  /* Add tap effect instead */
  .menu-item:active,
  .modal .menu-detail .item:active {
    transform: scale(0.97);
  }
}
/* ==================== FLOATING MESSAGE BUTTON ==================== */

.message-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  background: linear-gradient(135deg, #1877f2, #0d65d9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 3px solid white;
  animation: floatButton 3s ease-in-out infinite;
}

.message-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 35px rgba(24, 119, 242, 0.6);
}

.message-btn:active {
  transform: scale(0.95);
}

/* Facebook Messenger icon */
.message-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Pulse animation */
.message-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(24, 119, 242, 0.5);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes floatButton {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Tooltip on hover */
.message-btn::after {
  content: 'Message Us';
  position: absolute;
  right: 75px;
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.message-btn:hover::after {
  opacity: 1;
}

/* Arrow for tooltip */
.message-btn:hover::after {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .message-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .message-btn svg {
    width: 28px;
    height: 28px;
  }
  
  .message-btn::after {
    display: none; /* Hide tooltip on mobile */
  }
}

@media (max-width: 480px) {
  .message-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .message-btn svg {
    width: 26px;
    height: 26px;
  }
}
/* ==================== DARK MODE TOGGLE ==================== */

.theme-toggle {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 9997;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

/* Sun icon (light mode) */
.theme-toggle .sun-icon {
  fill: #ff6b35;
  display: block;
}

.theme-toggle .moon-icon {
  fill: #ffd700;
  display: none;
}

/* Mobile positioning */
@media (max-width: 768px) {
  .theme-toggle {
    top: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .theme-toggle svg {
    width: 22px;
    height: 22px;
  }
}

/* ==================== DARK MODE STYLES ==================== */

body.dark-mode {
  background: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 50%, #2d2d2d 100%);
}

body.dark-mode .hero-content h2,
body.dark-mode .hero-content p {
  color: #ffffff;
}

body.dark-mode .btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
}

body.dark-mode .menu,
body.dark-mode .about,
body.dark-mode .contact {
  background: #1a1a1a;
}

body.dark-mode .menu-item {
  background: #2d2d2d;
  border: 2px solid #3d3d3d;
}

body.dark-mode .menu-item:hover {
  background: #3d3d3d;
  border-color: #ff6b35;
}

body.dark-mode .menu-item h3 {
  color: #e0e0e0;
}

body.dark-mode .menu-item:hover h3 {
  color: #ff8c42;
}

body.dark-mode .about h2,
body.dark-mode .contact h2,
body.dark-mode .menu h2 {
  color: #ff8c42;
}

body.dark-mode .about p,
body.dark-mode .contact p,
body.dark-mode .menu p {
  color: #b0b0b0;
}

body.dark-mode .modal {
  background: rgba(0, 0, 0, 0.9);
}

body.dark-mode .modal-content {
  background: #2d2d2d;
  color: #e0e0e0;
}

body.dark-mode .modal-content h2 {
  color: #ff8c42;
}

body.dark-mode .modal .menu-detail .item {
  background: #1a1a1a;
  border-color: #3d3d3d;
}

body.dark-mode .modal .menu-detail .item:hover {
  background: #3d3d3d;
  border-color: #ff6b35;
}

body.dark-mode .modal .menu-detail .item p {
  color: #e0e0e0;
}

body.dark-mode .close {
  color: #b0b0b0;
}

body.dark-mode .close:hover {
  color: white;
  background: #ff6b35;
}

body.dark-mode footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

body.dark-mode .theme-toggle {
  background: #2d2d2d;
  border-color: #ff8c42;
}

body.dark-mode .theme-toggle .sun-icon {
  display: none;
}

body.dark-mode .theme-toggle .moon-icon {
  display: block;
}

/* Dark mode scrollbar */
body.dark-mode::-webkit-scrollbar-track {
  background: #1a1a1a;
}

body.dark-mode::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35, #ff8c42);
}

/* ==================== ENHANCED CTA BUTTONS ==================== */

.cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Primary CTA (Order Now) */
.cta-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
  width: 400px;
  height: 400px;
}

.cta-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

/* Secondary CTA (View Menu) */
.cta-secondary {
  background: white;
  color: #ff6b35;
  border: 3px solid #ff6b35;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
  background: #fff5f0;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
  border-color: #ff8c42;
}

/* CTA Icons */
.cta-primary svg,
.cta-secondary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-primary:hover svg,
.cta-secondary:hover svg {
  transform: translateX(5px);
}

/* Dark mode CTA adjustments */
body.dark-mode .cta-secondary {
  background: #2d2d2d;
  color: #ff8c42;
  border-color: #ff8c42;
}

body.dark-mode .cta-secondary:hover {
  background: #3d3d3d;
  border-color: #ffa45e;
}

/* Mobile CTA */
@media (max-width: 768px) {
  .cta-container {
    gap: 15px;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-primary,
  .cta-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
}
/* ==================== DARK MODE - MENU PAGE SPECIFIC ==================== */

/* Menu Page Layout */
body.dark-mode .menu-page {
  background: #1a1a1a;
}

/* Back to Home Button */
body.dark-mode .back-home {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
}

body.dark-mode .back-home:hover {
  background: linear-gradient(135deg, #ff8c42, #ffa45e);
}

/* Menu Header */
body.dark-mode .menu-header h2 {
  color: #ff8c42;
}

body.dark-mode .menu-header p {
  color: #b0b0b0;
}

/* Category Buttons */
body.dark-mode .category-btn {
  background: #2d2d2d;
  color: #ff8c42;
  border-color: #ff8c42;
}

body.dark-mode .category-btn:hover {
  background: #3d3d3d;
  border-color: #ffa45e;
}

body.dark-mode .category-btn.active {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  color: white;
  border-color: #ff8c42;
}

/* Search Input */
body.dark-mode #searchInput {
  background: #2d2d2d;
  color: #e0e0e0;
  border-color: #ff8c42;
}

body.dark-mode #searchInput::placeholder {
  color: #888;
}

body.dark-mode #searchInput:focus {
  background: #3d3d3d;
  border-color: #ffa45e;
}

/* Category Title */
body.dark-mode .category-title {
  color: #ff8c42;
}

/* Menu Items Grid */
body.dark-mode #menuItems .item {
  background: #2d2d2d;
  border: 2px solid #3d3d3d;
}

body.dark-mode #menuItems .item:hover {
  background: #3d3d3d;
  border-color: #ff6b35;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

body.dark-mode #menuItems .item img {
  background: #1a1a1a;
}

body.dark-mode #menuItems .item p {
  color: #e0e0e0;
}

body.dark-mode #menuItems .item .price {
  color: #ff8c42;
}

/* No Results Message */
body.dark-mode .no-results {
  color: #888;
}

/* Single Item Modal (menu.html specific) */
body.dark-mode #itemModal .modal-content {
  background: #2d2d2d;
}

body.dark-mode #modalImg {
  background: #1a1a1a;
}

body.dark-mode #modalName {
  color: #e0e0e0;
}

body.dark-mode #modalDesc {
  color: #b0b0b0;
}

body.dark-mode #modalPrice {
  color: #ff8c42;
}

/* ==================== DARK MODE TOGGLE ==================== */

.theme-toggle {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 99999;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
  pointer-events: auto;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

/* Sun icon (light mode) */
.theme-toggle .sun-icon {
  fill: #ff6b35;
  display: block;
}

.theme-toggle .moon-icon {
  fill: #ffd700;
  display: none;
}

/* Mobile positioning */
@media (max-width: 768px) {
  .theme-toggle {
    top: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .theme-toggle svg {
    width: 22px;
    height: 22px;
  }
}

/* ==================== DARK MODE STYLES ==================== */

body.dark-mode {
  background: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 50%, #2d2d2d 100%);
}

body.dark-mode .hero-content h2,
body.dark-mode .hero-content p {
  color: #ffffff;
}

body.dark-mode .btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
}

body.dark-mode .menu,
body.dark-mode .about,
body.dark-mode .contact {
  background: #1a1a1a;
}

body.dark-mode .menu-item {
  background: #2d2d2d;
  border: 2px solid #3d3d3d;
}

body.dark-mode .menu-item:hover {
  background: #3d3d3d;
  border-color: #ff6b35;
}

body.dark-mode .menu-item h3 {
  color: #e0e0e0;
}

body.dark-mode .menu-item:hover h3 {
  color: #ff8c42;
}

body.dark-mode .about h2,
body.dark-mode .contact h2,
body.dark-mode .menu h2 {
  color: #ff8c42;
}

body.dark-mode .about p,
body.dark-mode .contact p,
body.dark-mode .menu p {
  color: #b0b0b0;
}

body.dark-mode .modal {
  background: rgba(0, 0, 0, 0.9);
}

body.dark-mode .modal-content {
  background: #2d2d2d;
  color: #e0e0e0;
}

body.dark-mode .modal-content h2 {
  color: #ff8c42;
}

body.dark-mode .modal .menu-detail .item {
  background: #1a1a1a;
  border-color: #3d3d3d;
}

body.dark-mode .modal .menu-detail .item:hover {
  background: #3d3d3d;
  border-color: #ff6b35;
}

body.dark-mode .modal .menu-detail .item p {
  color: #e0e0e0;
}

body.dark-mode .close {
  color: #b0b0b0;
}

body.dark-mode .close:hover {
  color: white;
  background: #ff6b35;
}

body.dark-mode footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

body.dark-mode .theme-toggle {
  background: #2d2d2d;
  border-color: #ff8c42;
}

body.dark-mode .theme-toggle .sun-icon {
  display: none;
}

body.dark-mode .theme-toggle .moon-icon {
  display: block;
}

/* Dark mode scrollbar */
body.dark-mode::-webkit-scrollbar-track {
  background: #1a1a1a;
}

body.dark-mode::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35, #ff8c42);
}

/* ==================== ENHANCED CTA BUTTONS ==================== */

.cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Primary CTA (Order Now) */
.cta-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
  width: 400px;
  height: 400px;
}

.cta-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

/* Secondary CTA (View Menu) */
.cta-secondary {
  background: white;
  color: #ff6b35;
  border: 3px solid #ff6b35;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
  background: #fff5f0;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
  border-color: #ff8c42;
}

/* CTA Icons */
.cta-primary svg,
.cta-secondary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-primary:hover svg,
.cta-secondary:hover svg {
  transform: translateX(5px);
}

/* Dark mode CTA adjustments */
body.dark-mode .cta-secondary {
  background: #2d2d2d;
  color: #ff8c42;
  border-color: #ff8c42;
}

body.dark-mode .cta-secondary:hover {
  background: #3d3d3d;
  border-color: #ffa45e;
}

/* Mobile CTA */
@media (max-width: 768px) {
  .cta-container {
    gap: 15px;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-primary,
  .cta-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
}
/* ==================== SMOOTH PAGE TRANSITIONS ==================== */

/* Page fade-in on load */
body {
  animation: pageLoadFade 0.5s ease-in-out;
}

@keyframes pageLoadFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Page fade-out on navigation */
body.page-transition {
  animation: pageUnloadFade 0.4s ease-in-out forwards;
}

@keyframes pageUnloadFade {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}

/* Loading overlay */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-loader.active {
  opacity: 1;
  pointer-events: all;
}

.page-loader-content {
  text-align: center;
  color: white;
}

.page-loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.page-loader-text {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

/* Dark mode loader */
body.dark-mode .page-loader {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

/* Smooth link transitions */
a {
  transition: all 0.3s ease;
}

/* Navigation link hover with smooth transition */
nav a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
