/**************************
  FONTS & BASE RESETS
***************************/
@import url('https://fonts.googleapis.com/css2?family=Russo+One:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

html, body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  font-family: 'Russo One', sans-serif;
  color: #393939;
  font-size: 1rem;
  line-height: 1.6;
}

/**************************
  HEADER & NAVIGATION
***************************/
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  pointer-events: none;
}

.custom-logo {
  position: fixed;
  top: 16px;
  left: 30px;
  height: 48px;
  width: auto;
  z-index: 1000;
  display: block;
}

.mobile-hamburger {
  display: none;
  position: fixed;
  top: 20px; right: 20px;
  z-index: 1001;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
}

.mobile-hamburger span {
  width: 25px;
  height: 3px;
  background: #393939;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#menu ul {
  position: fixed;
  top: 0; right: 30px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

#menu ul li {
  margin: 0;
}

#menu ul a {
  font-family: 'Russo One', sans-serif;
  color: #393939;
  font-size: 1.15rem;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.125rem;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

#menu ul a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: #f89939;
  transition: width 0.4s ease;
}

#menu ul a:hover {
  color: #f89939;
}

#menu ul a:hover::before {
  width: 100%;
}

/**************************
  ANIMATED PAGE TITLE
***************************/
.page-main {
  min-height: auto;
  padding: 100px 6% 40px 6%;
  margin: 0;
  background: #f5f5f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 0;
}

.page-title {
  font-family: 'Russo One', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: #f89939 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  margin: 0 !important;
  padding-left: 16px;
  border-left: 4px solid #64c6c2;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInFade 1s ease-out 0.5s forwards;
}

@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/**************************
  CAREERS SECTION
***************************/
.careers-section {
  width: 100%;
  background: #f5f5f0;
  padding: 0;
  margin: 0;
}

.careers-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.careers-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 8%;
}

.careers-panel {
  width: 440px;
  max-width: 36%;
  background: rgba(248, 153, 57, 0.68);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  padding: 60px 45px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.careers-heading {
  font-family: 'Russo One', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 28px 0;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.careers-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  margin: 0 0 40px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.careers-contact {
  margin-top: 0;
}

.contact-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin: 12px 0;
  line-height: 1.6;
}

.email-link {
  color: #ffffff;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 500;
}

.email-link:hover {
  color: #ffe8cc;
  text-decoration: none;
}

.careers-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 15px;
  transition: all 0.3s ease;
  padding: 4px;
}

.careers-social-icon:hover {
  color: #ffe8cc;
  transform: scale(1.12);
}

.careers-social-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/**************************
  FOOTER
***************************/
.site-footer {
  margin-top: 60px;
  font-family: 'Russo One', sans-serif;
}

