/* RESET + FONT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
   min-height: 100vh;
    background: url("../images/background.png") no-repeat center center/cover;
    position: relative;
    color: #fff;
}

/* overlay general */
body::before {
   content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 50, 0.6);
    z-index: -1;   /* 🔥 schimbăm din 0 în -1 */
}