* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #f6f9f6;
    color: #1b2b2d;
}

/* HEADER -------------------------------------------------- */

header {
    width: 100%;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #e9eeea; /* sötétebb szürke-zöld */
    border-bottom: 1px solid #d0d8d2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.20);
}

.logo {
    font-size: 22px;
    font-weight: 700;
}
/*Menü rész*/
nav a {
    margin: 0 15px;
    font-size: 15px;
    text-decoration: none;
    color: #2a3c3f;
    position: relative;
    transition: color 0.25s ease;
}

nav a:hover {
    color: #1a5336;
}

/* alsó kiemelő vonal */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1a5336;
    transition: width 0.25s ease;
}

/* hover animáció */
nav a:hover::after {
    width: 100%;
}

/* HERO SECTION ------------------------------------------- */

.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("/IMG/hero-bg-hr.png");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;

    opacity: 0.30;              /* nagyon fontos */
    pointer-events: none;
    z-index: 0;
}

.hero-left {
    max-width: 45%;
    position: relative;
}

.badge {
    background: #e0e8df;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: #1a5336;
}

.hero-left p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4d5d5f;
}

.hero-buttons button {
    padding: 12px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    margin-right: 12px;
}

/* RIGHT SIDE --------------------------------------------- */

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.info-card {
    background: #123b2a;
    color: #eaf4eb;
    padding: 30px 25px;
    width: 330px;
    border-radius: 14px;
    margin-bottom: 40px;
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.info-card span {
    color: #6cf0a4;
}

.green-card {
  min-height: 420px; /* vagy ami vizuálisan jól áll */
  display: flex;
  flex-direction: column;
}

.featured-jobs {
  margin-top: 1px;
  padding-right: 8px;

  max-height: 320px;     /* EZ fog görgetni */
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}
/*További állások gomb*/
.more-jobs-btn {
  margin-top: 16px;
  padding: 12px;
  text-align: center;

  background: #ffffff;
  color: #0f3d2e;
  font-weight: 600;
  border-radius: 999px;

  text-decoration: none;
  transition: all 0.2s ease;
}

.more-jobs-btn:hover {
  background: #e6f2ec;
  transform: translateY(-1px);
}

/* Menüsáv logo*/
.logo img {
    height: 36px;           /* finoman elegáns méret */
    width: auto;
    display: block;
    cursor: pointer;
}

/* ABOUT SECTION ------------------------------------------ */
.about {
    background: #ffffff;
    padding: 100px 60px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5336;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2a3c3f;
}

.about-left p {
    font-size: 15px;
    line-height: 1.7;
    color: #4d5d5f;
    margin-bottom: 16px;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-card {
    background: #f6f9f6;
    border-radius: 14px;
    padding: 25px 22px;
    border-left: 4px solid #1a5336;
}

.about-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a5336;
}

.about-card p {
    font-size: 15px;
    color: #4d5d5f;
    line-height: 1.6;
}

/* FOOTER ------------------------------------------------- */
.footer {
    background: rgb(18, 59, 42);
    color: #eaf4eb;
    padding: 70px 60px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-col {
    flex: 1;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #6cf0a4;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #cfe3d4;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 13px;
    color: #b9d6c3;
}

/* JeszoCode footer rész */
.footer-dev {
    margin: 4px 0 0;
    color: #999999;
}
.powered-by {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.powered-by img {
  max-width: 90px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: transparent;
}

.powered-by img:hover {
  opacity: 1;
}

/* HAMBURGER ---------------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #1a5336;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav container */
.mobile-nav {
    display: none;
}

/* Szolgáltatások/Services odlal CSS */

.services-hero {
    background: #f6f9f6;
    padding: 80px 60px 50px;
    position: relative;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("/IMG/hero-bg-hr.png");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;

    opacity: 0.30;              /* nagyon fontos */
    pointer-events: none;
    z-index: 0;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(246, 249, 246, 0.55); /* világos overlay */
    z-index: 1;
}

.services-hero-inner {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 42px;
    color: #1a5336;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 17px;
    color: #4d5d5f;
    line-height: 1.6;
}

/* SERVICES LIST */

.services-list {
    padding: 40px 60px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-more {
  text-align: center;
  margin-bottom: 60px;
}

.service-card {
    background: #ffffff;
    padding: 30px 26px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transfoSrm 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 18px;
    color: #1a5336;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #4d5d5f;
    line-height: 1.6;
}

/* CUSTOM REQUEST */

.services-custom {
    background: #e9eeea;
    padding: 70px 60px;
    text-align: center;
}

.services-custom p {
    font-size: 18px;
    margin-bottom: 25px;
}

.services-custom .contact-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #1a5336;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.services-custom .contact-btn:hover {
    background: #16442b;
    transform: translateY(-2px);
}

/*--------CONTACT.html oldal-------*/
.contact-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
}

/* KÖZPONTI PANEL */
.contact-wrapper {
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(
        180deg,
        rgb(18, 59, 42),
        rgba(0, 0, 0, 0.9)
    );
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 28px;
    padding: 60px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 40px 120px rgba(0,0,0,0.6);
}

/* FEJLÉC */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-header p {
    color: #9ca3af;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* KÁRTYÁK */
.contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-card p {
    color: #cbd5e1;
    margin-bottom: 14px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #10c303;
}

.btn-primary {
    margin-top: 10px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(135deg, rgb(23, 77, 55), rgb(23, 77, 55));
    color: #ffffff;
}

/* CONTACT – SOCIAL ICONS */
.contact-socials {
    margin-top: 25px;
    display: flex;
    gap: 18px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.contact-socials a:hover {
    background: #1f7a53; /* Jobprex zöld */
    transform: translateY(-3px);
}

.contact-socials img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ============================= */
/* COMPANY / MUNKÁLTATÓI OLDAL   */
/* ============================= */

.company-page {
  background: #f6f9f6;
  padding: 100px 0;
}

.company-page::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("/IMG/hero-bg-hr.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;

  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}
/* biztosítjuk, hogy a tartalom felül legyen */
.company-container {
  position: relative;
  z-index: 1;
}

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

.company-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

/* LEFT SIDE */

.company-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1a5336;
}

.company-hero p {
  font-size: 17px;
  color: #4d5d5f;
  max-width: 520px;
}

.company-features {
  margin-top: 30px;
}

.company-features li {
  list-style: none;
  margin-bottom: 14px;
  font-size: 16px;
  color: #2a3c3f;
}

.company-features li::before {
  content: "✔";
  color: #1a5336;
  margin-right: 10px;
}

.company-steps {
  margin-top: 45px;
}

.company-steps h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a5336;
}

.company-steps p {
  color: #4d5d5f;
  margin-bottom: 10px;
}

/* LOGIN CARD */

.company-login-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 32px;
  border: 1px solid #d0d8d2;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  position: sticky;
  top: 40px;
}

.company-login-card h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1a5336;
}

