@import url(./color.css);
@import url(./font.css);
/*공통영역*/

* {
  margin: 0px;
  padding: 0px;
  font-family: "KOTRA_GOTHIC";
}
html {
  scroll-behavior: smooth;
}
.wrap {
  width: 100%;
  position: relative;
}

.inner {
  width: calc(100% - 480px);
  max-width: 1440px;
  position: relative;
  margin: auto;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: var(--black);
}

.hidden {
  width: 0px;
  height: 0px;
  border: none;
  outline: none;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

/*header*/
#header {
  width: 100vw;
  position: fixed;
  z-index: 9999;
  top: 0px;
  transition: background-color 0.3s ease-in-out;
  left: 0px;
  background-color: var(--white);
}

#header.active {
  background-color: transparent;
}

.header .inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 50px;
}

#header.active .header-logo {
  width: 250px;
}

#header.active .header-center {
  height: auto;
  position: absolute;
  top: 100px;
  left: 50%;
  font-size: 84px;
  color: var(--white);
  transform: translateX(-50%);
}

#header.active .header-center span {
  display: block;
  margin: 0px 24px;
}

#header.active .icon-play {
  color: var(--white);
}

.header-center {
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  color: #000;
  justify-content: center;
}
.header-center span {
  display: none;
}
.mobile-show {
  display: none;
}
.header-left,
.header-right {
  width: calc((100% - 250px) / 2);
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.icon-play {
  color: #000;
  transition: all 0.3s ease;
}

.header-left {
  justify-content: left;
}

.header-right {
  justify-content: right;
}
.header-link {
  color: #000;
  transition: color 0.3s ease-in-out;
}
#header.active .header-link {
  color: var(--white);
}

footer {
  padding: 30px 0px;
  background-color: #000;
}
.footer-logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}
.footer-text {
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
}

footer .inner {
  display: flex;
  justify-content: space-between;
}

.footer-title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.music-control-container {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.music-control {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  padding: 5px;
}

.music-control .icon-pause {
  display: none;
}

.music-control.music-playing .icon-play {
  display: none;
}

.music-control.music-playing .icon-pause {
  display: inline;
}