/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto Condensed', sans-serif; background: #000; color: #fff; }

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px; /* reduce top space */
  background: #000; /* keep dark header */
  position: fixed; /* make it stick like Levergy */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.logo-img {
  height: 90px; /* shrink logo if needed */
  width: 225px;
}
/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-links {
  display: flex;
  gap: 25px; /* spacing between nav links */
  align-content: center;
}
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials a {
  color: white;
  margin-left: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}
.socials a:hover {
  color: #f4c542; /* gold hover */
}
/* Push socials far to the right with a big gap */
.nav .socials {
  margin-left: 80px;  /* ✅ adjust this value for bigger or smaller gap */
  display: flex;
  gap: 15px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
.nav a.active { border-bottom: 2px solid #b39203; }

/* Dropdown desktop */
.nav-item { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  padding: 20px 0;
  min-width: 180px;
  z-index: 999;
}
.submenu a {
  display: block;
  padding: 14px 15px;
  color: #fff;
  text-decoration: none;
}
.submenu a:hover {
  background: #111;
}
.nav-item:hover .submenu {
  display: block;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.vacancy-section {
  background: #000;
  color: #fff;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 80px;
}

.vacancy-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: start;
}

/* Left form */
.vacancy-form {
  background: #111;
  padding: 30px;
  border-radius: 10px;
}

.vacancy-form h2 {
  margin-bottom: 20px;
  color: #d4af37; /* gold accent */
}

.vacancy-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vacancy-form input,
.vacancy-form select {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.vacancy-form button {
  background: #d4af37;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.vacancy-form button:hover {
  background: #b8942c;
}

/* Right info */
.vacancy-info h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #fff;
}

.vacancy-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.vacancy-info a {
  color: #d4af37;
  text-decoration: underline;
}

.status-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
}

.status-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}


/* Footer */
.footer {
  background-color: #161616; /* black background */
  color: #fff; /* white text */
  padding: 20px 60px 15px;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 equal columns */
  gap: 40px;
  margin: 0 auto 40px;
  max-width: 1200px;   /* keeps group centered */
  text-align: center;  /* centers everything inside */
}

.footer-column {
  text-align: center;  /* centers each column’s content */
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  text-align: left; /* centers list items */
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #c4c4c4; /* hover grey */
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid #fff;
  padding-top: 20px;
  display: flex;
  justify-content: center; /* center aligns the ©, cookies, etc. */
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/* === Responsive Vacancy Layout === */
@media (max-width: 768px) {
  .vacancy-container {
    display: flex;
    flex-direction: column;
  }

  .vacancy-form {
    order: 1;
    width: 100%;
  }

  .vacancy-info {
    order: 2;
    margin-top: 20px;
    width: 100%;
  }
}


/* Hide nav by default on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav a, .submenu a {
    font-size: 18px;
    color: #fff;
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Dropdowns in mobile */
  .nav-item .submenu {
    position: relative;
    top: 0;
    left: 0;
    background: none;
    display: none;
    padding-left: 15px;
  }

  .nav-item.active .submenu {
    display: flex;
    flex-direction: column;
  }

  /* ✅ Fix socials: bottom-left inside nav */
  .socials {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: row; /* keep horizontal */
    gap: 20px;
  }

  /* Make hero and sections scroll nicely */
  section {
    padding: 100px 20px;
  }
}

/* === Responsive Footer === */
@media (max-width: 1024px) {
    .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav a, .submenu a {
    font-size: 18px;
    color: #fff;
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Dropdowns in mobile */
  .nav-item .submenu {
    position: relative;
    top: 0;
    left: 0;
    background: none;
    display: none;
    padding-left: 15px;
  }

  .nav-item.active .submenu {
    display: flex;
    flex-direction: column;
  }

  /* ✅ Fix socials: bottom-left inside nav */
  .socials {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: row; /* keep horizontal */
    gap: 20px;
  }

  /* Make hero and sections scroll nicely */
  section {
    padding: 100px 20px;
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}
