@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@400;600;700&display=swap');

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

body { 
  font-family: 'Open Sans', sans-serif; 
  background: #fff; 
  color: #000; 
  line-height: 1.6;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 1rem 2rem; 
  background: linear-gradient(135deg, #E41C23 0%, #C41E3A 50%, #E41C23 100%); 
  color: #fff; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-bottom: 3px solid #FFD700;
}

header h1 { 
  font-family: 'Anton', sans-serif; 
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.crown {
  font-size: 2.5rem;
  animation: crownGlow 3s ease-in-out infinite alternate;
  transform: rotate(-5deg);
  display: inline-block;
}

@keyframes crownGlow {
  from { 
    filter: drop-shadow(0 0 8px #FFD700) drop-shadow(0 0 15px #FFA500);
    transform: rotate(-5deg) scale(1);
  }
  to { 
    filter: drop-shadow(0 0 15px #FFD700) drop-shadow(0 0 25px #FFA500);
    transform: rotate(-5deg) scale(1.05);
  }
}

nav a { 
  margin-left: 1.5rem; 
  font-weight: 600; 
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFD700;
}

.hero { 
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1626645738196-c2a7c87a8f58?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat; 
  height: 80vh; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
  color: #fff; 
  text-align: center; 
  padding: 0 1rem; 
}

.hero h2 { 
  font-family: 'Anton', sans-serif; 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  text-shadow: 2px 2px 4px #000; 
}

.hero button { 
  padding: 1rem 2rem; 
  font-size: 1.2rem; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  margin: 0.5rem; 
  font-weight: 600;
  transition: transform 0.3s ease;
}

.hero button:hover {
  transform: translateY(-2px);
}

.order-btn { 
  background-color: #FFD700; 
  color: #000; 
}

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

section { 
  padding: 4rem 2rem; 
}

.section-title { 
  text-align: center; 
  font-family: 'Anton', sans-serif; 
  font-size: 2.5rem; 
  margin-bottom: 3rem; 
  color: #E41C23; 
}

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

.category-title {
  color: #E41C23; 
  text-align: center; 
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.menu-item { 
  border: 1px solid #ddd; 
  border-radius: 12px; 
  overflow: hidden; 
  text-align: center; 
  transition: all 0.3s ease; 
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-item:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.menu-item img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
}

.menu-item h3 { 
  margin: 1rem 0 0.5rem; 
  color: #E41C23;
  font-weight: 700;
}

.menu-item p { 
  padding: 0 1rem 1rem; 
  font-size: 0.9rem; 
  color: #555; 
}

.menu-item button { 
  margin-bottom: 1rem; 
  padding: 0.8rem 1.5rem; 
  background-color: #E41C23; 
  color: #fff; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.menu-item button:hover {
  background-color: #c41520;
}

#cart-section {
  background: #f8f9fa;
}

#cart { 
  max-width: 600px; 
  margin: auto; 
  border: 1px solid #ddd; 
  padding: 2rem; 
  border-radius: 12px; 
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#cart h3 { 
  margin-bottom: 1.5rem; 
  text-align: center; 
  color: #E41C23;
  font-size: 1.5rem;
}

.cart-item { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 1rem; 
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item button { 
  background-color: #E41C23; 
  color: #fff; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  padding: 0.3rem 0.8rem; 
  font-size: 0.8rem;
}

#total { 
  text-align: right; 
  font-weight: bold; 
  margin-top: 1.5rem; 
  font-size: 1.2rem;
  color: #E41C23;
}

.checkout-btn {
  margin-top: 1rem; 
  width: 100%; 
  padding: 1rem; 
  background-color: #FFD700; 
  border: none; 
  border-radius: 5px; 
  font-weight: bold; 
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #e6c200;
}

.about-text {
  text-align: center; 
  max-width: 800px; 
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.contact-card a {
  color: #E41C23;
  font-weight: 600;
}

.map-container {
  margin-top: 3rem;
  text-align: center;
}

.map-container h3 {
  color: #E41C23;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

footer { 
  background-color: #222; 
  color: #fff; 
  text-align: center; 
  padding: 2rem; 
}

footer a { 
  color: #FFD700; 
  margin: 0 0.5rem; 
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 768px) { 
  .hero h2 { 
    font-size: 2.2rem; 
  } 
  
  nav { 
    display: none; 
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 250px;
  }
}