@import url(menu.css);
@import url(slideshow.css);
@import url(menu-pdf.css);
@import url(contacto.css);
@import url(facturacion.css);

/* Reset de márgenes y rellenos, además de ajustar el box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos generales del cuerpo */
body {
  font-family: Helvetica, Arial, sans-serif;
  background: #f4f4f4;
  min-height: 100vh; /* Footer stays on bottom */
  display: flex; /* Footer stays on bottom */
  flex-direction: column; /* Footer stays on bottom */
}

/* Estilos del header */
header {
  width: 100%;
  height: 100px; /* Altura total del header, considerando el logo */
  background: #1f1f1f;
  color: #bbb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; /* Asegura que el header quede sobre otros elementos */
}

/* Estilos de la imagen dentro del header */
header img {
  float: left;
  margin-top: 10px;
}

/* Estilos del logo */
.logo {
  height: 80px; /* Ajuste de altura del logo */
}

/* Contenedor general del header */
.contenedor-header {
  width: 97%;
  margin: auto; /* Centra el contenido horizontalmente */
}

/* Estilos para contener los elementos del header */
header .contenedor {
  display: table;
}


main {
  margin-top: 100px;
}

/* slideshow */

/* footer */

footer {
    margin-top: auto;
    width: 100%;
    /*background-color: #122335;*/
    color: #828282;
    text-align: center;
    /*padding: 20px 0;*/
    /*font-size: 14px;*/
}

footer a {
  text-decoration: none;
}


.inicio {
  background-color: #1f1f1f;
  padding: 15px 0;
  font-size: 14px;
  color: #bbbbbb;
  letter-spacing: 1.5px;
}

.inicio:hover {
  background-color: #292929;
}

.footer {
  background-color: #1f1f1f;
  padding: 15px 0;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-top: 50px;
  gap: 10px;
}

.footer-info {
    margin-bottom: 10px;
}

.footer-info a {
    color: #d9534f;
    text-decoration: none;
    font-weight: bold;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-social {
  margin-top: 30px;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #d9534f;
    transform: scale(1.2);
}
