/* Stili per la Homepage */
body.index-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
}

.index-container {
    max-width: 600px;
}

.index-logo {
    font-size: 4rem;
    color: var(--orange-accent);
    margin-bottom: 1rem;
}

.index-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.index-container p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.index-cta {
    display: inline-block;
    background-color: var(--orange-accent);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.index-cta:hover {
    background-color: #e65a29;
    transform: translateY(-2px);
}