@import url('root.css');

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: url('../images/coming-soon-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: var(--black);
}

.coming-soon-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 20px;
}

.coming-soon-logo {
    display: block;
    width: 300px;
    height: auto;
    margin: 0 auto 24px;
}

.coming-soon-kicker {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.coming-soon-content h1 {
    font-family: 'Domine', serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, var(--red), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon-content p {
    font-family: 'Quicksand', sans-serif;
    color: #c9c9c9;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 18px;
}

.coming-soon-divider {
    width: 80px;
    height: 3px;
    margin: 28px auto;
    background: linear-gradient(45deg, var(--red), var(--purple));
    border-radius: 2px;
}

.coming-soon-contact {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: #c9c9c9;
    margin-top: 8px;
}

.coming-soon-contact a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--purple);
    padding-bottom: 1px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.coming-soon-contact a:hover {
    color: var(--purple);
    border-color: var(--red);
}

.coming-soon-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.coming-soon-social a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.coming-soon-social a:hover {
    color: var(--white);
}

@media (max-width: 500px) {
    .coming-soon-content h1 {
        font-size: 2.2rem;
    }
}
