/* Fintech Careers Vanilla SPA - styles.css */

/* Base styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #ffffff;
}

.body2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
}
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Colors */
.text-primary { color: #000000; }
.bg-dark { background: #ffffff; }
.bg-secondary { background: #0a193e; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #393E46;
  padding: 1rem 0;
}
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-icon { width: 32px; height: 32px; color: #0a193e00; }
.logo-text { font-size: 1.5rem; font-weight: 700; }
.nav a {
  margin-left: 2rem;
  transition: color .3s;
}
.nav { color: #0a193e; }

/* Hero */
.hero {
  position: relative;
  background: #0a193e;
  padding: 5rem 1rem;
  overflow: hidden;
}
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(238,238,238,0.1) 1px, transparent 1px),
                    linear-gradient(to right, rgba(238,238,238,0.1) 1px, transparent 1px);
  background-size: 2rem 2rem;
  opacity: .1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}
.btn-primary {
  display: inline-block;
  background: #00ADB5;
  color: #0a193e;
  padding: .75rem 2rem;
  font-weight: 700;
  border-radius: .5rem;
  transition: transform .3s;
}
.btn-primary:hover { transform: scale(1.05); }

/* Sections */
.values-section, .jobs-section, .perks-section {
  padding: 5rem 1rem;
}
.values-section h2,
.jobs-section h2,
.perks-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
}

/* Value cards */
.value-card {
  background: #0a193e;
  border-radius: .5rem;
  padding: 1.5rem;
}
.value-card h3 { color: #EEEEEE; margin: 1rem 0 .5rem; }
.value-card p { color: #ffffff; }

/* Job listings */
.filters { margin-bottom: 2rem; }
.filters button {
  margin: .25rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #00ADB5;
  background: transparent;
  color: #0a193e;
  cursor: pointer;
  transition: all .3s;
}
.filters button.active,
.filters button:hover {
  background: #0a193e;
  color: #ffffff;
}
.jobs-grid {
  display: grid;
  gap: 1.5rem;
}
.job-card {
  background: #0a193e;
  border: 1px solid rgba(57,62,70,0.5);
  border-radius: .5rem;
  padding: 1.5rem;
  transition: transform .3s;
}
.job-card:hover { transform: translateY(-5px); }
.job-card h3 { margin: 0 0 .5rem; font-size: 1.25rem; }
.job-card p { margin: .25rem 0; color: #ffffff; }
.job-card a {
  display: inline-block;
  margin-top: 1rem;
  background: #ffffff;
  color: #0a193e;
  padding: .5rem 1rem;
  border-radius: .25rem;
  font-weight: 600;
}

/* Perks */
.perk-card h3 { margin-top: .5rem; color: #0a193e; font-size: 1rem; }
.perk-card p { color: #0a193e; font-size: .9rem; }

/* Footer */
.footer {
  background: #0a193e;
  border-top: 1px solid rgba(57,62,70,0.5);
  padding: 2rem 0;
}
.footer h3 { margin: 0; font-size: 1.5rem; font-weight: 700; }
.footer p { margin: .25rem 0 0; color: #ccc; }
.socials a { margin-left: 1rem; font-size: 1.5rem; }
