:root {
    /* Pastel Color Palette */
    --primary-bg: #FDF6F8;
    /* Very pale pink/white */
    --soft-pink: #F4C2C2;
    --sage-green: #B2AC88;
    --lavender: #E6E6FA;
    --text-dark: #4A4A4A;
    --text-light: #7A7A7A;
    --white-overlay: rgba(255, 255, 255, 0.85);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF6F8 0%, #FFF0F5 50%, #F0F4F8 100%);
}

.background-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Background stylistic elements */
.background-wrapper::before,
.background-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.background-wrapper::before {
    width: 600px;
    height: 600px;
    background: var(--soft-pink);
    top: -100px;
    left: -100px;
}

.background-wrapper::after {
    width: 500px;
    height: 500px;
    background: var(--lavender);
    bottom: -50px;
    right: -50px;
    animation-delay: -10s;
}

.content-card {
    position: relative;
    z-index: 1;
    background: var(--white-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease;
    animation: fadeIn 1.5s ease-out;
}

.content-card:hover {
    transform: translateY(-5px);
}

.logo-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

h2 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.divider {
    height: 1px;
    width: 60px;
    background: radial-gradient(circle, var(--text-light) 0%, transparent 100%);
    margin: 0 auto 2rem;
    opacity: 0.5;
}

.coming-soon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .content-card {
        padding: 2.5rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 0.9rem;
    }
}