html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  background-color: #6e2c1b;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #6e2c1b;
  color: white;
  text-align: center;
  padding: 1rem 0;
  z-index: 1050;
}

    header {
      position: fixed;
        top: 0;
    left: 0;
    right: 0;
    height: 60px; /* ajusta si necesitas más espacio */
    z-index: 1050;
      background-image: url('assets/imgs/fonde_header.png');
      background-repeat: no-repeat;
      background-size: cover;
    }

    .logo-text {
      font-size: 2.5rem;
      color: #8a2e24;
      font-weight: bold;
    }

   .telefono {
  font-size: 1rem;
  color: #fff;
  margin-right: 1rem;
}
.navbar-nav .nav-link {
  font-weight: bold;
  color: #fff !important;
}

    .logo-container {
      z-index: 10;
    }

    .hero-section {
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      
    }

    .titulo-receta {
      font-family: 'Tangerine', cursive;
      font-size: 6rem;
      color: #6e2c1b;
      margin: 0;
    }

    .linea-roja {
      width: 100%;
      height: 8px;
      background-color: #c0392b;
    }
    main {
  padding-top: 140px; /* altura del header + margen */
  padding-bottom: 100px; /* altura del footer + margen */
}

    footer {
     
    }

    @media (max-width: 576px) {
      .logo img {
        max-height: 60px;
      }
    }