:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --blue-logo: #116fb1;
    /* Colore Blu del Logo */
    --pink-percorsi: #e60072;
    /* Colore Magenta di 'PERCORSI DIGITALI' */
    --secondary-color: #666666;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    position: relative;
}

/* Background aesthetic */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(17, 111, 177, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: translateY(-5px);
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink-percorsi);
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--pink-percorsi);
    border-radius: 2px;
}

.footer {
    width: 100%;
    padding: 3rem 1.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-line {
    margin: 0.2rem 0;
}

.footer-line strong {
    color: var(--blue-logo);
    font-weight: 700;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 320px;
    }

    .coming-soon {
        font-size: 1.8rem;
        letter-spacing: 0.15em;
    }

    .footer {
        padding: 2rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 260px;
    }

    .coming-soon {
        font-size: 1.4rem;
        letter-spacing: 0.12em;
    }

    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }
}