/* ==========================================================================
   CloudMonsters - Domain Parking Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts
   -------------------------------------------------------------------------- */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   Variables
   -------------------------------------------------------------------------- */

:root {
    --cpx-background-color: #1E1733;
    --cpx-text-color: #FFFFFF;
    --cpx-button-color: #6158A3;
    --cpx-button-text-color: #FFFFFF;
    --cpx-button-border-radius: 7px;
    --cpx-font-family: 'Poppins', sans-serif;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--cpx-background-color);
    color: var(--cpx-text-color);
    font-family: var(--cpx-font-family);
    font-weight: 400;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Aurora Background
   -------------------------------------------------------------------------- */

.parking__aurora {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.parking__aurora-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.waves {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    pointer-events: none;

    opacity: .5;
}

@media screen and (max-width: 768px) {
    .waves {
        width: 1200px;
    }
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.parking {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.parking__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */

.parking__logo {
    /* width: 280px; */
    width: 480px;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.parking__title {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

.parking__subtitle {
    margin-bottom: 32px;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.85;
    text-wrap: balance;
}

/* --------------------------------------------------------------------------
   Button
   -------------------------------------------------------------------------- */

.parking__button {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: var(--cpx-button-border-radius);
    background-color: var(--cpx-button-color);
    color: var(--cpx-button-text-color);
    font-family: var(--cpx-font-family);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.parking__button:hover {
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
    .parking__logo {
        width: 200px;
        margin-bottom: 30px;
    }

    .parking__title {
        font-size: 1.5rem;
    }

    .parking__subtitle {
        font-size: 0.95rem;
    }
}
