/* Landing*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Merriweather", "Georgia", serif;
}

body {
  background: #fff;
  color: #333;
}

.logo img {
  height: 40px;  
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ff6521;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #ff6521;
}
.nav-links a:hover::after {
  width: 100%;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px;
}
.hero-right {
  max-width: 500px;
}
.hero-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.hero-right p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.btn {
  background: #f97316;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
.btn:hover {
  background: #ea580c;
  scale: 1.05;
}

.popular {
  text-align: center;
  margin: 60px 0;
  color: #FF6521;
}
.popular-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.popular-grid img {
  width: 140px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}
.popular-grid img:hover {
  scale: 1.05;
  cursor: pointer;
}

/* New Jobs */
.new-jobs {
  text-align: center;
  margin: 80px 0;
  color: #FF6521;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom, sesuai gambar */
  gap: 60px 60px; /* jarak antar kartu (vertical 40px, horizontal 60px) */
  margin-top: 40px;
  padding: 0 100px;
  align-items: center;
  justify-items: center;
}
.job-card {
  display: flex; 
  align-items: center;
  gap: 20px; /* jarak gambar dan teks */
  max-width: 450px;
}

.job-card img {
  width: 150px;     /* ukuran gambar tetap */
  height: 100px;    /* biar seragam */
  border-radius: 12px;
  object-fit: cover;
}
.job-card-text {
  display: flex;           /* WAJIB ada */
  flex-direction: column;  /* susun vertikal */
  justify-content: center; /* tengah vertikal */
  color: #000;
}
.job-card-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.job-card-text p {
  font-size: 14px;
  margin: 0;
}


.job-card:hover {
  scale: 1.05;
  cursor: pointer;
}/*Exit Landing*/


  
footer {/* All Footer */
  background: #ffffff;
  padding: 40px 60px;
  margin-top: 60px;
}
.footer-logo {
  height: 45px;    /* atur sesuai kebutuhan */
  width: auto;
  margin-bottom: 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}
.footer-left h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-right {
  display: flex;
  gap: 50px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #FF6521;
}
.footer-col p {
  font-size: 14px;
  margin: 20px 0;
}
.footer-col p:hover {
  color: #FF6521;
  cursor: pointer;
}
.footer-socials {
  width: 100%;
  margin-top: 40px;
  justify-content: flex-end;
  display: flex;
  gap: 25px; 
  padding-left: 80%;
}/*Exit Footer*/

@media (max-width: 992px) { /*Media Query Landing*/

  /* ===== Navbar ===== */
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  /* ===== Hero Section ===== */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-left img {
    width: 80%;
    margin-bottom: 20px;
  }

  .hero-right {
    width: 100%;
  }

  .hero-right h2 {
    font-size: 20px;
  }

  .hero-right p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* ===== Popular Jobs ===== */
  .popular-grid {
    display: flex;               /* ubah jadi flex agar tersusun vertikal */
    flex-direction: column;      /* atur vertikal */
    align-items: center;         /* rata tengah */
    gap: 20px;                   /* jarak antar gambar */
    padding: 0 30px;
  }

  .popular-grid img {
    width: 80%;                  /* biar tidak terlalu lebar di HP */
    height: auto;
    border-radius: 12px;
  }

  /* ===== New Jobs ===== */
  .jobs-grid {
    display: flex;               /* ubah jadi flex juga */
    flex-direction: column;      /* susun ke bawah */
    align-items: center;
    gap: 30px;
    padding: 0 30px;
  }

  .job-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }

  .job-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .job-card-text h3 {
    font-size: 16px;
  }

  .job-card-text p {
    font-size: 13px;
  }

  /* ===== Footer ===== */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left img {
    width: 100px;
  }

  .footer-right {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-col p {
    margin: 6px 0;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-left: 0;
  }

  .footer-socials img {
    width: 25px;
  }

  .footer-line {
    margin-top: 20px;
    width: 100%;
  }
} /* Penutup Query Landing*/


section { /* Lowongan Pekerjaan*/
  text-align: center;
  padding: 50px 5%;
}

h2 {
  color: #ff6600;
  font-weight: bold;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.brand-logos img {
  height: 60px;
  transition: transform 0.3s ease;
}
.brand-logos img:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 120px; /* jarak vertikal 30px, horizontal 40px */
  margin: 40px auto;     /* tengah secara horizontal */
  max-width: 1100px;     /* batasi lebar total agar simetris */
  text-align: center;
  padding: 10px 20px;    /* beri sedikit padding agar tidak nempel */
}

