:root {
  --bg: #f7f8fa;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #2E86AB;
  --accent: #E67E22;
  --border: #e5e7eb;
}
/* Portfolio Card Styles */
.portfolio-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.portfolio-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.portfolio-image-container img {
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image-container img {
    transform: scale(1.05);
}

/* Portfolio badges */
.portfolio-badge {
    font-size: 0.75rem;
}

/* Empty state styling */
.empty-portfolio {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text); background: var(--bg);
}
.container { max-width: 1100px; margin: 2rem auto; padding: 0 1rem; }

.header {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); padding: 1rem 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.brand { font-weight: 700; color: var(--text); font-size: 1.2rem; letter-spacing: 0.5px; }
.nav a { margin-left: 1rem; text-decoration: none; color: var(--text); }
.nav a:hover { color: var(--primary); }

h2 { margin-bottom: 1rem; }
.muted { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.2rem; }
.card {
  background: var(--card); border-radius: 14px; padding: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.highlight { border: 2px dashed var(--primary); background: #eaf6fb; }

.avatar { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; background: #ddd; }
.avatar-large { width: 160px; height: 160px; border-radius: 16px; object-fit: cover; margin-right: 1rem; }

.badge { display: inline-block; background: var(--primary); color: #fff; padding: 0.3rem 0.8rem; border-radius: 999px; font-size: 0.9rem; }
.btn { display: inline-block; margin-top: 0.5rem; background: var(--accent); color: #fff; padding: 0.6rem 1rem; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); }

.search { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.search input { flex: 1; padding: 0.6rem 0.8rem; border: 1px solid var(--border); border-radius: 8px; }
.search button { padding: 0.6rem 1rem; border: none; border-radius: 8px; background: var(--primary); color: #fff; cursor: pointer; }

.profile-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.tags { margin-top: 0.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { background: #f1f5f9; padding: 0.25rem 0.6rem; border-radius: 999px; font-size: 0.85rem; color: var(--text); }

.status { padding: 0.1rem 0.5rem; border-radius: 6px; background: #eef2ff; color: #3b82f6; }
.status.matched { background: #ecfdf5; color: #10b981; }
.status.in-progress { background: #fff7ed; color: #f59e0b; }
.status.completed { background: #f0fdf4; color: #22c55e; }

.thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 0.6rem; }
.thumb { width: 140px; height: 100px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }

.form .row { display: flex; gap: 1rem; margin-bottom: 0.8rem; }
.form .col { flex: 1; }
.form input[type="text"], .form input[type="number"], .form input[type="file"] {
  width: 100%; padding: 0.6rem 0.8rem; border: 1px solid var(--border); border-radius: 8px;
}

.alert { padding: 0.6rem 0.8rem; border-radius: 8px; margin-bottom: 0.8rem; }
.alert-error { background: #fee2e2; color: #b91c1c; }
.alert-success { background: #dcfce7; color: #166534; }

.slide-img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; }
/* Paintello Pro Custom Styles */

.hero-section {
    background: linear-gradient(135deg, #4a6fff, #6c8eff);
    color: white;
    padding: 100px 0;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.star-rating {
    color: #ffc107;
}

.avatar-placeholder {
    background-color: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-premium {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

/* Custom button styles */
.btn-primary {
    background-color: #4a6fff;
    border-color: #4a6fff;
}

.btn-primary:hover {
    background-color: #3a5fef;
    border-color: #3a5fef;
}

/* Navigation enhancements */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form enhancements */
.form-control:focus {
    border-color: #4a6fff;
    box-shadow: 0 0 0 0.2rem rgba(74, 111, 255, 0.25);
}

/* Alert enhancements */
.alert {
    border: none;
    border-radius: 8px;
}

/* Card enhancements */
.card {
    border: none;
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}
