/* NovaPos Design System - Shared Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header Section */
.novapos-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.novapos-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}
.novapos-header p {
    font-size: 1.3rem;
    margin: 20px 0 0 0;
    opacity: 0.9;
    font-weight: 300;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}
.section-header i {
    font-size: 2.5rem;
    color: #667eea;
    margin-right: 20px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Card Component */
.content-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}
.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}
.card-content {
    padding: 25px;
}
.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}
.card-type {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.card-duration {
    display: flex;
    align-items: center;
}
.card-duration i {
    margin-right: 5px;
}

/* Coming Soon Placeholder */
.coming-soon {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    color: #6c757d;
}
.coming-soon i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}
.coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Search Section */
.search-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.search-container {
    display: flex;
    gap: 15px;
    align-items: center;
}
.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.filter-select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .novapos-header h1 {
        font-size: 2.5rem;
    }
    .novapos-header p {
        font-size: 1.1rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .search-container {
        flex-direction: column;
    }
    .search-input,
    .filter-select {
        width: 100%;
    }
} 