/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ===== Navbar (Updated to match About Page) ===== */
.navbar {
  background: #F1C338;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .main-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text .tagline {
  font-size: 0.9rem;
  color: #444;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 8px 14px;
  transition: 0.3s;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #222;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ===== Hero Section ===== */
.careers-hero {
  background: linear-gradient(to right, #fff8dc, #fef4c5);
  text-align: center;
  padding: 100px 10%;
}

.careers-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.careers-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  background: #F1C338;
  color: #222;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #e2b92e;
}

/* ===== Why Work With Us ===== */
.why-section {
  text-align: center;
  padding: 80px 10%;
  background: #fff;
}

.why-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fffdf5;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card h3 {
  margin-bottom: 15px;
  color: #F1C338;
}

/* ===== Job Openings ===== */
.jobs-section {
  text-align: center;
  padding: 100px 10%;
  background: #fdf7e5;
}

.jobs-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.job-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-8px);
}

.job-card h3 {
  margin-bottom: 10px;
  color: #F1C338;
}

.apply-btn {
  display: inline-block;
  margin-top: 15px;
  background: #F1C338;
  padding: 10px 20px;
  color: #222;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: #e2b92e;
}

/* ===== Footer ===== */
.footer-grid {
  background: #F1C338;
  padding: 60px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  color: #222;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #222;
}

.footer-column a:hover {
  color: #007bff;
}

.footer-bottom {
  background: #e2b92e;
  padding: 18px;
  text-align: center;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 20px;
    background: #F1C338;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