.footer-top-strip {
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, #64c6c2 0%, #ffffff 100%);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-main {
  background: #fff;
  padding: 0 0 2.5rem 0;
  border-top: none;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-company {
  flex: 0 0 auto;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin: 2rem 0 1.25rem 0;
  display: block;
}

.footer-column h4 {
  color: #393939;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  font-family: 'Russo One', sans-serif;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #393939;
  text-decoration: none;
  font-size: 1.05rem;
  font-family: 'Russo One', sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-menu a:hover {
  color: #f89939;
  transform: translateX(5px);
}

.footer-social {
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  color: #393939;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
  font-family: 'Russo One', sans-serif;
}

.social-icon:hover {
  color: #f89939;
  transform: scale(1.1);
}

.social-icon svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-text {
  font-size: 0.9375rem;
}

.footer-bottom {
  background: #f89939;
  padding: 5px 0;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 0;
  min-height: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
}

.copyright {
  font-family: 'Inter', sans-serif;
  color: #393939;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.0270rem;
  padding: 3px 0;
  margin: 0;
}

.footer-tagline-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-top: 1.25rem;
  font-style: italic;
  font-weight: 300;
  font-family: 'Russo One', sans-serif;
}

.footer-menus-group {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/**************************
  MEDIA QUERIES - DESKTOP
***************************/
@media screen and (min-width: 1024px) {
  .footer-content {
    align-items: flex-start;
    gap: 0;
  }

  .footer-company {
    flex: 0 0 370px;
    padding-right: 40px;
  }

  .footer-menus-group {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: flex-start;
  }

  .footer-menus-group .footer-column {
    flex: none;
    min-width: 0;
  }
}

/**************************
  MEDIA QUERIES - TABLET
***************************/
@media screen and (max-width: 1023px) {
  body {
    font-size: 0.9rem;
  }

  .custom-logo {
    left: 20px;
    height: 32px;
    top: 24px;
  }

  #menu ul {
    right: 20px;
    gap: 22px;
  }

  #menu ul a {
    font-size: 0.8125rem;
    letter-spacing: 0.09375rem;
  }

  .page-title {
    font-size: 2rem !important;
  }

  .careers-wrapper {
    height: 500px;
  }

  .careers-overlay {
    padding-left: 6%;
  }
  
  .careers-panel {
    width: 400px;
    max-width: 42%;
    padding: 50px 38px;
    background: rgba(248, 153, 57, 0.72);
  }
  
  .careers-heading {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
  
  .careers-description {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  
  .contact-text {
    font-size: 0.95rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.875rem;
    text-align: center;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
    text-align: center;
  }

  .footer-logo {
    max-width: 140px;
    margin: 0 auto 1.25rem auto;
    display: block;
  }

  .footer-menu a:hover {
    transform: translateX(0) scale(1.05);
  }

  .footer-menus-group {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    text-align: center;
    width: 100%;
  }

  .footer-menus-group .footer-column {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

/**************************
  MEDIA QUERIES - MOBILE
***************************/
@media (max-width: 600px) {
  .mobile-hamburger {
    display: flex;
  }

  #menu ul {
    display: none;
  }

  body.mobile-menu-open body::before,
  body.mobile-menu-open .custom-logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-hamburger {
    z-index: 9999;
  }

  body.mobile-menu-open #menu ul {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.875rem;
    margin: 0;
    padding: 0;
  }

  body.mobile-menu-open #menu ul a {
    font-family: 'Russo One', sans-serif;
    font-size: 1.875rem;
    padding: 1.125rem 1.25rem;
    color: #393939;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
  }

  body.mobile-menu-open #menu ul a:hover {
    background: rgba(248, 153, 57, 0.1);
    color: #f89939;
    transform: scale(1.05);
  }

  body.mobile-menu-open #menu ul a::before {
    display: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .page-main {
    padding: 80px 5% 30px 5%;
  }
  
  .page-hero {
    margin-bottom: 0;
  }
  
  .page-title {
    font-size: 1.75rem !important;
    padding-left: 12px;
    border-left-width: 3px;
  }

  .careers-wrapper {
    height: auto;
    min-height: 500px;
  }

  .careers-overlay {
    position: relative;
    padding: 50px 5%;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .careers-panel {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 40px 28px;
    background: rgba(248, 153, 57, 0.88);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
  }
  
  .careers-heading {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
  
  .careers-description {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .contact-text {
    font-size: 0.9rem;
    margin: 10px 0;
  }
  
  .careers-social-icon svg {
    width: 36px;
    height: 36px;
  }
}

/**************************
  MEDIA QUERIES - SMALL MOBILE
***************************/
@media screen and (max-width: 480px) {
  body::before {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .custom-logo {
    top: 21px;
    left: 15px;
    height: 28px;
  }

  .page-main {
    padding: 60px 3% 15px 3%;
  }
  
  .page-title {
    font-size: 1.5rem !important;
    padding-left: 10px;
    border-left-width: 3px;
    letter-spacing: 0.1em !important;
  }

  .careers-wrapper {
    min-height: 450px;
  }

  .careers-overlay {
    padding: 40px 4%;
  }
  
  .careers-panel {
    padding: 35px 24px;
  }
  
  .careers-heading {
    font-size: 2rem;
    margin-bottom: 18px;
    letter-spacing: 0.06em;
  }
  
  .careers-description {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 26px;
  }
  
  .contact-text {
    font-size: 0.88rem;
  }
  
  .careers-social-icon svg {
    width: 34px;
    height: 34px;
  }
}

