/* ===============================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* ===============================
   BODY
================================ */
body {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ===============================
   BACKGROUND IMAGE
================================ */
.bg-image {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* ===============================
   LOGO ATAS
================================ */
.top-logo {
    position: absolute;
    top: 25px;
    z-index: 2;
}

.top-logo.left { left: 30px; }
.top-logo.right { right: 30px; }

.top-logo img {
    height: 60px;
}


