/*
Theme Name:  Job Board
Author: Sivah tech
Description: Job Board
Version: 1.0

*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# General Styles
# Header Styles
# Footer Styles
# Page Title Styles
# Sidebar Styles
# Widget Styles
# Post Styles
# Page Styles 
# Form Styles
# Button Styles
# Responsive Styles
--------------------------------------------------------------*/


/* Header Styling */
.site-header {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  .logo a {
    text-decoration: none;
    font-size: 22px;
  }
  .logo-bold {
    font-weight: bold;
    color: #b22222; /* dark red */
  }
  .logo-light {
    font-weight: normal;
    color: #666;
  }
  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
  }
  .nav-menu li {
    position: relative;
  }
  .nav-menu a {
    text-decoration: none;
    color: #aaa;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-menu .current-menu-item a {
    color: #b22222; /* active red */
  }
  .nav-menu .current-menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #b22222;
  }

  











  /* Hero Section */
.hero {
    background: #fff;
    padding: 60px 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
  }
  .hero h1 .highlight {
    color: #d62828; /* red highlight */
  }
  .hero p {
    color: #555;
    margin-top: 10px;
    font-size: 16px;
  }
  
  /* Search Bar */
  .search-bar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .search-bar input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 200px;
  }
  .search-bar .filter {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
  }
  .search-bar .search-btn {
    background: #d62828;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* Jobs Section */
  .jobs {
    margin-top: 50px;
    text-align: left;
  }
  .jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .jobs-header h2 {
    font-size: 24px;
  }
  .jobs-header a {
    font-size: 14px;
    color: #d62828;
    text-decoration: none;
  }
  .jobs-subtitle {
    color: #666;
    margin: 10px 0 30px;
  }
  
  /* Job Cards */
  .job-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .job-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }
  .job-card:hover {
    transform: translateY(-5px);
  }
  .job-card h3 {
    font-size: 18px;
    color: #222;
  }
  .job-card .location {
    color: #d62828;
    font-weight: 500;
  }
  .job-card .date {
    font-size: 13px;
    color: #888;
    margin: 8px 0;
  }
  .apply-btn {
    display: inline-block;
    margin-top: 10px;
    color: #d62828;
    font-weight: 600;
    text-decoration: none;
  }
  



