@charset "utf-8";
/* font */
@import url("/css/font.css");

/* 초기화 */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial',sans-serif;
  background-color: rgba(0, 0, 0, 0);
  color: #333;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
img {
  vertical-align: top;
}
/* 공통클래스 */
#wrap {
  width: 100%;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;   
}
.section {
  padding: 100px 0;
}
.bg-line {
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 0;
}
.bg-line span {
  display: inline-block;
  width: 16.666%;
  height: 100%;
  border-right: 1px solid #ececec;
}

/* header */
.header {
  position: absolute;
  position: fixed;
  background-color: rgb(41, 41, 41);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header .container .logo {
  width: 60px;
  height: 60px;
}
.header .container .logo img {
  width: 100%;
  height: 100%;
  display: block;
}
.header .container nav {}
.header .container nav ul {
  display: flex;
  gap: 30px;
}
.header .container nav ul li {}
.header .container nav ul li a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #fff;
  transition: color 0.3s ease;
}
/* main */
.main {}

/* visual */
.visual {
  padding-top:80px;
  width: 100%;  
  height: 100vh;
  position: relative;
}
.visual .background-text {
  font-size: 200px;
  font-weight: 600;
  color: #ccc;
  line-height: 0.8;
  position: absolute;    
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;   
  z-index: 1;
  white-space: nowrap;
  opacity: 0.2;
}
.visual .container {
  display:flex;
  justify-content: space-between;
  height: calc(100% - 80px);
}
.visual .left-side {   
  width: 50%;
  padding-top: 80px;
  position: relative;
  z-index: 10;   
}
.visual .left-side .title-box {
  position: absolute;
  top: 30%;
  left: 20%;
  transform: translateY(-50%);
  text-align:center;
}
.visual .left-side .subtitle {
  font-size: 90px;
  font-weight: 300;      
  position: absolute;
  font-family: 'Great',sans-serif;
  top: -70px;
  z-index: 4;
  color:#be9b71;
}
.visual .left-side .title {
  font-size: 130px;  
  right: 18%;  
  line-height: 0.8;
  color: #464646;  
  position: relative;
  z-index: 5;
}
.visual .gallery {   
  position: relative;  
  width: 50%;
  height: 100%;   
}
.visual .gallery-grid {    
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3,1fr);
  gap: 10px;
  border: 1px solid #333;
  padding: 10px;
  width: 100%;
  height: 100%;
  overflow:hidden;
  aspect-ratio: 1;    
}
.visual .gallery-grid .gallery-item { 
  position: relative;
}
.visual .gallery-grid .gallery-item:hover {
  transform: translateY(-5px);
  padding: 10px 0;
}
.visual .gallery-grid .gallery-item:nth-child(1){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(2){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(3){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(4){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(5){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(6){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(7){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover}
.visual .gallery-grid .gallery-item:nth-child(8){
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.visual .gallery-grid .gallery-item:nth-child(9){background:url('../image/visual/KakaoTalk_20250811_145342944.jpg') no-repeat center top/cover} 
.visual .gallery-grid .gallery-item p {
  font-size: 16px;
  line-height: 1.4;
  color: #666;
  text-align: center;
  margin: 0;
}

/* about */
.about {
  width: 100%;
  position: relative;  
  display: flex;
  align-items: center;
}
.about .container {
  width: 100%;
}
.about .about-title {
  text-align: center;
}
.about .about-title h2 {
  font-family: 'Bar', sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #333;
  letter-spacing: 4px;
  margin-bottom: 30px;
}
.about .about-box {
  display: flex;
}
.about .about-box .left-circle {
  width: 50%;
  height: 600px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about .about-box .left-circle .circle-large {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .about-box .left-circle .circle-large > * {
  position: relative;
  z-index: 1;
}
/* 배경 회전 키프레임 */
@keyframes spin-bg {
  to { transform: rotate(360deg); }
}
.about .about-box .left-circle .circle-large::before {
  content:'';
  position: absolute;
  inset: 0;
  background:url(../image/about/KakaoTalk_20250821_114558569.jpg)no-repeat center center/cover;
  border-radius: 50%;
  transform-origin: 50% 50%;
  animation: spin-bg 20s linear infinite;
}
.about .about-box .left-circle .circle-large .circle-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url(../image/about/KakaoTalk_20250821_114558569.jpg) no-repeat center center/cover;
  transform-style: preserve-3d;
  animation: spinFlip 8s 1s linear infinite;
}

@keyframes spinFlip {
  0%   { transform: translate(-50%,-50%) rotate(0deg)   rotateY(0deg); }
  25%  { transform: translate(-50%,-50%) rotate(360deg) rotateY(0deg); }
  50%  { transform: translate(-50%,-50%) rotate(360deg) rotateY(0deg); }
  75%  { transform: translate(-50%,-50%) rotate(360deg) rotateY(360deg); }
  100% { transform: translate(-50%,-50%) rotate(720deg) rotateY(360deg); }
}
.about .about-box .left-circle .circle-large .circle-small .circle-text {
  width: 100%;
  position:relative;
  text-align: center;
}
.about .about-box .left-circle .circle-large .circle-small .intro {
  color: #f8f8f8;
  font-size: 18px;
  margin-bottom: 10px; 
  text-align: center;
  align-items: center;
}
.about .about-box .left-circle .circle-large .circle-small .myname {
  color: #f8f8f8;
  font-size: 16px;
  text-align: center;
  align-items: center;
}
.about .about-box .left-circle .circle-large .circle-small .date {
  color: #f8f8f8;
  line-height: 30px;
  font-size: 16px;
  text-align: center;
  align-items: center;
}
.about .about-box .left-circle .circle-large .circle-small span {
  width: 10%;
  border: 1px solid #f8f8f8;
  display: block;
  margin: 25px auto;
  align-items: center;
  opacity: 0.9;
}
.about .about-box .left-circle .circle-large ul {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50px;
  z-index: 3;
}
.about .about-box .left-circle .circle-large ul li {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
} 
.about .about-box .left-circle .circle-large ul li:nth-child(1){
  top: 5%;
  left: 87%;
}
.about .about-box .left-circle .circle-large ul li:nth-child(2){
  top: 25%;
  left: 99%;
}
.about .about-box .left-circle .circle-large ul li:nth-child(3){
  top: 50%;
  left: 102%;
}
.about .about-box .left-circle .circle-large ul li:nth-child(4){
  top: 75%;
  left: 94%;
}
.about .about-box .left-circle .circle-large ul li a .img-box {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.8);
  transition: all 0.4s ease;
}
.about .about-box .left-circle .circle-large ul li a .img-box img {
  width: 100%;
}
.about .about-box .left-circle .circle-large ul li span {
  position: absolute;
  left: calc(100% + 15px);
  color: #666;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  white-space: nowrap;
}
.about .about-box .left-circle .circle-large ul li:hover span {
  opacity: 1;
  visibility: visible;
}
.about .about-box .left-circle .circle-large ul li a:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0);
}
.about .about-box .left-circle .circle-large ul li a:hover::after {
  opacity: 1;
  visibility: visible;
}
.about .about-box .right-square {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
 
  margin: 55px 30px; 
}
.about .about-box .right-square .small-square {
  padding: 20px;
  background: #fff;
  align-items: center;  
}
.about .about-box .right-square .small-square h2 {
  font-family: 'Great', sans-serif;
  font-weight: 400;
  text-align: center;
}
.about .right-square .small-square .pen {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.about .about-box .right-square .small-square .name-pen {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
.about .about-box .right-square .small-square .name-pen p {
  line-height: 1.7;
  font-size: 16px;
  margin: 10px 0; 
}
.about .about-box .right-square .small-square .name-pen p span {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.about .about-box .right-square .small-square .name-pen p span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #be9b71, #d4af84);
  border-radius: 3px;
  transition: width 2s ease;
}
.about .about-box .right-square .small-square .barcode {
  width: 70px;
  height: 70px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .about-box .right-square .small-square .barcode img {
  margin-top: 20px;
  width: 100%;
  height: 100%;
}

/* design */
.design {
  width: 100%;
  position: relative;  
}
.design .container {
  display: flex;
  position: relative;
  z-index: 10;
}
.design .back-text {
  position: relative;    
  top: 40px;
  opacity: 0.2;
  z-index: -1;
}
.design .back-text p {
  font-size: 200px;
  font-weight: 600;
  line-height: 1;
  color: #ccc;
  position: absolute;
  left: 50%;
  transform: translateY(-50%);
}
.design .project-content {
  display: flex;
  width: 100%;
}
.design .project-content .left-design {
  width: 30%;   
  position: relative;
  z-index: 100;
}
.design .project-content .left-design .main-title h2 {
  font-family: 'Bar', sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #333; 
  margin-bottom: 45px;
}
.design .project-content .left-design .main-title h2 span {
  display: block;
}
.design .project-content .left-design .main-title p {
  font-size: 20px;
  font-weight: 400;
  color: #767676;
  margin-bottom: 75px;
}
.design .project-content .left-design .design-button {
  display: flex;
  position: relative;
  overflow: hidden;
} 
.design .project-content .left-design .design-button .view-more-btn {
  display: flex;
  position: relative;
  width: 200px;
  height: 44px;
  padding: 0px 15px;
  border: 1px solid #333;
  background: transparent;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.design .project-content .left-design .design-button .view-more-btn:hover {
  background: #0a0a0a;
}
.design .project-content .left-design .design-button .view-more-btn span {
  display: inline-block;
  color: #333;
  top: 10px;
  z-index: 103;
  position: absolute;
}
.design .project-content .left-design .design-button .view-more-btn span:hover {
  color: #fff;
}
.design .project-content .left-design .nav-button {
  display: flex;
  gap: 10px;
  position:absolute;
  left: 50%;
  transform: translateY(-50%);
  margin: 0 10px 0 28px;
  top: 22px;
}
.design .project-content .left-design .nav-button button {
  width: 40px;
  height: 40px;
  border: 1px solid rgb(80, 80, 80);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.design .project-content .left-design .nav-button button:hover {
  color: #ccc;
}
.design .project-content .left-design .nav-button img {
  width: 100%;
  height: 100%;
}
.design .project-content .right-slide {
  width: 65%;
  position: relative;
  z-index: 2;
}
.design .project-content .right-slide .pro-box {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding-bottom: 50px;
  z-index: 1;
}
.design .project-content .right-slide .pro-box .swiper-slide {
  padding: 25px 0 25px 40px;
  transition: all 0.5s ease;
  height: 100%;
}
.design .project-content .right-slide .pro-box .swiper-slide-active {
  padding: 0;
}
.design .project-content .right-slide .pro-box .swiper-slide .project-item {
  background: #fff;
  overflow: hidden;
}
.design .project-content .right-slide .pro-box .swiper-slide .project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.design .project-content .right-slide .pro-box .swiper-slide .sub-text {
  padding: 20px 0;
  opacity: 0;
  transition: 0.5s;
}
.design .project-content .right-slide .pro-box .swiper-slide-active .sub-text {
  opacity: 1;
}
.design .project-content .right-slide .pro-box .swiper-slide .sub-text p {
  font-size: 18px;
  color: #2e2e2e; 
}

/* scrollbar */
.design .project-content .right-slide .swiper-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;     
  width: 100%;
  --swiper-scrollbar-size: 4px;
  margin: 0;            
}

/* work */
.work {
  width: 100%;
  position: relative;
}
.work::before {
  content: '';
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  background: #a9a9a9;
  width: 50%;
  height: 100%;
}
.work .container {
  width: 100%;
}
.work .work-title {
  text-align: center;
}
.work .work-title h2 {
  font-family: 'Bar', sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}
.work .work-list {
  display: block;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 65px;
}
.work .work-list ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.work .work-list ul li {
  position: relative;
  align-items: center;
}
.work .work-list ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #333;
  transition: all 0.3s ease;
}
.work .work-list ul li a .list-img {
  width: 60px;
  height: 60px;
  padding: 10px 10px;
  border-radius: 50%;
  background-color: #767676;
  transition: all 0.4s ease;
}
.work .work-list ul li a .list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work .work-album {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 45px;
  margin: 0 20px;
}
.work .work-album .album-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.work .work-album .album-box .album-list {
  position: relative;
  width: 450px;
  height: 450px;
}
.work .work-album .album-box .album-list .cover-box {
  width: 100%;
  height: 100%;
  position: absolute; 
  z-index: 2;
  transition: all 0.6s ease;
}
.work .work-album .album-box .album-list .cover-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work .work-album .album-box .album-list .cd-box {
  position: absolute;
  top: 30px;
  right: -35%;
  width: 400px;
  height: 400px;
  animation: rotate_image 4s;
  animation-iteration-count: infinite;
  transition: 0.5s;
}
.work .work-album .album-box .album-list .cd-box:hover {
  right: -50%;
  animation-play-state: paused;
}
@keyframes rotate_image {
    100% {
      transform: rotate(360deg);
  }
}
.work .work-album .album-box .album-list .cd-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work .work-album .album-box .dtail-page {
  width: 50%;
  padding: 0 50px;
  justify-content: center;
  align-items: center;
}
.work .work-album .album-box .dtail-page .cover-title {
  margin-bottom: 40PX;
}
.work .work-album .album-box .dtail-page .cover-title .cover-text {
  line-height: 1.8;
}
.work .work-album .album-box .dtail-page .cover-title .cover-text h2 {
  font-size: 30px;
  font-weight: 300;
  color: #333;
  margin-bottom: 25px;

}
.work .work-album .album-box .dtail-page .cover-title .cover-text p{
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;

}
.work .work-album .album-box .dtail-page .cover-title .cover-text .p-cor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
}
.work .work-album .album-box .dtail-page .cover-title .cover-text .p-cor span:first-child {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
.work .work-album .album-box .dtail-page .cover-title .cover-text .p-cor span:nth-child(2) {
  width: 22px;
  height: 22px;
  /* background: #FF281E; */
  background: var(--bg1);
  display: inline-block;
}
.work .work-album .album-box .dtail-page .cover-title .cover-text .p-cor span:nth-child(3) {
  width: 22px;
  height: 22px;
  background: var(--bg2);
  display: inline-block;
}
.work .work-album .album-box .dtail-page .cover-title .cover-text .p-cor span:nth-child(4) {
  width: 22px;
  height: 22px;
  background: var(--bg3);
  display: inline-block;
}
.work .work-album .album-box .dtail-page .bottom-box {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;

}
.work .work-album .album-box .dtail-page .bottom-box p {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* contact */
.contact {
  background:rgb(41, 41, 41);
  padding: 80px 0;
}
.contact .container {}
.contact .contact-box {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin: 20px 30px;
}
.contact .contact-box .contact-left {
  width: 30%;
}
.contact .contact-box .contact-left img {
  width: 100px;
  height: 100px;
}
.contact .contact-box .contact-center {
  width: 40%;
}
.contact .contact-box .contact-center .en {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}
.contact .contact-box .contact-center .ko {
  font-size: 14px;
  color: #fff;
  margin-bottom: 35px;
}
.contact .contact-box .contact-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .contact-box .contact-right .sns-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
.contact .contact-box .contact-right .sns-box img {
  width: 30px;
  height: 30px;
}

/* 카피라이터 섹션 */
.copyright {
  background: #111;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright .copyright-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.copyright .copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.copyright .copyright-text .highlight {
  color: #be9b71;
  font-weight: 500;
}
.copyright .divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.copyright .copyright-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.copyright .made-with {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.copyright .heart {
  color: #ff6b6b;
  animation: heartbeat 2s infinite;
  font-size: 14px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.copyright .tech-stack {
  display: flex;
  gap: 15px;
}
.copyright .tech-item {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.copyright .tech-item:hover {
  color: #be9b71;
  border-color: rgba(190, 155, 113, 0.3);
  background: rgba(190, 155, 113, 0.05);
}









