/* =====================================================
   ANDREA POL
   SITE MODAL
===================================================== */

/* Overlay */

#site-modal-overlay {

    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    background: transparent;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

/* Modal visibile */

#site-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   FINESTRA
===================================================== */

.site-modal {

    position: relative;

    width: 90%;
    max-width: 600px;

    background: #ffffff;

    padding: 60px;

    text-align: center;

    border-radius: 0;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05),
        0 20px 60px rgba(0,0,0,.08);

    box-sizing: border-box;
}

/* =====================================================
   LINK
===================================================== */

.site-modal-link {

    display: block;

    color: inherit;

    text-decoration: none;
}

/* =====================================================
   LOGO
===================================================== */

.site-modal img {

    display: block;

    max-width: 320px;
    width: 100%;
    height: auto;

    margin: 0 auto 30px auto;
}

/* =====================================================
   TITOLO
===================================================== */

.site-modal h2 {

    margin: 0 0 20px 0;

    font-size: 48px;
    line-height: 1.1;

    font-weight: 700;

    color: #2e2927;
}

/* =====================================================
   TESTO
===================================================== */

.site-modal p {

    margin: 0;

    font-size: 20px;
    line-height: 1.4;

    color: #2e2927;
}

/* =====================================================
   CHIUSURA
===================================================== */

.site-modal-close {

    position: absolute;

    top: 12px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    cursor: pointer;

    font-size: 32px;
    line-height: 1;

    color: #000;

    padding: 0;

    z-index: 10;
}

.site-modal-close:hover {
    opacity: .6;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

    .site-modal {

        max-width: 600px;

        padding: 40px;
    }

    .site-modal h2 {

        font-size: 40px;
    }

    .site-modal p {

        font-size: 18px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .site-modal {

        width: 92%;

        padding: 30px 25px;
    }

    .site-modal img {

        max-width: 220px;

        margin-bottom: 20px;
    }

    .site-modal h2 {

        font-size: 32px;

        margin-bottom: 15px;
    }

    .site-modal p {

        font-size: 16px;
    }

    .site-modal-close {

        top: 8px;
        right: 12px;

        font-size: 28px;
    }
}