/* Neuvair Coming Soon Page Style */
/* Inspired by Le Labo's minimalist aesthetic */

/* CSS Variables for easy theming */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #8b7355; /* Warm beige/brown for vanilla */
    --background-color: #fafafa;
    --text-color: #333;
    --light-text: #666;
    --max-width: 1200px;
}

/* Base reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    text-align: center;
    padding: 4rem 2rem;
    max-width: var(--max-width);
    width: 100%;
}

/* Logo */
.logo {
    margin-bottom: 3rem;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1); /* For dark logo on light background */
}

/* Main content */
.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Coming soon section */
.coming-soon {
    margin: 3rem 0;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.launch-date {
    font-size: 1.25rem;
    color: var(--light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Social media */
.social {
    margin-top: 4rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.social p {
    margin-bottom: 1rem;
}

.social a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.social a:hover {
    color: var(--accent-color);
}

/* Background effect - subtle gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Subtle gradient suggesting vanilla/cream */
        radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 20%);
    z-index: -1;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .container {
        padding: 3rem 1.5rem;
    }
    
    .social a {
        margin: 0 0.5rem;
        display: block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .coming-soon h2 {
        font-size: 1.75rem;
    }
    
    .launch-date {
        font-size: 1.1rem;
    }
}