/* ==========================================================================
   NITSHI — Coming soon statique
   ========================================================================== */

/* ==========================================================================
   1. Variables
   ========================================================================== */

:root {
    --color-text: #ffffff;
    --color-text-muted: hsl(0 0% 90%);
    --color-accent: #ed2939;
    --color-blue: #002654;
    --color-red: #ed2939;

    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-title: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --content-width: 48rem;
    --page-padding: clamp(1.25rem, 4vw, 3rem);
}

/* ==========================================================================
   2. Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-blue);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-underline-offset: 0.18em;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

a:hover,
a:focus-visible {
    color: var(--color-text);
}

a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.coming-soon-page {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--page-padding);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-red) 100%);
}

.coming-soon {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.logo-link {
    display: inline-block;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    text-decoration: none;
}

.logo {
    width: min(100%, 43.75rem);
    max-height: 31.25rem;
    object-fit: contain;
    margin-inline: auto;
}

h1 {
    margin: 0 0 1.25rem;
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.125rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
}

.intro {
    margin-inline: auto;
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    font-weight: 500;
}

.intro p {
    margin: 0;
}

.intro p+p {
    margin-top: 1rem;
}

/* ==========================================================================
   4. Social links
   ========================================================================== */

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    text-decoration: none;
    color: var(--color-blue);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.social-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   5. Footer
   ========================================================================== */

.site-footer {
    width: min(100%, var(--content-width));
    margin-top: clamp(3rem, 8vw, 6rem);
    color: var(--color-text-muted);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.site-footer p {
    margin: 0;
}

/* ==========================================================================
   6. Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .logo {
        width: min(100%, 34rem);
    }
}

@media (max-width: 520px) {
    .coming-soon-page {
        justify-content: center;
    }

    .logo-link {
        margin-bottom: 2rem;
    }

    .intro {
        text-align: center;
    }
}