.company-login-card p {
  font-size: 14px;
  color: #6b7c7e;
  margin-bottom: 22px;
}

.company-login-card label {
  font-size: 13px;
  color: #4d5d5f;
  display: block;
  margin-bottom: 6px;
}

.company-login-card input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d8d2;
  margin-bottom: 16px;
  background: #f6f9f6;
}

.company-login-card input:focus {
  outline: none;
  border-color: #1a5336;
}

.company-login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #1a5336;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.company-login-btn:hover {
  background: #16442b;
}

.company-login-links {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
}

.company-login-links a {
  color: #4d5d5f;
}



/* ============================= */
/* COMPANY DASHBOARD (SCOPED)  Oldal  */
/* Prefix: companydash-          */
/* ============================= */

.companydash-page {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: #f6f9f6;
}

/* Hero-szerű háttér ugyanazzal a képpel, csak scoped */
.companydash-page::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("/IMG/hero-bg-hr.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;

  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}

.companydash-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

/* Topbar */
.companydash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}

.companydash-title {
  font-size: 34px;
  line-height: 1.2;
  color: #1a5336;
  margin-bottom: 6px;
}

.companydash-subtitle {
  color: #4d5d5f;
  font-size: 15px;
}

.companydash-companyname {
  font-weight: 700;
  color: #1b2b2d;
}

