/* Coming Soon Theme Styles - Simple Version */

.coming-soon-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header */
.coming-soon-header {
    padding: 30px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.coming-soon-logo {
    max-width: 200px;
    height: auto;
}

.logo-link {
    display: inline-block;
}

/* Main Content */
.coming-soon-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.coming-soon-content {
    width: 100%;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    margin-bottom: 50px;
    color: #666;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px 15px;
    min-width: 80px;
    text-align: center;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    color: #333;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 500;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
}

.countdown-expired {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
}

/* Info Section */
.coming-soon-info {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.coming-soon-info p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.coming-soon-info i {
    margin-right: 10px;
    color: #666;
}

/* Footer */
.coming-soon-footer {
    padding: 40px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.footer-content {
    padding: 20px 0;
}

.footer-contact {
    margin: 10px 0;
    font-size: 1rem;
    color: #666;
}

.footer-contact a {
    color: #333;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact i {
    margin-right: 10px;
    color: #666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #dee2e6;
    color: #333;
}

.copyright {
    margin-top: 20px;
    font-size: 0.875rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .countdown-value {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}
