/* Coming soon — Shop Dienpi */

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

html,
body {
    height: 100%;
}

body {
    font-family: "Gotham Book", "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    background-color: #14181d;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* layout ----------------------------------------------------------------- */

.cs {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 40px 24px 90px 24px;
    text-align: center;
    background-image:
        linear-gradient(rgba(10, 14, 18, 0.78) 0%, rgba(10, 14, 18, 0.62) 50%, rgba(10, 14, 18, 0.85) 100%),
        url("/public/userdata/images/intro/intro.webp");
    background-size: cover;
    background-position: center;
}

.cs-content {
    max-width: 640px;
    animation: cs-fade-up 0.9s ease-out both;
}

/* elementi --------------------------------------------------------------- */

.cs-logo {
    width: clamp(220px, 45vw, 340px);
    height: auto;
    margin-bottom: clamp(30px, 6vh, 55px);
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.cs-title {
    font-family: "Gotham Bold", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 5.5vw, 46px);
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: clamp(16px, 3vh, 24px);
}

.cs-text {
    font-family: "Gotham Light", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(17px, 2.4vw, 21px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 540px;
    margin: 0 auto;
}

.cs-divider {
    width: 60px;
    height: 3px;
    margin: clamp(24px, 4vh, 36px) auto;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 3px;
}

.cs-note {
    font-family: "Gotham Medium", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: clamp(28px, 5vh, 40px);
}

.cs-btn {
    display: inline-block;
    padding: 14px 48px;
    font-family: "Gotham Medium", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 100px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cs-btn:hover,
.cs-btn:focus-visible {
    background-color: #fff;
    border-color: #fff;
    color: #14181d;
}

/* footer ----------------------------------------------------------------- */

.cs-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 24px;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* animazione ------------------------------------------------------------- */

@keyframes cs-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-content {
        animation: none;
    }
}

/* mobile ----------------------------------------------------------------- */

@media (max-width: 640px) {
    .cs {
        padding: 32px 20px 80px 20px;
    }

    .cs-btn {
        display: block;
        max-width: 320px;
        margin: 0 auto;
    }
}
