
/* GLOBAL RESET AND RESPONSIVE SETTINGS */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background: #0d0d0d;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, #ff0000, #ff6600);
  padding: 20px 20px;
}
.logo {
  width: 70px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 10px 0 0 0;
}
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}
.nav-menu li a:hover {
  color: #ffff00;
  text-shadow: 0 0 10px #ffff00;
}

/* HERO */
.hero-text {
  text-align: center;
  margin: 30px 10px;
}
.hero-text h1 {
  font-size: 3em;
  color: #ffff00;
  text-shadow: 3px 3px 0 #ff0000;
  animation: flicker 2s infinite alternate;
}
.hero-text p {
  font-size: 1.2em;
  color: #ffcc00;
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}
.menu-item {
  background: #1a1a1a;
  border: 2px solid #ff0000;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 20px #ff0000aa;
}
.menu-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.menu-item h2 {
  font-size: 1.5em;
  color: #ffcc00;
  text-shadow: 1px 1px #000;
}
.menu-item p {
  font-size: 1em;
  color: #fff;
}

/* FOOTER */
.footer {
  background: #111;
  padding: 20px;
  text-align: center;
}
.whatsapp-button {
  background: linear-gradient(to right, #ff9900, #ff3300);
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px #ff6600, 0 0 10px #ff6600, 0 0 15px #ff6600, 0 0 20px #ff3300;
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

/* MEDIA QUERIES */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.2em;
  }
  .hero-text p {
    font-size: 1em;
  }
  .nav-menu {
    justify-content: center;
  }
  .nav-menu li a {
    font-size: 1em;
  }
}
