@charset "UTF-8";
/**
 * Bootstrap - Starter Kit
 *
 * @author Prismify
 * @version 1.0.6
 */
:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --card-hover-transform: translateY(-5px);
}

body {
  background-color: #f8f9fa;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo Styling */
.logo-img {
  height: 80px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.navbar-brand {
  text-decoration: none;
}

.navbar-brand:hover {
  text-decoration: none;
}

.hero {
  background: var(--primary-gradient);
  color: white;
  text-align: center;
  padding: 60px 0; /* Reduced from 120px to 60px */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
}

.hero h1 {
  font-size: 3rem; /* Slightly reduced from 3.5rem */
  font-weight: 700;
  margin-bottom: 0.5rem; /* Reduced from 1rem */
  animation: fadeInUp 0.5s ease;
}

.hero .lead {
  margin-bottom: 2rem; /* Reduced from 4rem */
}

.card {
  border: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
}

.card:hover {
  transform: var(--card-hover-transform);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-category {
  font-size: 0.875rem;
  color: #6366f1;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 1rem;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #6366f1;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.list-group-item {
  border: none;
  padding: 12px 16px;
  transition: all 0.2s ease;
}

.list-group-item:hover {
  background-color: #f8f9fa;
  color: #6366f1;
}

.form-range::-webkit-slider-thumb {
  background: #6366f1;
}

.classifieds-row {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.classifieds-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.classifieds-row .col {
  min-width: 300px;
  flex: 0 0 auto;
}

.classifieds-column .card {
  margin-bottom: 1rem;
  width: 100%;
}

.classifieds-column .card-img-top {
  height: 300px; /* Made larger for better single-column appearance */
}

.pagination {
  margin-top: 2rem;
}

.pagination .page-link {
  border: none;
  color: #6366f1;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.pagination .page-item.active .page-link {
  background: var(--primary-gradient);
  color: white;
}

.pagination .page-link:hover {
  background-color: #f8f9fa;
  color: #6366f1;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #6366f1;
}

.section-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

/* Custom Tab Styles */
.nav-tabs {
    border-bottom: 2px solid #e5e7eb;
}

.nav-tabs .nav-link {
    border: none;
    font-weight: 500;
    color: #6b7280;
    padding: 0.75rem 1.5rem;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: #6366f1;
}

.nav-tabs .nav-link.active {
    border: none;
    color: #6366f1;
    border-bottom: 2px solid #6366f1;
}

.tab-content {
    padding-top: 1.5rem;
}

/* Remove grid styles since we're using tabs */
.classifieds-grid {
    display: block;
}

.classifieds-column {
    max-width: 800px;
    margin: 0 auto;
}

.card-body {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.card-image {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.avatar {
  border-radius: 50%;
}

.card-content {
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: #4f46e5;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Login Page Styles */
.login-form {
    margin-bottom: 2rem;
}

.login-form .form-group {
    width: 100%;
}

.login-form .form-control {
    width: 100%;
    margin-bottom: 0;
}

.social-login-section {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 1.5rem;
}

.links-section {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 1.5rem;
    font-size: 0.875rem;
}

.links-section a {
    color: #6366f1;
    text-decoration: none;
}

.links-section a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Adjust social buttons for login page */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border: 1px solid var(--bs-border-color);
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.social-btn:hover {
    background-color: var(--bs-gray-100);
    border-color: var(--bs-gray-300);
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Registration Form Styles */
.registration-form .form-section {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 1.5rem;
}

.registration-form .form-section:last-child {
    border-bottom: none;
}

.registration-form .form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-gray-700);
    margin-bottom: 1.25rem;
}

.registration-form .form-group {
    margin-bottom: 1.25rem;
}

.registration-form .form-group:last-child {
    margin-bottom: 0;
}

.registration-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Dashboard Styles */
.hero-sm {
    padding: 40px 0;
}

.dashboard-sidebar {
    position: sticky;
    top: 90px;
}

.dashboard-sidebar .list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    color: var(--bs-gray-700);
    font-weight: 500;
}

.dashboard-sidebar .list-group-item.active {
    background: var(--primary-gradient);
    color: white;
}

.dashboard-sidebar .list-group-item:hover:not(.active) {
    background-color: var(--bs-gray-100);
    color: #6366f1;
}

.jobs-list .card {
    border: 1px solid var(--bs-border-color);
    transition: all 0.2s ease;
}

.jobs-list .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.jobs-list .card-subtitle {
    font-size: 0.875rem;
}

.jobs-list .badge {
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
}

/* Employer Dashboard Styles */
.company-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--bs-border-color);
}

.job-status {
    font-size: 0.75rem;
    padding: 0.5em 1em;
}

.jobs-list .card .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

/* Job Posting Form Styles */
.job-posting-form .form-section {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 1.5rem;
}

.job-posting-form .form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-posting-form .form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-gray-700);
    margin-bottom: 1.25rem;
}