.job-card {
  background: none;
  border-radius: 15px;
  padding: 25px 40px;
  text-align: left;
  list-style: none;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.job-card a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  background: none;     /* pastikan gak ada background lagi */
  box-shadow: none;     /* hapus shadow ganda */
  padding: 20px 25px;           /* biar gak ada jarak tambahan */
}
.job-card a:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}


.job-card img {
  width: 160px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-sizing: border-box;
}

.job-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.3;
}

.job-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

.more-jobs {
  text-align: right;
  margin-top: 40px;
}
.more-jobs a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
} /* penutup Lowongan Pekerjaan*/

.job-detail-card { /* bagian gambar dalam loker */
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  max-width: 1350px;
  transition: transform 0.3s ease;
  margin-left: 100px;
}

.job-detail-card:hover {
  transform: scale(1.02);
  transition: 0.3s ease-in-out;
}

.job-image img {
  width: 600px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.job-info {
  padding: 30px 40px;
  flex: 1;
}

.job-title {
  font-size: 28px;
  color: #FF6521;
  font-weight: bold;
  text-align: left;
}

.job-type {
  color: #999;
  margin-top: 4px;
  font-style: italic;
  text-align: left;
}

.job-company {
  font-weight: bold;
  margin: 10px 0 15px;
  font-size: 16px;
  text-align: left;
}

.job-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.job-criteria {
  margin-top: 15px;
}

.job-criteria h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.job-criteria ul {
  margin-left: 20px;
  text-align: left;
}

.job-criteria li {
  margin-bottom: 6px;
  font-size: 14px;
}

.more-info {
  margin-top: 15px;
  font-size: 15px;
  color: #FF6521;
  text-align: left;
} /*  penutup bagian gambar dalam loker */

.chat-link { /*bagian dalam detail loker */
  color: #FF6521;
  text-decoration: underline;
  font-style: italic;
}

.chat-link:hover {
  color: #ea580c;
}

.apply-btn {
  margin-top: 20px;
  background: #FF6521;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #ea5a0ce5;
}

/* Responsif */
@media (max-width: 768px) {
  .job-detail-card {
    flex-direction: column;
    max-width: 600px;
    margin-right: 100px;
  }

  .job-image img {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }

  .job-info {
    padding: 20px;
  }

  .job-title {
    font-size: 22px;
  }

  .apply-btn {
    width: 100%;
  }
} /* bagian dalam setail loker */

/* Ubisoft */
.jobs {
  padding: 40px 10%;
}

.jobs h2 {
  color: #ff6600;
  font-weight: 800;
  margin-bottom: 30px;
}

.job {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 50px;
  text-align: left;
}

.job img {
  width: 320px;
  border-radius: 12px;
  object-fit: cover;
}

.job-info h3 {
  color: #ff6600;
  font-weight: 700;
}

.remote {
  font-style: italic;
  color: #666;
  font-size: 14px;
  margin: 5px 0;
}

button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 370px;
  margin-top: 100px;
}

button:hover {
  background: #e55700;
}
.job img {
  width: 400px;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Garis bawah animasi */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ff6521;
  transition: width 0.3s ease;
}

/* Efek hover */
.nav-links a:hover {
  color: #ff6521;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Tambahan untuk search bar */
.search-bar input {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.search-bar input:focus {
  box-shadow: 0 0 8px rgba(255, 101, 33, 0.4);
  border-color: #ff6521;
}
.logo img {
    width: 90px;
}

.search-bar input {
    width: 250px;
    padding: 6px 10px;
    border: 1px solid #aaa;
    border-radius: 20px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
#menuToggle
{
  display: block;
  position: absolute;
  top: 27px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #fff;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

.burger-lines span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 1.5px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.burger-lines span:first-child
{
  transform-origin: 0% 0%;
}

.burger-lines span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ .burger-lines span:nth-child(1) {
  opacity: 1;
  transform: rotate(45deg) translate(0px, -5px);
  background: #232323;
}

#menuToggle input:checked ~ .burger-lines span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ .burger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -1px);
}

.burger-lines input:checked:hover ~  span {
  background: white;
}

#menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 300px;
  height: 150vh;
  margin-top: -50px;
  margin-right: -50px;
  padding: 80px 30px;
  background: #f15a24;
  box-sizing: border-box;
  overflow-y: auto;
  list-style: none;
  transform: translateX(100%); 
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  visibility: hidden; 
  opacity: 0;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.4s ease,
    visibility 0s linear 0.5s;
}


#menuToggle input:checked ~ ul {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition:
    transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.4s ease,
    visibility 0s;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}



