/* font */
body {
  font-family: "Poppins", sans-serif;
  --bs-body-font-family: "Poppins", sans-serif;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 200; /* Regular */
}

.nav-link.active {
  --bs-navbar-active-color: #efe8db;
}

.navbar {
  --bs-navbar-padding-y: 1rem;
}

.nav-link {
  color: #a8bfaa; /* 기본 메뉴 색상 */
}

.nav-link:hover {
  color: #efe8db; /* 마우스를 가져다 댔을 때 색상 */
}

.dropdown-menu {
  border: none;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  left: auto;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    left: auto;
    border: none;
  }

  .nav-item.dropdown .dropdown-menu.show {
    display: block;
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    left: auto;
    margin-top: 0;
  }
}

.dropdown-item {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23EFE8DB' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

span.navbar-toggler-icon {
  width: 17px;
  height: 17px;
}

button.navbar-toggler {
  font-size: 0px;
  padding: 8px 12px;
}

.navbar-toggler {
  --bs-border-width: none;
  --bs-navbar-toggler-focus-width: none;
}

.main-clip {
  height: 60vh;
  position: relative;
}
@media (max-width: 768px) {
  .main-clip {
    height: 40vh;
  }
}

.clip-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #efe8db;
  font-size: 2em;
  text-align: center;
  pointer-events: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  animation: fadeIn 2s ease-in-out; /* 애니메이션 적용 */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo_circle {
  width: 20%;
}
@media (max-width: 768px) {
  .logo_circle {
    width: 40%;
  }
}

#backToTop {
  display: none; /* 기본적으로 숨김 */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #124734;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}
#backToTop:hover {
  background-color: #555;
}

.clip_web {
  display: block;
}
.clip_mobile {
  display: none;
}
@media (max-width: 768px) {
  .clip_web {
    display: none;
  }
  .clip_mobile {
    display: block;
  }
}
