/* Style de base pour le site de développement Evoludia */
:root {
    color-scheme: light;
    font-family: Inter, system-ui, sans-serif;
    color: #1f2937;
    background: #f8fafc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.6;
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    text-decoration: none;
    color: #111827;
}

nav a {
    color: #374151;
    text-decoration: none;
    margin-left: 1.25rem;
}

nav a:hover {
    color: #111827;
}

.page-public,
.page-private,
.auth-page,
.error-page {
    padding: 3rem 0;
}

.info-block {
    padding: 3rem 0;
}

.info-block h2 {
    margin-top: 0;
}

.construction-body {
    min-height: 100vh;
    background: #071d49;
    color: #ffffff;
}

.construction-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    text-align: center;
}

.construction-message {
    width: min(42rem, 100%);
    background: #0b2b66;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
    padding: 3rem 2rem;
}

.construction-message h1 {
    margin: 0 0 0.75rem;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1.15;
}

.construction-message p {
    margin: 0;
    color: #ffffff;
    font-size: 1.125rem;
}

.construction-message h1,
.construction-message p {
    animation: construction-flash 4s ease-in-out infinite;
}

@keyframes construction-flash {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }
}

.dashboard-shell,
.auth-shell,
.error-shell {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 1.5rem 0;
}

.site-footer a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
    }

    nav a {
        margin: 0 1rem 0.5rem 0;
    }
}
