/* Virtualab - Footer Styles (styles.css) */

/* Footer */
#M-footer {
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.42857143;
    color: rgba(200,200,200,0.90);
    text-shadow: 1px 1px 5px rgba(30,30,30,0.60);
    padding: 20px 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

/* Bakgrundsbild/gif - kan bytas ut eller kommenteras bort */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../pics/gif/gif_footer/luces-en-la-noche_448_150_nom.gif'); */
  	background-color: rgba(30,40,70,0.4); /* rgba(26, 39, 68, 0.4) Fallback: matchar Virtualab färgschema */
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

/* Mönster-overlay - diagonala linjer */
.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pics/png/bg1.png');
    background-repeat: repeat;
    opacity: 0.85;
    z-index: 1.5;
    pointer-events: none;
}

/* Footer innehåll */
#M-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

#M-footer p {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

/* Footer länkar */
#M-footer a {
    color: rgba(100, 150, 255, 1.0); /* Blåare ton för Virtualab */
    text-shadow: 1px 1px 15px rgba(0,0,0,1.0);
    text-decoration: none;
    transition: color 0.3s ease;
}

#M-footer a:hover {
    color: rgba(150, 200, 255, 1.0);
    text-shadow: 1px 1px 15px rgba(255,255,255,1.0);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    #M-footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}



