/* Coming Soon Page Styles */
:root {
    --vanilla-blush: #FFF2E3;
    --warm-sands: #F2E1CC;
    --espresso: #2B1D12;
    --sunset-ember: #D05820;
    --saddle-leather: #7C3F12;
    --sage-whisper: #6B9080;
    --moon-milk: #F3EDE5;
    --ember-glow: #FF8F4B;
    --ember-strong: #C64C1C;
    --snow: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--vanilla-blush) 0%, var(--warm-sands) 100%);
    min-height: 100vh;
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 4rem;
}

.logo-container {
    animation: fadeInUp 1.5s ease-out;
}

.brand-logo {
    width: 405px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.sloganTop {
    font-family: 'Great Vibes', cursive;
    font-size: 48.6px;
    line-height: 1;
    fill: var(--espresso);
}

.sloganBottom {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 13.5px;
    fill: var(--saddle-leather);
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 1rem;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: var(--saddle-leather);
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 0.9s both;
    max-width: 600px;
    line-height: 1.6;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: var(--sage-whisper);
    margin-bottom: 3rem;
    animation: fadeInUp 1.5s ease-out 1.2s both;
    max-width: 500px;
    line-height: 1.7;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: var(--moon-milk);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 1.5s both;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ember-glow), var(--sunset-ember));
    border-radius: 4px;
    animation: progressFill 3s ease-out 2.4s both;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.logo-column {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-column {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-column {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Desktop: Group logo and contact into left column */
@media (min-width: 769px) {
    .logo-column {
        flex: 0 0 350px;
        gap: 2rem;
    }
    
    .content-column {
        flex: 1;
        max-width: 600px;
    }
    
    .contact-column {
        display: none;
    }
}

.contact-info {
    background: var(--snow);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 1.5s ease-out 0.3s both;
    width: 100%;
    max-width: 350px;
}

.contact-info h3 {
    color: var(--espresso);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.contact-info p {
    color: var(--sage-whisper);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: var(--sunset-ember);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--ember-strong);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 25%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
    .coming-soon-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .logo-column {
        flex: none;
        order: 1;
        gap: 0;
    }
    
    .content-column {
        flex: none;
        order: 2;
    }
    
    .contact-column {
        flex: none;
        order: 3;
        display: block;
    }
    
    /* Hide contact info in logo column on mobile */
    .logo-column .contact-info {
        display: none;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        width: 337.5px;
    }
    
    .progress-bar {
        width: 250px;
    }
    
    .contact-info {
        max-width: 100%;
    }
}
