/* Flaire8 Coming Soon Page Styles */

/* CSS Variables - Flaire8 Brand Colors */
:root {
    --flaire8-pink: #E91E63;
    --flaire8-purple: #9C27B0;
    --flaire8-gold: #FFB300;
    --flaire8-teal: #1ABC9C;
    --flaire8-green: #4CAF50;
    
    --surface: #FFFFFF;
    --background: #FAFAFA;
    --on-surface: #212121;
    --on-surface-variant: #757575;
    --outline: #E0E0E0;
    
    --shadow-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-3: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--background);
    color: var(--on-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--surface);
    box-shadow: var(--shadow-1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    height: 70px;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--flaire8-pink);
    letter-spacing: -0.02em;
}

/* Main Content */
.main {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--surface) 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--on-surface);
}

.hero-title .highlight {
    color: var(--flaire8-pink);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--flaire8-pink), var(--flaire8-purple));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--on-surface-variant);
    margin-bottom: 32px;
    line-height: 1.6;
}

.launch-info {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--flaire8-gold), #FFC107);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-2);
}

.launch-text {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--flaire8-pink), var(--flaire8-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-3);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.visual-placeholder .sparkle,
.visual-placeholder .beauty-icon,
.visual-placeholder .star {
    position: absolute;
    font-size: 2rem;
    animation: sparkle 3s ease-in-out infinite;
}

.visual-placeholder .sparkle {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.visual-placeholder .beauty-icon {
    font-size: 4rem;
    color: white;
}

.visual-placeholder .star {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Value Props Section */
.value-props {
    padding: 80px 0;
    background: var(--surface);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--on-surface);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.prop-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: var(--shadow-1);
    transition: all 0.3s ease;
    border: 1px solid var(--outline);
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
    border-color: var(--flaire8-pink);
}

.prop-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.prop-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--on-surface);
}

.prop-card p {
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--flaire8-pink), var(--flaire8-purple));
    color: white;
}

.signup-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.signup h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.signup p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.signup-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: var(--on-surface);
    box-shadow: var(--shadow-1);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    padding: 16px 32px;
    background: var(--flaire8-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-1);
    white-space: nowrap;
}

.submit-btn:hover {
    background: #FF8F00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.success-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--on-surface);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--flaire8-pink);
    margin-bottom: 8px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--flaire8-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .visual-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .signup h2 {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .value-props,
    .signup {
        padding: 60px 0;
    }
    
    .props-grid {
        grid-template-columns: 1fr;
    }
    
    .prop-card {
        padding: 30px 20px;
    }
}
