/* --- CSS VARIABLES & RESET --- */
:root {
    --color-bg: #FDFBF7;
    --color-bg-light: #fff0e8;
    --color-peach: #F6D0C2;
    --color-rose: #D99E82;
    --color-text: #666666;
    --color-dark: #333333;
    --color-white: #ffffff;
    --color-olive: #B7B89E;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Hanken Grotesk', sans-serif;
    --font-script: "Homemade Apple", cursive;

    --box-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 1.1rem;
    overflow-x: hidden;
    height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* =========================================
   COMING SOON PAGE
   ========================================= */

/* Page Wrapper & Background Pattern */
.cs-page-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    background-color: var(--color-bg);
    background-image: radial-gradient(var(--color-peach) 2px, transparent 2px);
    background-size: 40px 40px;
}

/* The White Card Box */
.cs-card {
    background-color: var(--color-white);
    width: 100%;
    max-width: 600px;
    padding: 80px 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow-card);
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    /* Space for footer */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Typography */
.cs-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.cs-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    letter-spacing: 0.2px;
    margin-bottom: 50px;
    text-transform: none;
    font-weight: 400;
}

/* Signature */
.cs-signature-wrapper {
    margin-bottom: 40px;
}

.cs-signature {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--color-rose);
    display: inline-block;
    transform: rotate(-6deg);
}

/* Social Icons */
.cs-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cs-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cs-socials a:hover {
    background-color: var(--color-rose);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 158, 130, 0.4);
}

/* Footer */
.cs-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.8;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .cs-card {
        padding: 60px 25px;
    }

    .cs-title {
        font-size: 2.5rem;
    }

    .cs-footer {
        position: relative;
        bottom: auto;
        margin-top: 10px;
    }
}