:root {
  /* Color Palette - Hot, Vibrant, Bold */
  --chilli-red: #D32F2F;
  --chilli-dark: #8B0000;
  --spice-orange: #FF6F00;
  --charcoal: #1A1A1A;
  --off-white: #F9F7F2;
  --deep-green: #1B5E20;
  --gold: #FFD700;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Shadows & Effects */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.2);
  --inner-glow: inset 0 0 50px rgba(211, 47, 47, 0.05);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display-font {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
}

/* Layout Components */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: var(--space-sm) 0;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--chilli-red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--chilli-red);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #330000 100%);
  color: white;
  padding-top: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  margin-bottom: var(--space-md);
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.cta-group {
  display: flex;
  gap: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--chilli-red);
  color: white;
  border: 2px solid var(--chilli-red);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--chilli-red);
  transform: translateY(-5px);
}

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

.btn-outline:hover {
  background-color: white;
  color: var(--charcoal);
  transform: translateY(-5px);
}

/* Features/Menu Highlights */
.spice-levels {
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--chilli-dark);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--off-white);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--chilli-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

/* Product Showcase */
.showcase {
  background-color: var(--charcoal);
  color: white;
}

.product-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.product-row:nth-child(even) {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1;
  height: 500px;
  background: #2A2A2A;
  position: relative;
}

.product-info {
  flex: 1;
}

.tagline {
  color: var(--spice-orange);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: var(--space-sm);
}

/* Placeholders */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: bold;
  position: relative;
}

.placeholder-image::after {
  content: attr(data-label);
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Decorative Chilli Animation Background */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.chilli-svg {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Menu Section */
.menu-section {
  background: var(--off-white);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed #ccc;
}

.menu-item-name {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.menu-item-price {
  font-weight: 900;
  color: var(--chilli-red);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--spice-orange);
}

.bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto var(--space-lg);
  }
  .cta-group {
    justify-content: center;
  }
  .product-row {
    flex-direction: column !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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