/*
Theme Name: Healthcare Recruit Custom Theme
Theme URI: https://healthcarerecruit.com.au/
Author: Healthcare Recruit Builder
Author URI: https://healthcarerecruit.com.au/
Description: A bespoke, highly responsive WordPress theme for Healthcare Recruit Australia. Dynamically styled with brand color inputs extracted from the premium company logo. Includes custom fields, ready-made layouts, and integrated color variables.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: healthcare-recruit
Tags: healthcare, medical, recruitment, australian, clean, portfolio, custom-colors

This theme is fully ready to be installed on any self-hosted WordPress site.
*/

:root {
  --primary-color: #06b6d4;
  --secondary-color: #10b981;
  --accent-color: #7c3aed;
  --bg-color: #0B1221;
  --text-color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation Styles */
.site-header {
  background-color: #0B1221;
  border-bottom: 2px solid var(--primary-color);
  padding: 15px 0;
}

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

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.logo-text span {
  color: var(--primary-color);
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.main-navigation a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: var(--accent-color);
}

/* Button Component */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #0B1221;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #0B1221 0%, #0F172A 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Grid & Layout Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.service-card {
  background-color: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-top: 0;
}

.service-card .icon-line {
  height: 4px;
  width: 50px;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Employer/Candidate Sections */
.split-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .split-sections {
    grid-template-columns: 1fr;
  }
}

.form-box {
  background-color: #0F172A;
  border-top: 4px solid var(--primary-color);
  padding: 40px;
  border-radius: 12px;
}

.form-box h3 {
  font-size: 24px;
  color: #ffffff;
  margin-top: 0;
}
