/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #faf7f2;
}

/* Cabeçalho */
header {
  background-color: #4b3b2a;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  font-size: 1.8em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f2c94c;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
}

/* Hero */
.hero {
  background: #4b3b2a url('images/foods.jpg') center/cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 90vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3em;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background-color: #f2c94c;
  color: #4b3b2a;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e1b638;
}

/* Cardápio */
.menu {
  padding: 60px 20px;
  text-align: center;
}

.menu h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.menu-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 100%;
  border-radius: 8px;
}

.menu-item h3 {
  margin: 10px 0 5px;
}

.menu-item p {
  font-weight: bold;
  color: #4b3b2a;
}

.menu-item button {
  margin-top: 10px;
  padding: 10px;
  background-color: #4b3b2a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

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

.menu-item button:disabled {
  background-color: #888;
  cursor: not-allowed;
}

/* Reservas */
.reserva {
  padding: 60px 20px;
  background-color: #fff6e6;
  text-align: center;
}

.reserva h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#reserva-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

#reserva-form input, #reserva-form button {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

#reserva-form button {
  background-color: #f2c94c;
  color: #4b3b2a;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

#reserva-form button:hover {
  background-color: #e1b638;
}

/* Avaliações */
.avaliacoes {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.avaliacoes h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.review {
  max-width: 600px;
  margin: 0 auto 20px;
  font-style: italic;
}

/* Contato */
.contato {
  padding: 60px 20px;
  background-color: #f2f2f2;
  text-align: center;
}

.contato h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  font-size: 1.5em;
  color: #4b3b2a;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f2c94c;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 1.8em;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 100;
  transition: background-color 0.3s;
}

.whatsapp:hover {
  background-color: #1ebe57;
}

/* Rodapé */
footer {
  background-color: #4b3b2a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
footer p{
    padding-bottom: 15px;
}

footer a{
  color: #fff;
  text-decoration: none;
}
footer a:hover{
  background-color: #ffffff46;
  color: #333;
  transition: 0.5s;
}
/* Acessibilidade */
a:focus, button:focus, input:focus {
  outline: 2px solid #f2c94c;
  outline-offset: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero::after {
    height: 60vh;
  }
  .hero h1 {
    font-size: 2em;
  }
  .menu-item {
    width: 100%;
    max-width: 300px;
  }
  .menu-grid {
    flex-direction: column;
    align-items: center;
  }
  .menu-toggle {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #4b3b2a;
    padding: 10px 0;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    margin: 10px 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .whatsapp {
    font-size: 1.2em;
    padding: 10px;
    bottom: 10px;
    right: 10px;
  }
}