/* Fonts */
@font-face {
  font-family: "neulis-black";
  src: url("fonts/neulis_black.otf") format("opentype");
}

@font-face {
  font-family: "NeueAlteGrotesk-Regular";
  src: url("fonts/NeueAlteGrotesk-Regular.otf") format("opentype");
}

@font-face {
  font-family: "NeueAlteGrotesk-Bold";
  src: url("fonts/NeueAlteGrotesk-Bold.otf") format("opentype");
}

@font-face {
  font-family: "NeueAlteGrotesk-SemiBold";
  src: url("fonts/NeueAlteGrotesk-SemiBold.otf") format("opentype");
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "NeueAlteGrotesk-Regular", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-link-home {
  text-decoration: none;
  color: inherit;
}

.navlogo {
  font-family: "neulis-black", sans-serif;
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: bold;
}

.mobile-logo {
  display: none;
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  font-family: "NeueAlteGrotesk-Regular", sans-serif;
}

.nav-menu a {
  text-decoration: none;
  color: #1e3a8a;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #60a5fa;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Selector */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-toggle {
  background: none;
  border: 2px solid #2563eb;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2563eb;
}

.language-toggle:hover {
  background: #2563eb;
  color: white;
}

.flag-icon {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.language-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  min-width: 150px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.language-dropdown.active {
  display: flex;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.language-option:hover {
  background: #f3f4f6;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 2px solid #2563eb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2563eb;
}

.theme-toggle:hover {
  background: #2563eb;
  color: white;
  transform: scale(1.1);
}

.theme-toggle i {
  font-size: 1.1rem;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(to right, #1c7dff, #0051c4);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "NeueAlteGrotesk-Regular", sans-serif;
}

.btn-primary:hover {
  background: #2289ff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2563eb;
  cursor: pointer;
}

/* Main Content */
.careers-main {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  transition: background 0.3s ease;
}

.careers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Image Section */
.careers-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

/* Text Section */
.careers-text-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.careers-title {
  font-family: "NeueAlteGrotesk-Bold", sans-serif;
  font-size: 3rem;
  color: #1e3a8a;
  line-height: 1.2;
}

.careers-description {
  font-family: "NeueAlteGrotesk-Regular", sans-serif;
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
}

/* RH Buttons */
.careers-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-rh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(to right, #1c7dff, #0051c4);
  color: white;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(28, 125, 255, 0.3);
  font-family: "NeueAlteGrotesk-SemiBold", sans-serif;
}

.btn-rh:hover {
  background: linear-gradient(to right, #2289ff, #1c7dff);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(28, 125, 255, 0.4);
}

.btn-rh-secondary {
  background: linear-gradient(to right, #04d9ff, #00c9ff);
  box-shadow: 0 4px 12px rgba(4, 217, 255, 0.3);
}

.btn-rh-secondary:hover {
  background: linear-gradient(to right, #2ae4ff, #04d9ff);
  box-shadow: 0 6px 16px rgba(4, 217, 255, 0.4);
}

.btn-rh i {
  font-size: 1.5rem;
}

/* Added resume generator section styles */
.resume-generator-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0f2fe;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.resume-generator-text {
  font-family: "NeueAlteGrotesk-Regular", sans-serif;
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
}

.btn-resume-generator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(to right, #10b981, #059669);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  font-family: "NeueAlteGrotesk-SemiBold", sans-serif;
}

.btn-resume-generator:hover {
  background: linear-gradient(to right, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.btn-resume-generator i {
  font-size: 1.25rem;
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #030303;
  color: #ffffff;
}

body.dark-mode .header {
  background: #0a1525;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.dark-mode .navlogo {
  color: #60a5fa;
}

body.dark-mode .nav-menu {
  background: #0a1525;
}

body.dark-mode .nav-menu a {
  color: #e2e8f0;
}

body.dark-mode .nav-menu a:hover {
  color: #60a5fa;
}

body.dark-mode .btn-primary {
  background: #60a5fa;
  color: #1a1a1a;
}

body.dark-mode .btn-primary:hover {
  background: #3b82f6;
}

body.dark-mode .theme-toggle {
  border-color: #60a5fa;
  color: #60a5fa;
}

body.dark-mode .theme-toggle:hover {
  background: #60a5fa;
  color: #1a1a1a;
}

body.dark-mode .language-toggle {
  border-color: #60a5fa;
  color: #60a5fa;
}

body.dark-mode .language-toggle:hover {
  background: #60a5fa;
  color: #1a1a1a;
}

body.dark-mode .language-dropdown {
  background: #374151;
  border-color: #4b5563;
}

body.dark-mode .language-option {
  color: #d1d5db;
}

body.dark-mode .language-option:hover {
  background: #4b5563;
}

body.dark-mode .careers-main {
  background: linear-gradient(135deg, #0a1525 0%, #1a1a1a 100%);
}

body.dark-mode .careers-title {
  color: #60a5fa;
}

body.dark-mode .careers-description {
  color: #d1d5db;
}

body.dark-mode .btn-rh {
  background: linear-gradient(to right, #60a5fa, #3b82f6);
  color: #1a1a1a;
}

body.dark-mode .btn-rh:hover {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}

body.dark-mode .btn-rh-secondary {
  background: linear-gradient(to right, #04d9ff, #00c9ff);
  color: #1a1a1a;
}

body.dark-mode .btn-rh-secondary:hover {
  background: linear-gradient(to right, #2ae4ff, #04d9ff);
}

/* Added dark mode styles for resume generator section */
body.dark-mode .resume-generator-section {
  border-top-color: #1e3a8a;
}

body.dark-mode .resume-generator-text {
  color: #d1d5db;
}

body.dark-mode .btn-resume-generator {
  background: linear-gradient(to right, #10b981, #059669);
  color: #1a1a1a;
}

body.dark-mode .btn-resume-generator:hover {
  background: linear-gradient(to right, #059669, #047857);
}

/* Responsive Design */
@media (max-width: 968px) {
  .careers-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .careers-title {
    font-size: 2.5rem;
  }

  .careers-image img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
  }

  .theme-toggle {
    width: 35px;
    height: 35px;
  }

  .careers-main {
    padding-top: 80px;
  }

  .careers-title {
    font-size: 2rem;
    text-align: center;
  }

  .careers-description {
    font-size: 1.125rem;
    text-align: center;
  }

  .careers-image img {
    max-width: 350px;
  }

  .btn-rh {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Added responsive styles for resume generator */
  .resume-generator-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .resume-generator-text {
    font-size: 1rem;
  }

  .btn-resume-generator {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .careers-title {
    font-size: 1.75rem;
  }

  .careers-description {
    font-size: 1rem;
  }

  .careers-image img {
    max-width: 300px;
  }

  .btn-rh {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .nav-actions .btn-primary {
    display: none;
  }
}
