/* Careers page specific styles
 *
 * Paste your /careers/styles.css contents here.
 */
/* Careers Page Specific Styles */
:root {
   --primary-color: #203557;
   --secondary-color: #719976;
   --black-color: #000000;
   --white-color: #ffffff;
   --gray-color: #808080;
   --dark-gray-color: #424242;
   --light-black-color: #212121;
   --light-white-color: #f5f5f5;
   --darker-white-color: #f9f9f9;
   --text-color: #212121;
 }
 
 .main.careers-page {
   width: 100%;
   height: 100%;
   overflow-x: hidden;
 }
 
 /* Hero Section */
 .careers-hero {
   width: 100%;
   height: 500px;
   max-height: 80vh;
   display: flex;
   flex-direction: column;
   position: relative;
   overflow: hidden;
   padding: 0 !important;
   margin: 0 !important;
   background-color: #f5f5f5;
 }
 
 .careers-hero .hero-content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 3;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .careers-hero .hero-text {
   text-align: center;
   color: var(--white-color);
   width: 100%;
   padding: 2rem;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 
 .careers-hero .hero-text h1 {
   font-size: 4rem;
   font-weight: 700;
   margin-bottom: 1rem;
   text-transform: uppercase;
   line-height: 1.1;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }
 
 .careers-hero .hero-image {
   width: 100%;
   height: 100%;
   position: relative;
   z-index: 1;
 }
 
 .careers-hero .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.7) contrast(1.1);
 }
 
 .careers-hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
     135deg,
     rgba(32, 53, 87, 0.3) 0%,
     rgba(113, 153, 118, 0.2) 100%
   );
   z-index: 2;
 }
 
 /* Careers Content Section */
 .careers-content {
   width: 100%;
   padding: 4rem 0;
   background-color: var(--white-color);
   position: relative;
 }
 
 .careers-content::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 50px;
   background: linear-gradient(
     135deg,
     transparent 0%,
     var(--white-color) 20%,
     var(--white-color) 100%
   );
   z-index: 1;
 }
 
 .careers-content .container {
   position: relative;
   z-index: 2;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
 }
 
 .careers-header {
   text-align: center;
   margin-bottom: 1rem;
 }
 
 .careers-header h2 {
   font-size: 2.5rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 0;
   letter-spacing: 1px;
 }
 
 .careers-text {
   max-width: 900px;
   margin: 0 auto 4rem auto;
 }
 
 .careers-text p {
   font-size: 1.1rem;
   line-height: 1.7;
   color: var(--text-color);
   margin-bottom: 1rem;
   text-align: left;
 }
 
 .careers-text h3 {
   font-size: 1.8rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 3rem 0 1.5rem 0;
   text-align: left;
 }
 
 /* Current Openings Section */
 .current-openings {
   margin: 4rem 0;
 }
 
 .current-openings h3 {
   font-size: 2rem;
   font-weight: 600;
   color: var(--primary-color);
   margin-bottom: 2rem;
   text-align: center;
 }
 
 .openings-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   max-width: 900px;
   margin: 0 auto;
 }
 
 .opening-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 2rem;
   background-color: var(--white-color);
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   border: 1px solid #e9ecef;
 }
 
 .opening-item:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }
 
 .opening-content h4 {
   font-size: 1.3rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 0 0 0.5rem 0;
 }
 
 .opening-location {
   font-size: 1rem;
   color: var(--gray-color);
   margin: 0 0 0.25rem 0;
 }
 
 .opening-type {
   font-size: 0.9rem;
   color: var(--secondary-color);
   font-weight: 500;
   margin: 0;
 }
 
 .opening-actions {
   flex-shrink: 0;
 }
 
 .apply-btn {
   padding: 0.75rem 2rem;
   background-color: var(--secondary-color);
   color: var(--white-color);
   border: none;
   border-radius: 25px;
   font-size: 0.9rem;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 0.5px;
 }
 
 .apply-btn:hover {
   background-color: var(--primary-color);
   transform: translateY(-1px);
 }
 
 /* Application Process Section */
 .application-process {
   margin: 4rem 0;
 }
 
 .application-process h3 {
   font-size: 2rem;
   font-weight: 600;
   color: var(--primary-color);
   margin-bottom: 3rem;
   text-align: center;
 }
 
 .process-steps {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1rem;
   max-width: 1000px;
   margin: 0 auto;
 }
 
 .step {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 2rem 1rem;
   background-color: transparent;
   border-radius: 8px;
   transition: all 0.3s ease;
 }
 
 .step:hover {
   transform: translateY(-5px);
 }
 
 .step-number {
   width: 60px;
   height: 60px;
   background-color: var(--secondary-color);
   color: var(--white-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
 }
 
 .step-content h4 {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 0 0 1rem 0;
 }
 
 .step-content p {
   font-size: 1rem;
   line-height: 1.6;
   color: var(--text-color);
   margin: 0;
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
   .careers-hero {
     height: 400px;
   }
 
   .careers-hero .hero-text h1 {
     font-size: 2.5rem;
   }
 
   .careers-content {
     padding: 4rem 0;
   }
 
   .careers-header h2 {
     font-size: 2rem;
   }
 
   .careers-text {
     margin-bottom: 3rem;
   }
 
   .careers-text p {
     font-size: 1rem;
   }
 
   .careers-text h3 {
     font-size: 1.5rem;
   }
 
   .opening-item {
     flex-direction: column;
     text-align: center;
     gap: 1.5rem;
     padding: 1.5rem;
   }
 
   .opening-actions {
     width: 100%;
   }
 
   .apply-btn {
     width: 100%;
     max-width: 200px;
   }
 
   .process-steps {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }
 
   .step {
     padding: 1.5rem 1rem;
   }
 }
 
 @media (max-width: 480px) {
   .careers-hero {
     height: 300px;
   }
 
   .careers-hero .hero-text {
     padding: 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100%;
     margin-top: 2rem;
   }
 
   .careers-hero .hero-text h1 {
     font-size: 2rem;
   }
 
   .careers-content .container {
     padding: 0 0.5rem;
   }
 
   .careers-content {
     padding: 3rem 0;
   }
 
   .careers-header {
     padding: 0 0.5rem;
     margin-bottom: 0rem;
   }
 
   .careers-header h2 {
     font-size: 1.8rem;
   }
 
   .careers-text h3 {
     font-size: 1.3rem;
     margin-bottom: 0.25rem;
   }
 
   .openings-list {
     gap: 1rem;
   }
 
   .opening-item {
     padding: 2rem 1rem;
   }
 
   .current-openings h3 {
     font-size: 2rem;
     margin-bottom: 1rem;
   }
 
   .opening-content h4 {
     font-size: 1.1rem;
   }
 
   .step-number {
     width: 50px;
     height: 50px;
     font-size: 1.2rem;
   }
 
   .step-content h4 {
     font-size: 1.1rem;
   }
 
   .step-content p {
     font-size: 0.9rem;
   }
 
   .application-process h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
   }
 
   .process-steps {
     gap: 1rem;
   }
 
   .process-steps .step {
     padding: 1rem 0.5rem;
   }
 }
 
 /* Animation for opening items */
 .opening-item {
   opacity: 0;
   transform: translateY(30px);
   animation: fadeInUp 0.6s ease forwards;
 }
 
 .opening-item:nth-child(1) {
   animation-delay: 0.1s;
 }
 
 .opening-item:nth-child(2) {
   animation-delay: 0.2s;
 }
 
 .opening-item:nth-child(3) {
   animation-delay: 0.3s;
 }
 
 @keyframes fadeInUp {
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 /* Animation for process steps */
 .step {
   opacity: 0;
   transform: translateY(30px);
   animation: fadeInUp 0.6s ease forwards;
 }
 
 .step:nth-child(1) {
   animation-delay: 0.1s;
 }
 
 .step:nth-child(2) {
   animation-delay: 0.2s;
 }
 
 .step:nth-child(3) {
   animation-delay: 0.3s;
 }
 
 .step:nth-child(4) {
   animation-delay: 0.4s;
 }
 
 /* Focus states for accessibility */
 .apply-btn:focus {
   outline: 2px solid var(--secondary-color);
   outline-offset: 2px;
 }
 
 .opening-item:focus-within {
   outline: 2px solid var(--secondary-color);
   outline-offset: 2px;
 }
 
 /* Print styles */
 @media print {
   .careers-hero {
     height: auto;
     min-height: 200px;
   }
 
   .opening-actions {
     display: none;
   }
 
   .opening-item {
     box-shadow: none;
     border: 1px solid #ccc;
     break-inside: avoid;
   }
 }
 
