/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Oswald:wght@500;600&display=swap');

:root {
  --bg-body: #ffffff;
  --bg-surface: #f5f7fa;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --accent: #ff4f1f;
  --accent-hover: #e53e14;
  --radius: 6px;
  --shadow: 0 4px 12px rgba(0,0,0,.06);
  --font-header: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --gap: 1.5rem;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
}

h1 { font-size: clamp(2rem, 2.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.5vw, 1.75rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.container {
  width: min(90%, var(--max-width));
  margin-inline: auto;
  padding-block: 2rem;
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--bg-body);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: .5px;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}

.main-nav a:hover { color: var(--accent); }

/* ---------- MOBILE MENU (Checkbox Hack) ---------- */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: .3s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-body);
    box-shadow: var(--shadow);
    transform: translateX(-100%);
    transition: transform .3s;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem;
  }
  #menu-toggle:checked ~ .main-nav { transform: translateX(0); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  transition: background .2s;
}

.btn:hover { background: var(--accent-hover); color: #fff; }

/* ---------- GRIDS ---------- */
.offers-grid,
.partners-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .offers-grid,
  .partners-grid { grid-template-columns: 1fr; }
}

/* ---------- JOB CARD ---------- */
.job-card {
  background: var(--bg-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.job-card h3 { font-size: 1.25rem; }
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
}

/* ---------- PARTNERS ---------- */
.partner-link {
  display: block;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 500;
  color: var(--text-main);
  transition: transform .2s, box-shadow .2s;
}

.partner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* ---------- SHOW MORE PARTNERS (Checkbox Hack) ---------- */
.partners-wrapper .partners-hidden { display: none; }
.partners-wrapper .show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.partners-wrapper .show-more-checkbox:checked ~ .show-more-container { display: none; }

.show-more-container {
  text-align: center;
  margin-top: 1.5rem;
}

.show-more-label {
  cursor: pointer;
  font-weight: 500;
  color: var(--accent);
}

/* ---------- FAQ ACCORDION ---------- */
details {
  background: var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  transition: .2s;
}

details[open] summary::after { content: "–"; }

details p {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--text-main);
  color: var(--bg-body);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-section h4 {
  font-family: var(--font-header);
  font-size: 1.125rem;
  margin-bottom: .75rem;
}

.footer-section a {
  color: var(--bg-surface);
  font-size: .875rem;
  line-height: 1.8;
}

.footer-section a:hover { color: var(--accent); }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }