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

:root {
  --color-primary: #d62828;
  --color-primary-700: #a61e22;
  --color-accent: #ffd54f;
  --color-accent-700: #ffca28;
  --color-bg: #f6f7fb;
  --color-surface: #ffffff;
  --color-surface-alt: #eef2f5;
  --color-text: #222222;
  --color-muted: #666666;
  --shadow-primary: rgba(214, 40, 40, 0.28);
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  overflow-x: hidden;
  background: var(--color-bg);
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
  height: 60px;
  width: auto;
}

.mobile-header-info {
  display: none;
}

.mobile-slogan {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-hours {
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.9;
  margin-top: 0.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Quick Navigation Tabs */
.quick-nav {
  position: sticky;
  top: 85px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-primary);
  z-index: 999;
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-tabs-container::-webkit-scrollbar {
  display: none;
}

.nav-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
  min-width: max-content;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--color-surface);
  color: #666;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-tab:hover {
  background: var(--color-surface-alt);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-tab.active {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-700)
  );
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px var(--shadow-primary);
}

.nav-tab i {
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: none;
  color: white;
  padding: 150px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/bgpizza.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-text h2 {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.hours,
.delivery {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #ffdd44;
  color: #000;
}

.btn-primary:hover {
  background: #ffcc00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 221, 68, 0.4);
}

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

.btn-secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image {
  display: none;
}

/* Hero text rotator */
.hero-rotator {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-rotator .rotator-item {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 500ms ease, opacity 500ms ease;
}
/* Ensure inner text becomes visible when active */
.hero-rotator .rotator-item > .tagline,
.hero-rotator .rotator-item > .hours,
.hero-rotator .rotator-item > .delivery {
  opacity: 0;
  transform: translateY(16px);
  transition: transform 500ms ease, opacity 500ms ease;
}
.hero-rotator .rotator-item.active,
.hero-rotator .rotator-item.active > .tagline,
.hero-rotator .rotator-item.active > .hours,
.hero-rotator .rotator-item.active > .delivery {
  opacity: 1;
  transform: translateY(0);
}
.hero-rotator .rotator-item.exit,
.hero-rotator .rotator-item.exit > .tagline,
.hero-rotator .rotator-item.exit > .hours,
.hero-rotator .rotator-item.exit > .delivery {
  opacity: 0;
  transform: translateY(-16px);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  margin: 1rem auto;
  border-radius: 2px;
}

/* Deals Section */
.deals {
  padding: 0px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.deal-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
  border-left: 4px solid var(--color-primary);
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.deal-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.deal-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}

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

.deal-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.5;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-700)
  );
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
}

/* Mid Night Deals */
.mid-night-deals {
  margin: 4rem 0;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  padding: 3rem;
  border-radius: 20px;
  color: white;
}

.mid-night-deals h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffdd44;
}

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

.midnight-deal {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid rgba(255, 68, 68, 0.3);
}

.midnight-deal h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Special Deal Specific Color Schemes - Matching Promotional Images */

/* Deal 1 - Vibrant Orange & Gold */
.deal-card-1 {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-left: 4px solid #ff4757;
  color: #ffffff;
}

