/* Color Palette & Variables */
:root {
    --color-plum: #54123b;
    --color-plum-dark: #2a0b2a;
    --color-magenta: #a12c75;
    --color-magenta-light: #c84b96;
    --color-gold: #cfa868;
    --color-gold-light: #e6c891;
    --color-bg-base: #fdfaf6;
    --color-bg-gradient-1: #faf5f0;
    --color-bg-gradient-2: #f2e6ee;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg-base);
    color: var(--color-plum-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    /* Subtle slow-moving background gradient */
    background: linear-gradient(-45deg, var(--color-bg-gradient-1), var(--color-bg-gradient-2), #fdf4f0, #f6f0f7);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#particles-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3.5rem 2rem;
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    
    /* Slight glassmorphism panels & soft shadows */
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(84, 18, 59, 0.06);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
}

.brand-logo {
    width: 380px; /* Enlarge size to act as main title */
    height: auto;
    max-width: 100%;
    object-fit: contain;
    /* Soft glow drop-shadow utilizing brand colors */
    filter: drop-shadow(0 8px 16px rgba(161, 44, 117, 0.12));
    transition: filter 0.4s ease;
}

.logo-container:hover .brand-logo {
    filter: drop-shadow(0 12px 24px rgba(161, 44, 117, 0.25));
}

/* 2. Brand Identity (Removed as it is now part of the logo) */

/* 3. Coming Soon Message */
.coming-soon {
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Gradient shimmer animation on the heading */
.shimmer-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    
    background: linear-gradient(
        90deg, 
        var(--color-plum) 0%, 
        var(--color-magenta) 30%, 
        var(--color-gold) 50%, 
        var(--color-magenta) 70%, 
        var(--color-plum) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.supporting-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5d4e59;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* 4. Footer */
.footer {
    position: relative;
    padding-top: 2rem;
    margin-top: 1rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(84, 18, 59, 0.15);
}

.footer p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-magenta);
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    
    .brand-logo {
        width: 260px;
    }
    
    .supporting-text {
        font-size: 0.95rem;
    }
}
