/* Coming Soon Page Specific Styles */

/* Hero Image Centering */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 100%;
    width: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Center page content - override any conflicting styles */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0 0;
    margin-left: 15%;
    padding: 0 1rem;
    width: 100%;
    gap: 2rem;
}

.hero-text {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

/* Ensure container is properly centered */
.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    min-width: 70px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* Waitlist Form */
.waitlist-form {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.waitlist-form h3 {
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(127, 176, 105, 0.2);
}

/* Coming Soon Features */
.coming-soon-features {
    margin: 2rem 0;
    text-align: center;
    width: 100%;
}

.feature-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 150px;
    height: 120px;
    justify-content: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-item p {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* Feature Spotlight */
.feature-spotlight {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.spotlight-content {
    text-align: center;
}

.spotlight-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.spotlight-content p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.streak-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.streak-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.streak-icon:hover {
    transform: scale(1.1);
}

.streak-text {
    font-weight: 600;
    color: var(--energy-orange);
}

/* Social Links Container */
.social-links-container {
    text-align: center;
    margin: 3rem 0 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-green);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Media Queries */
@media (min-width: 768px) {
    .form-group {
        flex-direction: row;
    }
    
    .form-group input {
        flex: 1;
    }
    
    .feature-preview {
        flex-direction: row;
        justify-content: center;
    }
    
    .feature-item {
        flex: none;
        width: 150px;
        height: 120px;
        max-width: 150px;
    }
} 