.deal-card-1 h3 {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.deal-card-1 p {
  color: #fff8dc;
}

.deal-card-1 .price {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

/* Deal 2 - Dark brown with fiery orange/red background (from image) */
.deal-card-2 {
  background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
  border-left: 4px solid #f59e0b;
  color: #ffffff;
}

.deal-card-2 h3 {
  color: #f59e0b;
  font-weight: 700;
}

.deal-card-2 p {
  color: #ffffff;
}

.deal-card-2 .price {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #2c1810;
  font-weight: 700;
}

/* Deal 3 - Deep red background with yellow-green accents */
.deal-card-3 {
  background: linear-gradient(135deg, #cc0000 0%, #8b0000 100%);
  border-left: 4px solid #ccff00;
  color: #ffffff;
}

.deal-card-3 h3 {
  color: #ccff00;
  font-weight: 700;
}

.deal-card-3 p {
  color: #ffffff;
}

.deal-card-3 .price {
  background: linear-gradient(135deg, #8b0000, #660000);
  color: #ffffff;
  font-weight: 700;
}

/* Deal 4 - Dark charcoal background with red accents */
.deal-card-4 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-left: 4px solid #cc0000;
  color: #ffffff;
}

.deal-card-4 h3 {
  color: #ffffff;
  font-weight: 700;
}

.deal-card-4 p {
  color: #ffffff;
}

.deal-card-4 .price {
  background: linear-gradient(135deg, #cc0000, #990000);
  color: #ffffff;
  font-weight: 700;
}

/* Deal 5 - Dark brown background with red accents */
.deal-card-5 {
  background: linear-gradient(135deg, #331a00 0%, #5c2d00 100%);
  border-left: 4px solid #dc2626;
  color: #ffffff;
}

.deal-card-5 h3 {
  color: #facc15;
  font-weight: 700;
}

.deal-card-5 p {
  color: #e0e0e0;
}

.deal-card-5 .price {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  font-weight: 700;
}

/* Deal 6 - Dark red/maroon background with greenish-yellow accents (from image) */
.deal-card-6 {
  background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
  border-left: 4px solid #adff2f;
  color: #ffffff;
}

.deal-card-6 h3 {
  color: #adff2f;
  font-weight: 700;
}

.deal-card-6 p {
  color: #adff2f;
}

.deal-card-6 .price {
  background: linear-gradient(135deg, #8b0000, #660000);
  color: #ffffff;
  font-weight: 700;
}

/* Deal 7 - Dark brown background with bright yellow accents */
.deal-card-7 {
  background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
  border-left: 4px solid #facc15;
  color: #ffffff;
}

.deal-card-7 h3 {
  color: #facc15;
  font-weight: 700;
}

.deal-card-7 p {
  color: #ffffff;
}

.deal-card-7 .price {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #2c1810;
  font-weight: 700;
}

/* Midnight Deal Specific Color Schemes */

/* MN1 - Light background with green accents */
.midnight-deal-1 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid #4caf50;
  color: #333;
}

.midnight-deal-1 h4 {
  color: #4caf50;
  font-weight: 700;
}

.midnight-deal-1 p {
  color: #666;
}

.midnight-deal-1 .price {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
  font-weight: 700;
}

/* MN2 - Dark green background with white text */
.midnight-deal-2 {
  background: linear-gradient(135deg, #2e502e 0%, #1a3a1a 100%);
  border-left: 4px solid #ffc107;
  color: white;
}

.midnight-deal-2 h4 {
  color: #ffc107;
  font-weight: 700;
}

.midnight-deal-2 p {
  color: #ffffff;
}

.midnight-deal-2 .price {
  background: linear-gradient(135deg, #ffc107, #ffa000);
  color: #2e502e;
  font-weight: 700;
}

/* MN3 - Yellow-orange gradient background with green text */
.midnight-deal-3 {
  background: linear-gradient(135deg, #ffff00 0%, #ffa500 100%);
  border-left: 4px solid #008000;
  color: #008000;
}

.midnight-deal-3 h4 {
  color: #008000;
  font-weight: 700;
}

.midnight-deal-3 p {
  color: #008000;
}

.midnight-deal-3 .price {
  background: linear-gradient(135deg, #008000, #006400);
  color: #ffd700;
  font-weight: 700;
}

/* Masti Deal Specific Color Schemes - Matching Promotional Images */

/* Medium Masti Deal - Dark Brown/Black background with golden yellow accents */
.masti-deal-1 {
  background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%) !important;
  border-left: 4px solid #ffd700;
  color: #ffffff;
}

.masti-deal-1 h4 {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.masti-deal-1 p {
  color: #fff8dc !important;
}

.masti-deal-1 .price {
  background: #ffd700 !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Double Masti Large Deal - Dark/Black background with vibrant yellow accents */
.masti-deal-2 {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%) !important;
  border-left: 4px solid #ffdd44;
  color: #ffffff;
}

.masti-deal-2 h4 {
  color: #ffdd44;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.masti-deal-2 p {
  color: #fff8dc !important;
}

.masti-deal-2 .price {
  background: #ffdd44 !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 221, 68, 0.4);
}

/* Royal Deal 1 - Vibrant magenta/purple/pink gradient */
.masti-deal-3 {
  background: linear-gradient(
    135deg,
    #cc0066 0%,
    #ff0080 50%,
    #ff66cc 100%
  ) !important;
  border-left: 4px solid #ffd700;
  color: #ffffff;
}

.masti-deal-3 h4 {
  color: #ffdd44 !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.masti-deal-3 p {
  color: #fff8dc !important;
}

.masti-deal-3 .price {
  background: #ffd700 !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Royal Deal 2 - Dark red/maroon background */
.masti-deal-4 {
  background: linear-gradient(135deg, #8b0000 0%, #660000 100%) !important;
  border-left: 4px solid #ffa500;
  color: #ffffff;
}

.masti-deal-4 h4 {
  color: #ffdd44 !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.masti-deal-4 p {
  color: #fff8dc !important;
}

.masti-deal-4 .price {
  background: #ffa500 !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* Royal Deal 3 - Same as Royal Deal 2 (uses RoyalDeal2.jpeg) */
.masti-deal-5 {
  background: linear-gradient(135deg, #8b0000 0%, #660000 100%) !important;
  border-left: 4px solid #ffa500;
  color: #ffffff;
}

.masti-deal-5 h4 {
  color: #ffdd44 !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.masti-deal-5 p {
  color: #fff8dc !important;
}

.masti-deal-5 .price {
  background: #ffa500 !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* Royal Deal 4 - Same as Royal Deal 5 (uses RoyalDeal5.jpeg) - Dark desaturated blue-grey */
.masti-deal-6 {
  background: linear-gradient(135deg, #3a4a5a 0%, #2c3e50 100%) !important;
  border-left: 4px solid #fff8dc;
  color: #ffffff;
}

.masti-deal-6 h4 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.masti-deal-6 p {
  color: #fff8dc !important;
}

.masti-deal-6 .price {
  background: #fff8dc !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 248, 220, 0.4);
}

/* Royal Deal 5 - Dark desaturated blue-grey */
.masti-deal-7 {
  background: linear-gradient(135deg, #3a4a5a 0%, #2c3e50 100%) !important;
  border-left: 4px solid #fff8dc;
  color: #ffffff;
}

.masti-deal-7 h4 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.masti-deal-7 p {
  color: #fff8dc !important;
}

.masti-deal-7 .price {
  background: #fff8dc !important;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 248, 220, 0.4);
}

/* Masti Deals */
.masti-deals {
  margin: 4rem 0;
}

.masti-deals h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ff4444;
}

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

.masti-deal {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease;
}

.masti-deal:hover {
  transform: translateX(5px);
}

.masti-deal h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.masti-deal p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Menu Section */
.menu {
  padding: 80px 0;
  background: var(--color-bg);
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-surface-alt),
    var(--color-bg)
  );
  border-radius: 10px;
  border-left: 5px solid var(--color-primary);
}

.menu-category-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.menu-category-header:hover {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  transform: translateY(-2px);
}

.category-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.menu-category-header.active .category-arrow {
  transform: rotate(180deg);
}

.menu-items-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-bottom: 0;
}

.menu-items-container.active {
  max-height: 2000px;
  transition: max-height 0.6s ease-in;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.menu-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}

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

.menu-item h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sizes span {
  background: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.6rem;
  color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 999px;
  padding: 0.35rem 0.4rem;
  display: inline-block;
}

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

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #333 0%, #000 100%);
  color: white;
}

.contact .section-title {
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.contact-item i {
  font-size: 2rem;
  color: #ff4444;
  min-width: 40px;
}

.contact-item h3 {
  color: #ffdd44;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Clickable Phone and WhatsApp Links */
.phone-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.phone-link:hover {
  color: #fff;
  border-bottom: 1px solid #ffdd44;
  text-shadow: 0 0 5px rgba(255, 221, 68, 0.5);
}

.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.whatsapp-link:hover {
  color: #128c7e;
  border-bottom: 1px solid #25d366;
  text-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
}

.address-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.address-link:hover {
  color: #fff;
  border-bottom: 1px solid #ff6b6b;
  text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

/* Footer Links */
.footer-contact .phone-link {
  color: #ffdd44;
}

.footer-contact .phone-link:hover {
  color: #fff;
}

.footer-contact .whatsapp-link {
  color: #25d366;
}

.footer-contact .whatsapp-link:hover {
  color: #128c7e;
}

.footer-contact .address-link {
  color: #ff6b6b;
}

.footer-contact .address-link:hover {
  color: #fff;
}

.menu-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
  color: #ff4444;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff4444;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  color: #ff4444;
  margin-right: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 0.8rem 0;
    top: 0px;
  }

  .quick-nav {
    top: 57px;
    padding: 0.5rem 0;
  }

  .nav-tabs {
    padding: 0 0.5rem;
    gap: 0.3rem;
  }

  .nav-tab {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    flex-shrink: 0;
    gap: 0.3rem;
  }

  .nav-tab span {
    display: block;
    font-size: 0.7rem;
  }

  .nav-tab i {
    font-size: 1rem;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .logo {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .logo-img {
    height: 45px;
    flex-shrink: 0;
  }

  .mobile-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hamburger {
    display: flex;
    align-self: flex-start;
    margin-top: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 85px;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

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

  .hero {
    padding: 120px 0 60px;
    min-height: 70vh;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text h2 {
    font-size: 1.4rem;
  }
  .tagline {
    font-size: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1,
  .hero-text h2,
  .hero-text .tagline,
  .hero-text .hours,
  .hero-text .delivery,
  .hero-buttons {
    transform: translateY(-8px);
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

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

  /* Single column for all deal grids on tablet/mobile */
  .deals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .deal-card {
    padding: 1.2rem;
  }

  .deal-image {
    height: 120px;
    margin-bottom: 0.8rem;
  }

  .deal-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .deal-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .price {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Make Midnight and Masti deals one card per row */
  .midnight-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .midnight-deal {
    padding: 1rem;
  }

  .masti-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .masti-deal {
    padding: 1rem;
  }

  .masti-deal h4 {
    font-size: 1rem;
  }

  .masti-deal p {
    font-size: 0.8rem;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
  }

  .contact-item i {
    margin-bottom: 0.8rem;
    margin-right: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  /* Compact grid layout for all cards at <=768px */
  .deal-card,
  .menu-item,
  .midnight-deal,
  .masti-deal {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "img title" "img desc" "img price";
    align-items: center;
    align-content: center;
    column-gap: 10px;
    row-gap: 4px;
    text-align: left;
    padding: 12px;
  }

  /* Tablet-specific deal border colors - matching image colors */
  .deal-card-1 {
    border-left: 4px solid #ff4757;
  }

  .deal-card-2 {
    border-left: 4px solid #f59e0b;
  }

  .deal-card-3 {
    border-left: 4px solid #ccff00;
  }

  .deal-card-4 {
    border-left: 4px solid #cc0000;
  }

  .deal-card-5 {
    border-left: 4px solid #dc2626;
  }

  .deal-card-6 {
    border-left: 4px solid #adff2f;
  }

  .deal-card-7 {
    border-left: 4px solid #facc15;
  }

  .midnight-deal-1 {
    border-left: 4px solid #4caf50;
  }

  .midnight-deal-2 {
    border-left: 4px solid #ffc107;
  }

  .midnight-deal-3 {
    border-left: 4px solid #008000;
  }
  .deal-card .deal-image,
  .midnight-deal .deal-image,
  .masti-deal .deal-image,
  .menu-item .menu-image {
    grid-area: img;
    width: 90px;
    height: 90px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .deal-card h3,
  .midnight-deal h4,
  .masti-deal h4,
  .menu-item h4 {
    grid-area: title;
    margin: 0 0 2px;
    font-size: 1rem;
  }
  .deal-card p,
  .midnight-deal p,
  .masti-deal p,
  .menu-item p,
  .menu-item .sizes {
    grid-area: desc;
    margin: 0 0 4px;
    font-size: 0.85rem;
  }
  .price,
  .menu-item .price,
  .midnight-deal .price,
  .masti-deal .price {
    grid-area: price;
    justify-self: start;
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Two-per-row price pills for menu item sizes on mobile */
  .menu-item .sizes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .menu-item .sizes span {
    width: 100%;
    text-align: center;
    justify-self: stretch;
  }
  .hero-rotator .rotator-item {
    transform: translateY(12px);
  }
  .hero-rotator .rotator-item.exit {
    transform: translateY(-12px);
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.6rem 0;
    top: 0px;
  }

  .logo {
    gap: 0.8rem;
  }

  .logo-img {
    height: 40px;
  }

  .mobile-slogan {
    font-size: 0.75rem;
  }

  .mobile-hours {
    font-size: 0.65rem;
  }

  .nav-menu {
    top: 60px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .deals-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .deal-card {
    padding: 1rem;
  }

  /* make deal image smaller and centered */
  .deal-image {
    height: 90px;
    margin-bottom: 0;
    width: 90px;
  }

  /* Compact single-row card layout with centered image */
  .deal-card,
  .menu-item,
  .midnight-deal,
  .masti-deal {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "img title"
      "img desc"
      "img price";
    align-items: center;
    align-content: center;
    column-gap: 10px;
    row-gap: 3px;
    text-align: left;
    padding: 10px;
    max-width: 100%;
  }

  /* Mobile-specific deal border colors - matching image colors */
  .deal-card-1 {
    border-left: 4px solid #ff4757;
  }

  .deal-card-2 {
    border-left: 4px solid #f59e0b;
  }

  .deal-card-3 {
    border-left: 4px solid #ccff00;
  }

  .deal-card-4 {
    border-left: 4px solid #cc0000;
  }

  .deal-card-5 {
    border-left: 4px solid #dc2626;
  }

  .deal-card-6 {
    border-left: 4px solid #adff2f;
  }

  .deal-card-7 {
    border-left: 4px solid #facc15;
  }

  .midnight-deal-1 {
    border-left: 4px solid #4caf50;
  }

  .midnight-deal-2 {
    border-left: 4px solid #ffc107;
  }

  .midnight-deal-3 {
    border-left: 4px solid #008000;
  }

  .masti-deal-1 {
    border-left: 4px solid #ffd700;
  }

  .masti-deal-2 {
    border-left: 4px solid #ffdd44;
  }

  .masti-deal-3 {
    border-left: 4px solid #ffd700;
  }

  .masti-deal-4 {
    border-left: 4px solid #ffa500;
  }

  .masti-deal-5 {
    border-left: 4px solid #ffa500;
  }

  .masti-deal-6 {
    border-left: 4px solid #fff8dc;
  }

  .masti-deal-7 {
    border-left: 4px solid #fff8dc;
  }
  /* map elements to grid areas with centered images */
  .deal-card .deal-image,
  .midnight-deal .deal-image,
  .masti-deal .deal-image,
  .menu-item .menu-image {
    grid-area: img;
    width: 90px;
    height: 90px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .deal-card h3,
  .midnight-deal h4,
  .masti-deal h4,
  .menu-item h4 {
    grid-area: title;
    margin: 0;
  }

  .deal-card p,
  .midnight-deal p,
  .masti-deal p,
  .menu-item p,
  .menu-item .sizes {
    grid-area: desc;
    margin: 0;
  }

  .price,
  .menu-item .price {
    grid-area: price;
    margin: 2px 0 0 0;
    justify-self: start;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    display: inline-block;
    font-size: 0.85rem;
    white-space: nowrap;
    max-width: fit-content;
  }
}

/* Classic Fade Animation */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* New directional fades per request */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Animation Classes */
.animate-element {
  opacity: 0;
  will-change: transform, opacity;
}

.animate-element.animate {
  opacity: 1;
}

.fade-up,
.fade-left,
.fade-right,
.fade-down,
.scale-in,
.bounce-in,
.slide-rotate,
.flip-in {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Performance optimizations */
.animate-element {
  backface-visibility: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ff4444;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #cc0000;
}

/* Floating Contact Buttons */
.floating-contacts {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: calc(20px + env(safe-area-inset-right));
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.call-float,
.whatsapp-float {
  display: flex;
  justify-content: flex-end;
  pointer-events: auto;
}

/* Call Button */
.call-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
  transition: all 0.3s ease;
  animation: callPulse 2s infinite;
}

.call-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 68, 68, 0.6);
  background: linear-gradient(135deg, #cc0000, #990000);
}

.call-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.call-btn i {
  font-size: 1.8rem;
  animation: callRing 1.5s infinite;
}

.call-text {
  font-size: 0.9rem;
  white-space: nowrap;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.whatsapp-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.whatsapp-btn i {
  font-size: 1.8rem;
  animation: whatsappBounce 1.5s infinite;
}

.whatsapp-text {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Call Animations */
@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 68, 68, 0.7);
  }
}

@keyframes callRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
}

/* WhatsApp Animations */
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
  }
}

@keyframes whatsappBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* Mobile Contact Buttons */
@media (max-width: 768px) {
  .floating-contacts {
    bottom: calc(15px + env(safe-area-inset-bottom));
    right: calc(15px + env(safe-area-inset-right));
    gap: 0.8rem;
  }

  .call-btn,
  .whatsapp-btn {
    padding: 0.8rem 1rem;
    border-radius: 50px;
  }

  .call-text,
  .whatsapp-text {
    font-size: 0.8rem;
  }

  .call-btn i,
  .whatsapp-btn i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .floating-contacts {
    bottom: calc(10px + env(safe-area-inset-bottom));
    right: calc(10px + env(safe-area-inset-right));
    gap: 0.6rem;
  }

  .call-btn,
  .whatsapp-btn {
    padding: 0.7rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
  }

  .call-text,
  .whatsapp-text {
    display: none;
  }

  .call-btn i,
  .whatsapp-btn i {
    font-size: 1.6rem;
  }
}

.hero-text h1,
.hero-text h2,
.hero-text .tagline,
.hero-text .hours,
.hero-text .delivery,
.hero-buttons {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes dropInBounce {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  60% {
    opacity: 1;
    transform: translateY(8px);
  }
  80% {
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero.hero-animate .hero-text h1 {
  animation: dropInBounce 0.9s ease-out 0s both;
}
.hero.hero-animate .hero-text h2 {
  animation: dropInBounce 0.9s ease-out 0.1s both;
}
.hero.hero-animate .hero-text .tagline {
  animation: dropInBounce 0.9s ease-out 0.2s both;
}
.hero.hero-animate .hero-text .hours {
  animation: dropInBounce 0.9s ease-out 0.3s both;
}
.hero.hero-animate .hero-text .delivery {
  animation: dropInBounce 0.9s ease-out 0.4s both;
}
.hero.hero-animate .hero-buttons {
  animation: dropInBounce 0.9s ease-out 0.55s both;
}

/* Simple hero line rotation */
.hero .rotating {
  display: none;
}
.hero .rotating.show {
  display: block;
}

@media (max-width: 768px) {
  .mid-night-deals {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .midnight-grid {
    gap: 0.8rem;
  }
  .midnight-deal {
    margin-left: -6px;
    margin-right: -6px;
  }
}

@media (max-width: 480px) {
  .mid-night-deals {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .midnight-deal {
    margin-left: 0px;
    margin-right: 0px;
  }
}
