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

:root {
    /* Color Palette - Warm, nostalgic colors */
    --primary-cream: #faf7f2;
    --warm-brown: #8b4513;
    --golden-yellow: #f4d03f;
    --soft-pink: #f8d7da;
    --vintage-blue: #6c9bd1;
    --deep-brown: #5d4037;
    --text-dark: #2c1810;
    --text-light: #6d4c41;
    --accent-orange: #ff8c42;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--primary-cream) 0%, #f5f1eb 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-brown);
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-orange), var(--golden-yellow));
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.highlight {
    color: var(--accent-orange);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--accent-orange));
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xxl);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.feature {
    background: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: var(--spacing-sm);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Signup Section */
.signup-section {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xxl);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: var(--spacing-xl);
}

.signup-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: var(--spacing-sm);
}

.signup-section > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.form-group {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: var(--spacing-md);
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
}

.form-group button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(45deg, var(--warm-brown), var(--deep-brown));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.success-message {
    display: none;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(45deg, #d4edda, #c3e6cb);
    border-radius: 15px;
    color: #155724;
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cookie-crumb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--warm-brown);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.crumb-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.crumb-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.crumb-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.vintage-plate {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--vintage-blue);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.plate-1 {
    top: 15%;
    right: 10%;
}

.plate-2 {
    bottom: 20%;
    left: 5%;
    animation-direction: reverse;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .signup-section {
        padding: var(--spacing-lg);
    }
    
    .form-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vintage-plate {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .signup-section h3 {
        font-size: 1.5rem;
    }
}
