/* Deli Café e Bistrô - Folha de Estilo Oficial
   Paleta: Verde Logo (#2C3E2B) & Creme Aconchegante (#F8F3E9)
*/

:root {
  --verde-deli: #2c3e2b; /* Extraído da sua logo */
  --verde-hover: #1e2b1d;
  --creme-fundo: #f8f3e9; /* Fundo suave para não cansar a vista */
  --sepia-detalhe: #c2a382; /* Tom de dourado/café para realces */
  --texto-principal: #212529;
  --branco-puro: #ffffff;
}

/* Configurações Gerais */
body {
  background-color: var(--creme-fundo);
  color: var(--texto-principal);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--verde-deli);
}

/* Navegação */
.navbar {
  background-color: var(--branco-puro) !important;
  border-bottom: 3px solid var(--verde-deli);
  padding: 0.8rem 0;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: var(--texto-principal) !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--sepia-detalhe) !important;
}

/* Estilização do Cardápio Dinâmico */
#menu-container {
  margin-top: 2rem;
}

.section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  color: var(--verde-deli);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--sepia-detalhe);
}

.menu-item-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.menu-item-price {
  color: var(--sepia-detalhe);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Rodapé */
/* ==========================================================================
   Footer Premium - Deli Café
   ========================================================================== */

footer {
  background-color: #1a251a; /* Um verde quase negro, ultra elegante */
  color: var(--creme-fundo);
  padding: 80px 0 40px;
  margin-top: 100px;
  border-top: 4px solid var(--sepia-detalhe); /* Linha de destaque no topo */
}

.footer-logo {
  max-height: 120px;
  margin-bottom: 30px;
  /* Remove a necessidade do filtro se a logo já for branca, 
       caso contrário, mantém para legibilidade */

  opacity: 0.9;
}

footer h5 {
  font-family: 'Playfair Display', serif;
  color: var(--sepia-detalhe);
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer p,
footer li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(248, 243, 233, 0.8); /* Creme com transparência */
}

footer .bi {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: var(--creme-fundo);
}

footer .bi:hover {
  color: var(--sepia-detalhe);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(194, 163, 130, 0.2);
  font-size: 0.8rem;
}

/* Botões e Utilitários */
.btn-outline-secondary {
  border-color: var(--sepia-detalhe);
  color: var(--sepia-detalhe);
}

.btn-outline-secondary:hover {
  background-color: var(--sepia-detalhe);
  border-color: var(--sepia-detalhe);
  color: white;
}

.text-danger {
  color: #a94442 !important; /* Um vermelho mais sóbrio que combina com o creme */
}

/* Responsividade */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .navbar-brand span {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Seção Hero (Sinta-se em casa) - ADICIONAR AO FINAL DO ARQUIVO
   ========================================================================== */

.hero-section {
  height: 80vh; /* Altura de 80% da tela */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1500'); /* Usei uma imagem de café genérica, substitua pela sua se tiver */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito Parallax opcional, remova se não gostar */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important; /* Força o texto a ser branco */
}

/* Garante que os títulos dentro do Hero sejam brancos */
.hero-section h1,
.hero-section .display-2 {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adiciona uma sombra para legibilidade */
}

/* Estilo do botão dentro do Hero */
.hero-section .btn-outline-light {
  border-color: white;
  color: white;
  transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
  background-color: white;
  color: var(--verde-deli); /* Cor da marca no hover */
}

/* Responsividade para o Hero em celulares */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh; /* Diminui a altura no mobile */
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
}
