@import url('https://fonts.googleapis.com/css2?family=Joan&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500&family=Joan&family=Cinzel:wght@400;500&family=Montserrat:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WindSong:wght@400;500&display=swap');

/* Icon Utilities */
[data-icon="clock"],
[data-icon="map-pin"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

[data-icon="clock"] {
  background-image: url('../icons/careers/calendar-clock.png');
}

[data-icon="map-pin"] {
  background-image: url('../icons/careers/map-pin-1.png');
}

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

body {
  margin: 0;
  background-color: rgb(239,239,239);
  color: #1e1e3f;
  font-weight: 250;
  overflow-x: block;
}

/* Career Section */
.career-section {
  padding: 40px 20px 60px 20px;
  background-color: rgb(239, 241, 243) !important;
  text-align: center !important;
}
.career-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Accessibility helper */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Label style for language dropdown */
.view-label {
  display: block;
  font-family: 'Raleway', serif !important;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 14px;
  color: #1e1e3f;
  cursor: default;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .view-label {
    text-align: center;
    font-size: 15px;
    margin-bottom: 8px;
  }
}


/* Language switch container */
.lang-switch {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

/* Match existing button/brand feel */
.lang-select {
  font-family: 'Raleway', serif !important;
  font-size: 16px;
  padding: 0px;
  width: 130px;
  border-radius: 8px;
  border: 1px solid #1e1e3f;
  background-color: #ffffff;
  color: #1e1e3f;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.lang-select:focus,
.lang-select:hover {
  outline: none;
  border-color: #63605a;
  box-shadow: 0 0 0 3px rgba(99,96,90,0.15);
}

/* Mobile spacing harmony */
@media (max-width: 768px) {
  .lang-switch {
    justify-content: center;
    margin-bottom: 12px;
  }
  .lang-select {
    width: 150px;
    font-size: 15px;
    padding: 0px !important;
    border-radius: 10px;
    text-align: center;
  }
}

.career-title {
  font-family: 'Joan', serif !important;
  font-size: 48px;
  line-height: 1.3;
  color: #1e1e3f;
  font-weight: 500 !important;
  margin-bottom: 30px;
}
.career-description {
  font-family: 'Raleway', serif !important;
  font-size: 18px;
  color: #5b5b7b;
  line-height: 1.8;
  font-weight: 300 !important;
  margin-bottom: 40px;
}
.select-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.select-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-family: 'Raleway', serif !important;
  background-color: #918c83 !important;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.select-btn.active,
.select-btn:active,
.select-btn:hover {
  background-color: #63605a !important;
  color: white !important;
  border-color: white !important;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .select-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  .select-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 2px;
    border-radius: 10px;
    text-align: center;
  }
}



/* Responsive */
@media (max-width: 768px) {
  section {
    flex-direction: column;
    padding: 60px 6%;
    text-align: center;
    overflow-x: hidden;
  }
  .career-section {
    padding: 60px 6%;
  }
  .career-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .career-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
}
