/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #292929;
    line-height: 1.6;
  }
  
  /* Cabeçalho fixo */
  header {
    background-color: #ffd208;
    color: #000000;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  nav a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  nav a::after{
  content: " ";
   width: 0%;
   height: 2px;
   background-color: #000000;
   position: absolute;
   bottom: 0;
   left: 0;
   }
  
   nav a:hover::after{
  width: 100%;
  
  }
  /* Banner hero */
  .hero {
    background: url('banner-pizzaria.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
  }
  
  .hero h2 {
    color: #fff;
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border-radius: 12px;
  }
  
  /* Seção de cardápio */
  .menu-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffd208;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .menu-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-5px);
  }
  
  .menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .menu-item-content {
    padding: 1.5rem;
  }
  
  .menu-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .menu-item p {
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Botão de pedido */
  .order-btn {
    display: inline-block;
    background-color: #b30000;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }
  
  .order-btn:hover {
    background-color: #8e0000;
  }
  
  /* Rodapé */
  footer {
    background-color: #222;
    color: #eee;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    font-size: 0.9rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 2.2rem;
    }
  
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

/* Pizza central fixa em todas as telas */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1000px;   /* tamanho da pizza */
  height: 300px;
  background: url('https://images.vexels.com/media/users/3/353209/isolated/preview/54c45d332ef90694d99e6a27156f97b6-icone-de-pizza-de-calabresa.png') center/contain no-repeat;
  transform: translate(-50%, -50%);
  opacity: 0.38;  /* bem discreta como marca d'água */
  z-index: 0;     /* fica atrás do conteúdo */
  pointer-events: none; /* não atrapalha cliques */
  animation: girarPizza 20s linear infinite;
}
/* Animação de rotação */
@keyframes girarPizza {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
