/**
 * Welcome Page CSS
 * Location: /home/u142734668/domains/finalv4.gspkart.com/public_html/assets/css/welcome.css
 */

.welcome-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.welcome-content {
    text-align: center;
    max-width: 900px;
}

.welcome-content h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .welcome-content h1 {
        font-size: 36px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}