/*
Theme Name: My Bootstrap Theme
Theme URI: https://example.com
Author: Il tuo nome
Author URI: https://example.com
Description: Tema WordPress custom basato su Bootstrap
Version: 1.0
Text Domain: my-bootstrap-theme
*/


/* ===== PAGINA MANUTENZIONE ===== */

body {
    background-color: #85ccf1 !important;
    /* Colore sfondo */
    font-family: 'Roboto', sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
}

.maintenance-card {
    background: transparent;
    padding: 2.5rem;
    border: solid 1px #14759f;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    margin: auto;
}

h1,
h2,
h3 {
    font-family: 'Baloo 2', sans-serif;
    color: #2c3e50;
}

.main-title {
    text-transform: uppercase;
    font-weight: 600;
    color: #2c3e50;
}

.sub-text {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.list-group-item {
    background-color: transparent;
    border: none;
    padding: 0.3rem 1rem;
}


.img-logo {
    max-width: 600px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.img-gru {
    max-width: 400px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:768px) {
    .img-logo{
        max-width: 100%;
    }
    .img-gru{
        max-width: 100%;
    }
}

.img-main {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-info {
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}