/*
Theme Name: NoMondays Pro
Author: Your Name
Description: Modern job aggregator theme for nomondays.io
Version: 2.0
*/

/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Consistent Design */
:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --primary-light: #FF8E63;
  --secondary: #667EEA;
  --accent: #00C9A7;
  --dark: #1A202C;
  --dark-gray: #2D3748;
  --gray: #4A5568;
  --light-gray: #A0AEC0;
  --lighter-gray: #E2E8F0;
  --background: #F7FAFC;
  --white: #FFFFFF;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { 
  font-size: 3.5rem; 
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: 2.5rem; 
  text-align: center;
}

h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p { 
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
button, .button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

button:hover, .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

button.secondary, .button.secondary {
  background: transparent;
  color: var(--gray);
  border: 2px solid var(--lighter-gray);
  box-shadow: none;
}

button.secondary:hover, .button.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Card Component */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid var(--lighter-gray);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--background); }
.bg-dark { background-color: var(--dark); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.section-padding {
  padding: 80px 20px;
}
/* Modern Search Styles */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.search-section {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: -30px auto 40px;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.search-form {
    display: flex;
    gap: 15px;
}

.search-input, .location-input {
    flex: 1;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f9fafb;
}

.search-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.search-icon, .location-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-section {
        margin: -20px 20px 30px;
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}
/* Fix production background issues */
body {
    background-color: #fff8f0 !important;
}

.hero-homepage {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5500 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Remove any floating job cards */
.featured-jobs,
.job-grid-home,
.job-cards,
.floating-cards {
    display: none !important;
}

/* Logo styling */
.logo-container {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5500 100%);
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    border: none !important;
    box-shadow: none !important;
}

.logo-container img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Ensure consistent orange theme */
.hero-homepage * {
    border: none !important;
    outline: none !important;
}

/* REMOVE THE @IMPORT LINES - They're causing the issue */
/* @import url('assets/css/main.css'); */
/* @import url('assets/css/components.css'); */