.companydash-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons */
.companydash-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.companydash-btn:active {
  transform: translateY(1px);
}

.companydash-btn-primary {
  background: #1a5336;
  color: #fff;
}

.companydash-btn-primary:hover {
  background: #16442b;
}

.companydash-btn-secondary {
  background: #e9eeea;
  color: #1b2b2d;
  border: 1px solid #d0d8d2;
}

.companydash-btn-secondary:hover {
  background: #dde6df;
}

.companydash-btn-ghost {
  background: transparent;
  color: #1b2b2d;
  border: 1px solid #d0d8d2;
}

.companydash-btn-ghost:hover {
  background: #ffffff;
}

/* Stats */
.companydash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.companydash-statcard {
  background: #ffffff;
  border: 1px solid #d0d8d2;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.companydash-statlabel {
  color: #4d5d5f;
  font-size: 13px;
  margin-bottom: 8px;
}

.companydash-statvalue {
  font-size: 30px;
  font-weight: 800;
  color: #1a5336;
  margin-bottom: 6px;
}

.companydash-statnote {
  color: #6b7c7e;
  font-size: 12px;
}

/* Main grid */
.companydash-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}

/* Cards */
.companydash-card {
  background: #ffffff;
  border: 1px solid #d0d8d2;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  padding: 18px;
}

.companydash-cardhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.companydash-cardtitle {
  font-size: 18px;
  color: #1a5336;
}

.companydash-tools {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.companydash-search {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0d8d2;
  background: #f6f9f6;
  min-width: 220px;
}

.companydash-select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0d8d2;
  background: #f6f9f6;
}

/* Table */
.companydash-tablewrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid #e2e8e3;
}

.companydash-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.companydash-table thead th {
  text-align: left;
  font-size: 13px;
  color: #4d5d5f;
  background: #f6f9f6;
  padding: 12px;
  border-bottom: 1px solid #e2e8e3;
}

.companydash-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #eef2ef;
  font-size: 14px;
  color: #1b2b2d;
  vertical-align: middle;
}

.companydash-jobtitle {
  font-weight: 700;
}

.companydash-rowactions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Status pills */
.companydash-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.companydash-pill-active {
  background: rgba(26, 83, 54, 0.12);
  color: #1a5336;
  border: 1px solid rgba(26, 83, 54, 0.18);
}

.companydash-pill-inactive {
  background: rgba(77, 93, 95, 0.10);
  color: #4d5d5f;
  border: 1px solid rgba(77, 93, 95, 0.18);
}

/* Link-like buttons */
.companydash-linkbtn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: #1a5336;
}

.companydash-linkbtn:hover {
  text-decoration: underline;
}

.companydash-linkbtn-danger {
  color: #8a1f1f;
}

/* Right panel */
.companydash-card-side {
  position: sticky;
  top: 40px;
}

.companydash-infobox {
  background: #f6f9f6;
  border: 1px solid #e2e8e3;
  border-radius: 16px;
  padding: 14px;
  margin-top: 12px;
}

.companydash-infolabel {
  font-size: 12px;
  color: #6b7c7e;
  margin-bottom: 6px;
}

.companydash-infovalue {
  font-size: 14px;
  font-weight: 700;
  color: #1b2b2d;
  word-break: break-word;
}

.companydash-divider {
  height: 1px;
  background: #e2e8e3;
  margin: 16px 0;
}

.companydash-minihelp h3 {
  font-size: 14px;
  color: #1a5336;
  margin-bottom: 10px;
}

.companydash-minihelp ul {
  padding-left: 16px;
}

.companydash-minihelp li {
  color: #4d5d5f;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Empty state (optional) */
.companydash-empty {
  padding: 26px;
  text-align: center;
}

.companydash-empty h3 {
  font-size: 18px;
  color: #1a5336;
  margin-bottom: 8px;
}

.companydash-empty p {
  color: #4d5d5f;
  margin-bottom: 14px;
}

/* ============================= */
/* COMPANY – JOB CREATE PAGE   oldal  */
/* Prefix: companyjob-           */
/* ============================= */

.companyjob-page {
  min-height: 100vh;
  padding: 100px 0;
  background: #f6f9f6;
  position: relative;
  overflow: hidden;
}

/* háttér, egységes a többi oldallal */
.companyjob-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/IMG/hero-bg-hr.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}

