/* ESTRUCTURA DEL CUERPO DE PAGINA */
body {
    background: url('../img/fondo-madera.png') no-repeat center center;
    background-size: cover;
    font-family: 'Pirata One', cursive;
    margin: 0;
    padding: 0;
    color: gold;
}



/* SECCION HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../img/fondo-madera.png');
    padding: 15px 30px;
}

.logo {
    height: 100px;
    margin-left: 20px;
}

.login-boton {
background-image: url('../img/btn-login-madera.png'); 
  background-size: cover;
  color: gold;
  font-family: 'Pirata One', cursive;
  font-size: 14px;
  padding: 5px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, ease;
  text-align: center;
}
.login-boton:hover {
  transform: scale(1.05);
}



/* BANNER */
#banner img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  width: 100%;
  max-width: 100vw;
  display: block;
  margin: 0 auto;
}


/* SECCION MENU */
.menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    list-style: none;
}

.boton-menu {
    height: 45px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.boton-menu:hover {
    transform: scale(1.05);
}



/* SECCION SUBMENU */
.submenu {
    width: 200px;
    margin: 50px;
    display: inline-block;
    transition: transform 0.3s;
}

#submenus {
  text-align: center;
  margin-top: -5px;
  background-image: url('../img/fondo-madera.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 600px;
}
.submenu:hover {
    transform: scale(1.1);
}



/* PIE DE PÁGINA */
.footer-muelle {
    background-image: url('../img/fondo-muelle.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin-top: -350px;
    min-height: 0px; 
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.footer-contenido {
    padding-top: 450px; 
    text-align: center;
    color: gold;
    margin-bottom: 50px
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: gold;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
.footer-links a:hover {
    text-shadow: 0 0 5px gold;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
}

.footer-derechos {
    font-size: 14px;
    opacity: 0.8;
}



/* MODALES INICIAR SESION*/
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-image: url('../img/modal-madera.png');
  background-size: cover;
  background-position: center;
  border: 3px solid #654321;
  border-radius: 10px;
  padding: 30px 40px;
  width: 370px;
  max-width: 100%;
  margin: 10% auto;
  color: #FFD700;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  text-align: center;
}

.modal-content input[type="text"],
.modal-content input[type="password"],
.modal-content button {
  width: 350px;
  margin: 10px 0;
  padding: 10px 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.modal-content input[type="text"],
.modal-content input[type="password"] {
  background-color: rgba(255,255,255,0.9);
  color: #000;
}

.modal-content button {
  background-color: #d4a017;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.modal-content button:hover {
  background-color: #b88a00;
}

.cerrar {
    float: right;
    cursor: pointer;
}


