
:root {
  --yellow: #fe0;
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Stage: occupa tutta la finestra e centra il contenuto */
#stage {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Page wrapper: dimensioni fisse dell'immagine originale.
   Viene scalato via JS mantenendo le proporzioni. */
#page-wrapper {
    width: 2363px;
    height: 1323px;
    position: relative;
    transform-origin: center center;
    flex-shrink: 0;
    background: white;
}

/* Immagine di sfondo */
#bg-image {
    width: 2363px;
    height: 1323px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Hotspot: posizionato in px assoluti dentro il wrapper */
.hotspot {
    position: absolute;
    cursor: pointer;
}

/* Debug: rende l'area visibile in rosso semitrasparente.
   Rimuovi la classe "debug" dall'elemento quando sei soddisfatto. */
.hotspot.debug {
    background: rgba(255, 0, 0, 0.4);
    border: 2px solid red;
}

.spot {
    z-index: 10;
    position: relative;
    /* background: red; */
    /* opacity: 0.5; */
    opacity: 1;


    .spot__img {
        display: block;
        width: 100%;
    }

    .spot__link {
        /* border: 1px solid lime; */
        display: flex;
        flex-direction: column;
        align-items: center;
        color: black;
        text-decoration: none;
    }

    .spot__label {
        display: block;
        position: relative;
        font-size: 25px;
        font-weight: 700;
        letter-spacing: 2px;
        white-space: nowrap;
        text-transform: uppercase;
        color: black;
        background: var(--yellow);
        line-height: 38px;
        padding: 0 20px;
        border-radius: 20px;
        margin-left: 0;
        border: 2px solid black;
        text-decoration: none;
        margin-top: 8px;
    }

    &.spot--spg {
      width: 1544px;
      position: absolute;
      left: 0;
      top: 83px;
    }

    &.spot--es {
      width: 90px;
      position: absolute;
      left: 1584px;
      top: 90px;

        .spot__label {
            position: absolute;
            left: 104px;
            padding: 0;
            top: -4px;
            text-transform: initial;
            font-weight: 300;
            letter-spacing: 0;
            font-family: "arial";
            font-size: 19px;
            line-height: 1.2em;
            border: none;
            background: transparent;
        }      
    }

    &.spot--t {
      width: 90px;
      position: absolute;
      left: 1911px;
      top: 90px;

        .spot__label {
            position: absolute;
            left: 104px;
            padding: 0;
            top: 16px;
            text-transform: initial;
            font-weight: 300;
            letter-spacing: 0;
            font-family: "arial";
            font-size: 19px;
            line-height: 1.2em;
            border: none;
            background: transparent;
        }      
    }

    &.spot--tc {
      width: 90px;
      position: absolute;
      left: 2111px;
      top: 90px;

        .spot__label {
            position: absolute;
            left: 104px;
            padding: 0;
            top: 16px;
            text-transform: initial;
            font-weight: 300;
            letter-spacing: 0;
            font-family: "arial";
            font-size: 19px;
            line-height: 1.2em;
            border: none;
            background: transparent;
        }      
    }

    &.spot--fd {
      width: 258px;
      position: absolute;
      left: 909px;
      top: 258px;

        .spot__label {
            margin-top: 0;
            margin-left: -20px;
            padding: 0 60px;
        }      
    }

    &.spot--cm {
      width: 258px;
      position: absolute;
      left: 1289px;
      top: 258px;

        .spot__label {
            margin-top: 0;
            margin-left: 0;
            padding: 0 20px;
        }      
    }

    &.spot--n {
      width: 258px;
      position: absolute;
      left: 419px;
      top: 587px;

        .spot__label {
            margin-top: 0;
            margin-left: -70px;
        }      
    }

    &.spot--l {
      width: 258px;
      position: absolute;
      left: 629px;
      top: 587px;

        .spot__label {
            margin-top: 0;
        }      
    }

    &.spot--ic {
      width: 738px;
      position: absolute;
      left: 841px;
      top: 392px;
      z-index: 5;
    }





    &.spot--od {
      width: 258px;
      position: absolute;
      left: 1574px;
      top: 547px;

        .spot__label {
            margin-top: 0;
        }      
    }




    &.spot--ips {
      width: 320px;
      position: absolute;
      left: 340px;
      top: 1075px;
    }

    &.spot--rdm {
      width: 250px;
      position: absolute;
      left: 755px;
      top: 1020px;
    }

    &.spot--mp {
      width: 250px;
      position: absolute;
      left: 1415px;
      top: 1060px;
    }

    &.spot--mm {
      width: 255px;
      position: absolute;
      left: 1740px;
      top: 1072px;

        .spot__label {
            margin-top: -5px;
        }
    }





}

