/* Page-specific styles for index.html */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 700px;
    width: 100%;
    padding: 3rem;
}

.logo {
    max-width: 180px;
    margin: 0 auto;
    display: block;
}

.construction-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

@media (max-width: 640px) {
    .links {
        flex-direction: column;
        align-items: stretch;
    }

    .construction-icon {
        font-size: 3.5rem;
    }
}
