/* POS Hero Section Styles */

/* POS Hero Section - Extends hero.css styles */
.hero.pos-hero-section {
    background: linear-gradient(135deg, #2C5F41 0%, #1a3d2e 100%);
    /* Inherit margin and padding from hero.css */
}

.hero.pos-hero-section::before {
    /* Override grid pattern for POS theme */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content.pos-hero-container {
    /* Extend hero-content styles */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-container.pos-hero-content {
    /* POS-specific content styling */
    text-align: left;
    max-width: none;
}

.pos-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.pos-breadcrumb a {
    color: white;
    text-decoration: none;
}

.pos-breadcrumb a:hover {
    text-decoration: underline;
}

.pos-breadcrumb span {
    margin: 0 8px;
}

.pos-hero-title {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease-out;
}

.highlight-text {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pos-hero-subtitle {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.pos-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pos-hero-cta {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 180px;
}

.pos-hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.pos-demo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px;
}

.pos-demo-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.pos-demo-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(76, 205, 196, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1s infinite;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .pos-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pos-hero-title {
        font-size: 2.5rem;
    }
    
    .pos-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pos-hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .pos-hero-title {
        font-size: 2rem;
    }
    
    .pos-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pos-hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
