@charset "utf-8";

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

}

.popup {
  position: fixed;
  width: 440px;
  height: 250px;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  font-size: 24px;
  z-index: 99999999999999999;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, .5);
  line-height: 1.75;
}

.close {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  position: absolute;
  right: 20px;
  top: 170px;
  z-index: 999999999999999;
}

/* 수정 */

.df {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utils {
  display: flex;
  align-items: center;
  gap: 30px;
  /* 아이콘 간 간격 */
  font-size: 25px;
  color:white;

}

nav {
  background: transparent;
  /* 완전 투명 */
  transition: background 0.3s;
  max-width: 1000px;
  width: 80%;
  margin: auto;
}

.lotteinovate {

  color: rgb(0, 0, 0);
  position: absolute;
  left: 90px;
  top: 20px;
  font-size: 20px;
  font-weight: 600;

}

header {
  position: absolute;
  left:0;
  right:0;
  top:0;
  height: 50px;
  z-index: 999999999;
  padding:0 2vw;
}

header>.df {
  height: 50px;
}

.gnb {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.gnb>li {
  width: 30%;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  text-align: center;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.dep2 li {
  width: calc(100%/5);
  text-align: center;
}

.dep2 li.title a {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.dep2 li:hover .title a {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.dep2 {
  height: 0;
  overflow: hidden;
  position: relative;
  z-index: 55574477;
  transition: height 0.5s;
}

.gnb:hover .dep2 {
  height: 500px;
}

.w100 {
  transition: height 0.5s;
  height: 0px;
  left: 0;
  right: 0;
  position: absolute;
  top: 50px;
  z-index: 55555;
}

/* 수정 */
.on.w100 {
  height: 35vh;
  background-color: rgba(255, 255, 255, 0.85);
}

.hero {
  position: relative;
  width: 100%;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.section {
  padding: 80px 20px;
  text-align: center;
  align-items: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}


.card {
  position: relative;
  width: 100%;
  /* max-width: 1000px; */
  margin: 0 auto;

  overflow: hidden;
  /* 이미지가 넘치지 않게 */
}

.bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  display: block;

}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
}

.gray {
  color: #ccc;
}

.white-bold {
  color: white;
  font-weight: 700;
}

.bracket {
  color: #e74c3c;
  font-weight: 700;
}

.text-overlay h1 {
  font-size: 79px;
  margin: 0 0 16px;
  width: 1200px;
}

.text-overlay p {
  font-size: 20px;
  line-height: 1.5;
}

.search-area {
  max-width: 1000px;
  margin: 100px auto;
  text-align: center;
  color: #333;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 500;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid #d62c1a;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding-bottom: 10px;
}

.material-symbols-outlined {
  position: absolute;
  top: 3730px;
  right: 435px;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 28px;
  color: #333;
  text-align: left;
  padding: 5px;
  background: transparent;
}

.search-box input::placeholder {
  color: #ccc;
}

.search-box button {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.suggestions {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.suggest-label {
  font-size: 18px;
  margin-right: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tag {
  padding: 10px 18px;
  border: 1px solid #eee;
  border-radius: 30px;
  font-size: 16px;
  background: #fff;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.tag:hover {
  background: #f52020;
}

.news-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
}

.news-card {
  min-width: 240px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background: #f9f9f9;
}

.recruit-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  background-image: url(../image/bg-recruit.jpg);
  width: 100vw;
  height: 100vh;
  align-items: center;
}

.recruit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 250px;
  height: 300px;
  text-align: center;
  transform: translateY(-50%);
  padding: 40px 20px;
  position: relative;

  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.recruit-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.recruit-card .title {
  font-size: 22px;
  font-weight: 700;
}

.recruit-card:hover {
  background: #d62c1a;
  color: white;
  transform: translateY(-5px);
}


/* .recruit-section {
  background: linear-gradient(to top, #e0f7fa, #fff);
  padding: 60px 20px;
}

.recruit-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  margin-left: 852px;
  justify-content: center;
}

.recruit-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.recruit-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 180px;
  text-align: center;
} */

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
}