@charset "utf-8";

@font-face {
  font-family: 'Pretendard';
  src: url('../font/Pretendard/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: black;
  color: white;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
main {
  flex: 1 !important;
}

.padding-container{
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important; 
}

.sub-title{
  padding: 0.5rem 1rem;
  border: 2px solid white;
  border-radius: 30px;
  z-index: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.cutting-line {
  background-color: black;
  height: 80px;
}

.custom-color-orange{
  color: #FFBE63;
}

  .nav-link {
    position: relative;
    color: #C2C2C2 !important;
    font-size: 18px;
    font-weight: bold;
    padding: 0 !important;
    text-decoration: none !important;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    /* 텍스트 바로 아래 */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .nav-link:hover {
    color: white !important;
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }

  @media screen and (max-width: 768px) {
    .breadcrumb-bottom-nav li {
    padding: 0 !important;
    }
  }