.companyjob-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* HEADER */

.companyjob-header {
  margin-bottom: 40px;
}

.companyjob-header h1 {
  font-size: 36px;
  color: #1a5336;
  margin-bottom: 10px;
}

.companyjob-header p {
  color: #4d5d5f;
  font-size: 15px;
  line-height: 1.6;
}

/* FORM */

.companyjob-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #d0d8d2;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.companyjob-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.companyjob-field label {
  font-size: 14px;
  font-weight: 600;
  color: #1b2b2d;
  margin-bottom: 6px;
}

.companyjob-field input,
.companyjob-field select,
.companyjob-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d8d2;
  font-size: 15px;
  background: #f6f9f6;
}

.companyjob-field textarea {
  resize: vertical;
}

.companyjob-field input:focus,
.companyjob-field select:focus,
.companyjob-field textarea:focus {
  outline: none;
  border-color: #1a5336;
}

/* ACTIONS */

.companyjob-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}

.companyjob-cancel {
  color: #4d5d5f;
  text-decoration: none;
  font-weight: 600;
}

.companyjob-cancel:hover {
  text-decoration: underline;
}

.companyjob-submit {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: #1a5336;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.companyjob-submit:hover {
  background: #16442b;
}

.companyjob-submit:active {
  transform: translateY(1px);
}

.companyjob-title-main {
  display: block;
  margin-bottom: 10px;   /* EZ a kulcs */
}

.companyjob-title-sub {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #4d5d5f;
  line-height: 1.6;
}

/* ============================= */
/* JOBS PAGE                    */
/* Prefix: jobs-                */
/* ============================= */

.jobs-page {
    padding: 100px 0 80px;
    background: #f6f9f6;
    position: relative;
    overflow: hidden;
}

.jobs-page::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("/IMG/hero-bg-hr.png");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;

    opacity: 0.30;
    pointer-events: none;
    z-index: 0;
}

.jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* HEADER */

.jobs-header {
    margin-bottom: 40px;
}

.jobs-header h1 {
    font-size: 42px;
    color: #1a5336;
    margin-bottom: 12px;
}

.jobs-header p {
    font-size: 16px;
    color: #4d5d5f;
}

/* FILTERS */

.jobs-filters {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 15px;
    margin-bottom: 35px;
}

.jobs-filters input,
.jobs-filters select {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d0d8d2;
    background: #ffffff;
}

.jobs-filter-btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: #1a5336;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.jobs-filter-btn:hover {
    background: #16442b;
}

/* JOB LIST */

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* JOB CARD */

.job-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 26px;
    border: 1px solid #d0d8d2;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.job-main h3 {
    font-size: 20px;
    color: #1a5336;
    margin-bottom: 6px;
}

.job-company {
    font-size: 14px;
    color: #6b7c7e;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: #4d5d5f;
    flex-wrap: wrap;
}

/* ACTIONS */

.job-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.job-details {
    font-size: 14px;
    font-weight: 600;
    color: #1a5336;
    text-decoration: none;
}

.job-details:hover {
    text-decoration: underline;
}

.job-apply {
    padding: 10px 18px;
    border-radius: 999px;
    background: #1a5336;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.job-apply:hover {
    background: #16442b;
}

.job-salary {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a5336;
}

/* jobs.html kereső módosítás FILTERS */

.jobs-filters {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

/* FELSŐ SOR – 4 LEGÖRDÜLŐ */
.jobs-filters-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* ALSÓ SOR – KERESŐ + GOMB */
.jobs-filters-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
}

/* INPUT / SELECT – egységes kinézet */
.jobs-filters select,
.jobs-filters input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d0d8d2;
    background: #ffffff;
}

/* KERESÉS GOMB */
.jobs-filter-btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: #1a5336;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.jobs-filter-btn:hover {
    background: #16442b;
}

