:root {
  --primary: #8B0000;
  --secondary: #D4AF37;
  --accent: #FF6B35;
  --dark: #1a1a1a;
  --light: #f8f8f8;
  --cream: #FFF8F0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--secondary);
  font-weight: 700;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav.scrolled {
  padding: 0.8rem 5%;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--secondary);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--secondary);
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    url('Pappilon name.jpg') center/cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--secondary);
  text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
  letter-spacing: 5px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 3px;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.hero-btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--dark);
}

/* Stats Bar */
.stats-bar {
  background: var(--dark);
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* About Section */
.about-section {
  padding: 8rem 5%;
  background: var(--cream);
}

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

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 1.5rem auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--secondary);
  min-width: 40px;
}

.feature-text h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* About Showcase Section */
.about-showcase {
  max-width: 1400px;
  margin: 5rem auto 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.showcase-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.showcase-item:hover {
  transform: translateY(-10px);
}

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

/* Menu Section - NEW DESIGN */
.menu-section {
  padding: 8rem 5%;
  background: #fff;
}

.menu-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.menu-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

.menu-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 6rem;
}

.menu-category-card {
  background: var(--cream);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

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

.menu-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.category-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.menu-category-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.menu-category-card > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.menu-highlights {
  list-style: none;
  margin-bottom: 2rem;
}

.menu-highlights li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
}

.menu-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.menu-price-range {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(139, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
}

.menu-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

.menu-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.download-icon {
  font-size: 1.3rem;
}

/* Featured Specialties */
.featured-specialties {
  max-width: 1400px;
  margin: 6rem auto 0;
  text-align: center;
}

.featured-specialties h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

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

.specialty-item {
  background: var(--cream);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.specialty-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.specialty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.specialty-item h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.specialty-item p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.specialty-price {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-footer {
  max-width: 900px;
  margin: 6rem auto 0;
  text-align: center;
}

.menu-note {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.contact-menu-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.contact-menu-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Gallery Section */
.gallery-section {
  padding: 8rem 5%;
  background: var(--light);
}

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

.gallery-item {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

/* Banquet Section */
.banquet-section {
  padding: 8rem 5%;
  background: #fff;
}

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

.banquet-card {
  background: var(--cream);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: all 0.4s;
  position: relative;
}

.banquet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.banquet-image {
  height: 250px;
  overflow: hidden;
}

.banquet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.banquet-icon {
  font-size: 3rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
}

.banquet-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.banquet-card p {
  padding: 0 2rem 2rem;
  color: #666;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 8rem 5%;
  background: var(--cream);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  color: var(--secondary);
  min-width: 40px;
}

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

.contact-details p {
  color: #666;
  line-height: 1.7;
}

/* Social Media */
.social-media {
  margin-top: 3rem;
}

.social-media h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.social-icons svg {
  width: 22px;
  height: 22px;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  height: 500px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--secondary);
}

.footer-section a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* Today's Special Section */
.todays-special-section {
  padding: 6rem 5%;
  background: var(--cream);
}

.special-container {
  max-width: 1200px;
  margin: 0 auto;
}

.special-badge {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.special-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Carousel */
.special-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.special-dish-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.special-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

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

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

.special-details {
  padding: 1rem;
}

.special-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.special-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.special-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.special-price {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.special-timing {
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.order-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* Hide navigation on mobile */
@media (max-width: 768px) {
  .carousel-nav {
    display: none !important;
  }
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator-dot.active {
  background: var(--primary);
  width: 35px;
  border-radius: 10px;
}

/* Admin Controls */
.admin-controls {
  margin-top: 2rem;
}

.admin-toggle-btn {
  background: var(--secondary);
  border: 3px solid var(--secondary);
  color: var(--dark);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.7);
    transform: scale(1.05);
  }
}

.admin-toggle-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(139, 0, 0, 0.6);
}

.admin-panel {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}

.admin-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

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

.admin-auth {
  display: flex;
  gap: 1rem;
}

.admin-auth input {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--cream);
  border-radius: 10px;
  font-size: 1rem;
}

.admin-auth button {
  padding: 1rem 2rem;
  background: var(--secondary);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-auth button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem;
  border: 2px solid var(--cream);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.form-group small {
  color: #999;
  font-size: 0.85rem;
}

.save-btn {
  padding: 1.2rem 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.save-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  max-width: 400px;
  animation: slideInRight 0.4s ease;
  border-left: 4px solid var(--secondary);
}

.toast-notification.success {
  border-left-color: #10b981;
}

.toast-notification.error {
  border-left-color: #ef4444;
}

.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.toast-message {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.toast-close:hover {
  background: rgba(0,0,0,0.05);
  color: var(--dark);
}

/* Confirmation Modal */
.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  animation: fadeIn 0.2s ease;
}

.confirm-box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease;
}

.confirm-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.confirm-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.confirm-message {
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.confirm-buttons {
  display: flex;
  gap: 1rem;
}

.confirm-btn {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.confirm-btn-cancel {
  background: #e5e7eb;
  color: var(--dark);
}

.confirm-btn-cancel:hover {
  background: #d1d5db;
}

.confirm-btn-confirm {
  background: var(--primary);
  color: #fff;
}

.confirm-btn-confirm:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.toast-notification.hiding {
  animation: slideOutRight 0.3s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
  .special-dish-card {
    flex-direction: column;
  }
  
  .special-image {
    width: 100%;
    height: 300px;
  }
  
  .special-details {
    padding: 2rem;
  }
  
  .menu-categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* WhatsApp Button */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Toast Notifications Mobile */
  .toast-notification {
    top: 80px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
    padding: 1rem;
  }

  .toast-title {
    font-size: 0.95rem;
  }

  .toast-message {
    font-size: 0.85rem;
  }

  nav {
    padding: 1rem 3%;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s;
    z-index: 10001;
  }

  .nav-links.active {
    right: 0;
  }
  
  .nav-links::before {
    content: '✕';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 10002;
  }

  .menu-toggle {
    display: flex;
    z-index: 10000;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid,
  .banquet-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .loader-text {
    font-size: 2.5rem;
  }
  
  .stats-bar {
    padding: 2rem 3%;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }

  .todays-special-section {
    padding: 4rem 5%;
  }
  
  .badge-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .special-content {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .special-dish-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .special-image {
    height: 250px;
    border-radius: 10px;
  }

  .special-details {
    padding: 0;
  }
  
  .special-details h2 {
    font-size: 1.5rem;
  }
  
  .special-desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .special-price-row {
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .original-price {
    font-size: 1rem;
  }
  
  .special-price {
    font-size: 1.8rem;
  }
  
  .special-timing {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .order-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .discount-badge {
    top: 10px;
    right: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .carousel-indicators {
    margin-top: 1rem;
  }
  
  .indicator-dot {
    width: 10px;
    height: 10px;
  }
  
  .indicator-dot.active {
    width: 25px;
  }
  
  /* Admin Controls Mobile */
  .admin-toggle-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .admin-panel {
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 15px;
  }
  
  .admin-header h3 {
    font-size: 1.4rem;
  }
  
  .admin-auth {
    flex-direction: column;
  }
  
  .admin-form {
    gap: 1rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.95rem;
  }
  
  .save-btn {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-item {
    height: 200px;
  }
  
  .banquet-image {
    height: 180px;
  }
  
  .menu-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-intro p {
    font-size: 1rem;
  }
  
  .featured-specialties h3 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-map {
    height: 350px;
  }
}