/*
Theme Name: GeneratePress Child - Manutenzioni
Template: generatepress
Description: Child theme per sito ditta manutenzioni
Version: 1.0.0
*/

/* Importa gli stili del tema padre */
@import url("../generatepress/style.css");

/* === SPLASH PAGE STYLES === */
.splash-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: #fafafa;
    color: #333;
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-container img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.company-info {
    margin-bottom: 3rem;
}

.company-info p {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.contact-item span:first-child {
    font-size: 1.5rem;
    min-width: 2rem;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #3498db;
}

/* Responsive */
@media (max-width: 768px) {
    .company-info p {
        font-size: 1.5rem;
    }
    
    .splash-page {
        padding: 1.5rem;
    }
    
    .logo-container img {
        max-width: 300px;
    }
    
    .contact-item {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 250px;
    }
    
    .company-info p {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .splash-page {
        padding: 1rem;
    }
    
    .logo-container {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .logo-container img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .company-info p {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
}