:root {
    --bg-color: #363A36;
    --text-color: #d9d8d6;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

/* Pagina */
.coming-soon {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    overflow: hidden;
}

/* Logo centrale */
.logo-area {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 78%;
    transform: translate(-50%, -50%);
}

.logo {
    display: block;
    width: 100%;
    height: auto;
}

/* Dati aziendali in basso a sinistra */
.company-info {
    position: absolute;
    left: 56px;
    bottom: 48px;
    max-width: 420px;

    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 300;
}

.company-info p {
    margin: 0;
    font-weight: 300;
}

.company-name {
    margin-bottom: 20px !important;
    font-weight: 700 !important;
}

/* Tablet */
@media (max-width: 991px) {
    .logo-area {
        width: 86%;
        top: 44%;
    }

    .company-info {
        left: 36px;
        bottom: 36px;
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .logo-area {
        width: 92%;
        top: 38%;
    }

    .company-info {
        left: 24px;
        right: 24px;
        bottom: 28px;
        max-width: none;
        font-size: 11px;
        line-height: 1.25;
    }

    .company-name {
        margin-bottom: 16px !important;
    }
}

/* Mobile molto piccoli */
@media (max-width: 420px) {
    .logo-area {
        top: 34%;
    }

    .company-info {
        font-size: 10px;
    }
}