@charset "UTF-8";

/* 기본 색상 */
:root {
	--main-color: #6e888e;
	--accent-color: #813564;
	--dark-main-color: #3e6974;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	--large-width: 1000px;
	--middle-width: 800px;
}


/* 기본 설정: 폰트 크기 */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}

body {font-size: 16px;
}



/* 기본 설정: 페이지 전체 */
body {
	margin: 0;
	font-family: '맑은 고딕',
		'Apple SD Gothic Neo','sans-serif';
}


/* 콘텐츠A: main-banner-image 히어로 이미지 mobile */


/* PC 기본 배너 레이아웃 */
.main-banner {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
}

/* PC 영상 */
.main-banner .pc-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

/* 이미지 기본값: PC에선 숨겨짐 */
.mobile-banner {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ===============================
      모바일(767px 이하)
      → 영상 OFF / 이미지 ON
================================ */
@media (max-width: 767px) {

  /* PC 영상 숨김 */
  .pc-video {
    display: none;
  }

  /* 모바일 이미지 표시 */
  .mobile-banner {
    display: block;
  }

  /* 모바일은 배너 높이를 이미지에 맞추기 */
  .main-banner {
    height: auto;
  }
}



/* M 콘텐츠B: 개요(icon+text) */
.conB .container {
	padding-top: 80px;
	padding-bottom: 20px;
}

.conB .text {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 60px;
	text-align: center;
}

.conB h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conB p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conB a {
	color: #66cbe5;
	color: var(--main-color);
	text-decoration: none;
}

.conB a:hover {
	text-decoration: underline;
}

.conB i {
	font-size: 50px;
	color: #315e3c;
	margin-bottom: 10px;
	transform: scale(0.98);
	transition: 0.3s;
}

.conB i:hover {
	transform: scale(1.2);
}


/* PC-콘텐츠B: 개요(아이콘 + 글자) [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conB .container {
			display: flex;
			max-width: 1000px;
			max-width: var(--large-width);
			margin-left: auto;
			margin-right: auto;
		}
	.conB .text {
			flex: 1;
		}
}


/* M 콘텐츠C: 개요(이미지 + 글자) */
.conC {
	/*background-color: #66cbe5;
	background-color: var(--main-color);*/
	background:url(img/conC_bg-2.gif) fixed;
	min-height: 500px;
	color: #fff;
	color: var(--text-bright-color);
	background-size: cover;
}

.conC .text {
    text-align: center;
    max-width: 900px;   
    margin: 0 auto; 
	padding-top: 80px;   
}


.conC h2 {
	font-family: 'Poiret One', sans-serif !important;
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 60px;
}

.conC p {
    white-space: normal; 
    line-height: 1.4;    
    font-size: 18px;
}

.conC a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #b2a83d;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	text-decoration: none;
}

.conC a:hover {
	background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2));
}

.conC .photo img{
	/*min-height: 300px;
	background-image: url(img/art.jpg);*/
	position: center;
	/*background-size: cover;*/
	padding: 50px;
}


/* PC-콘텐츠C: 개요(image + text) [width=768px]를 기준으로 */
/* conC 중앙 정렬(index 전용) */
@media (min-width: 768px) {
  .conC {
    display: flex;
    align-items: center;       
    justify-content: center;   
    min-height: 600px;
    text-align: center;
  }

  .conC .container {
    display: block !important;
    max-width: 900px;
    margin: 0 auto;
  }

  .conC .photo {
    display: none !important;
  }

  /* 텍스트 묶음 중앙 정렬 */
  .conC .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
  }
}


/* M 콘텐츠D: 개요(글자 + 이미지 : 반대로 배치하기) */
.conD .container {
	padding-top: 2px;
}

.conD .text {
	padding: 20px;
}

.conD h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conD p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conD a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #b2a83d;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	text-decoration: none;
}

.conD a:hover {
	background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2));
}

.conD .photo {
	min-height: 300px;
	background-image: url(img/h.jpg);
	background-position: center;
	background-size: cover;
}


/* PC-콘텐츠D: 개요(text + image) [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conD .container {
			display: flex;
			flex-direction: row-reverse;
			max-width: 1000px;
			max-width: var(--large-width);
			margin-left: auto;
			margin-right: auto;
			padding-top: 40px;
			padding-bottom: 40px;
		}

	.conD .photo {
			flex: 0 0 400px;
		}

	.conD .text {
			flex: 1;
			padding: 50px;
		}
}


/*conE: 비디오 mobile*/
.conE {
	background-color: var(--main-color);
	color: var(--text-bright-color);
}

.conE video {
	width: 100%;
	position: center;
}

/* PC-콘텐츠E: 개요(image + text) [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conE .container {
			display: block;
			max-width: 1500px;
          	width: 100%;
			margin-left: auto;
			margin-right: auto;
	}
}


/* M footer 푸터 */
footer {
	color: #000000;
	color: var(--text-bright-color);
	background-color: #000000 !important;
	background-color: var(--dark-main-color);
}

footer .container {
	padding: 40px 20px;
	
}
footer .footA {
    text-align:center;
}
footer .footA h2 {
    font-family: "Poiret One", sans-serif !important;
}

body.nohero {
    padding-top: 140px;
}

/* FOOTER 기본 */
footer {
	color: var(--text-bright-color);
	background-color: var(--dark-main-color);
}

footer .container {
	padding: 40px 20px;
}

/* FOOTER A : 사이트 정보 */
.footA {
	margin-bottom: 30px;
	text-align: left;
}

.footA h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-family: "Poiret One", sans-serif !important;
	font-size: 30px;
	letter-spacing: 0.1em;
}

.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.footA a {
	color: inherit;
	text-decoration: none;
}


/* FOOTER D : SNS ICONS (중앙 정렬) */
.footD {
	margin-top: 40px;
	text-align: center;
	width: 100%;
}

.footD ul {
	display: inline-flex;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footD a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	transition: 0.25s;
}

.footD a:hover {
	background-color: rgba(255,255,255,0.2);
}

/* FOOTER C : COPYRIGHT */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	margin-top: 40px;
}

/* PC 레이아웃 */
@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.footA {
		text-align: center;
	}
}


/* 전체 헤더 */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 100;
  padding: 0; 
}

/* 내부 정렬 */
.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
 /* max-width: 1400px;
  margin: 0 auto;*/
  padding-top: 30px;
}

/* 로고 */
.logo img {
  width: 120px;
  height: auto;
  transition: 0.3s ease;
  justify-content: left;
}

.logo:hover img {
  transform: scale(1.05);
}

/* PC 기본 – 모바일 로고는 숨김 */
.logo-mobile {
  display: none;
}

/* 모바일 화면(767px 이하)에서 로고 교체 및 좌측 상단 배치 */
@media (max-width: 767px) {

  /* 모바일에서는 PC 로고 숨김 */
  .logo-pc {
    display: none;
  }

  /* 모바일 로고 표시 */
  .logo-mobile {
    display: block;
    width: 1.5rem;      
    height: auto;
  }

  /* 로고를 좌측 상단으로 이동 */
  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    justify-content: flex-start;
  }

  /* 헤더 구조 기본: 모바일 햄버거 버튼과 충돌 방지 */
  .overlay-header .container.header-center {
    align-items: flex-start;
  }
}



/* 네비 메뉴 */
.headMenu ul {
  display: flex;
  gap: 60px;              /* 모든 페이지 동일 간격 */
  list-style: none;
  padding: 10px;
  margin: 15px 0 0 0;
  width:100%;
}

.headMenu a {
  font-family: "Poiret One", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.05em;

  /* 두께 개선 */
  font-weight: 600;
  text-shadow:
    0 0 1px rgba(255,255,255,0.9),
    0 0 6px rgba(0,0,0,0.5);

  text-decoration: none;
  transition: 0.3s;
}

.headMenu a:hover {
  color: var(--accent-color);
}

/* 모바일 햄버거 */
.headC {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--accent-color);
  display: none;
}

/* 모바일 메뉴 */
@media (max-width: 767px) {

.headMenu {
    position: absolute;
    top: 70px;        
    right: 20px;
    z-index: 999;
    width: auto;     
  }

.headMenu ul {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: var(--accent-color); 
    padding: 15px 20px;
    border-radius: 12px;
    width: auto;     
  }

.headMenu.active ul {
    display: flex;
  }



.headMenu a {
    font-size: 1.5rem;
    color: #fff;        
    display: block;
    transition: 0.25s;
  }

.headMenu a:hover {
    color: #fc8bda; 
  }



.headC {
    display: block;
  }
}


/* 모바일 메뉴를 햄버거 버튼 바로 아래로 붙이기 */
@media (max-width: 767px) {

.headMenu {
    position: absolute;
    top: 70px; 
    right: 20px; 
    width: auto;
    z-index: 999;
  }

.headMenu ul {
    width: auto;
    background: #3e0b55;
    border-radius: 10px;
    padding: 15px 20px;
  }

  /* 메뉴 텍스트 좌측 정렬 */
.headMenu ul li a {
    text-align: left;
    display: block;
  }
}

/* conB 작가소개 설정 */

.author-intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--large-width);
  margin: 60px auto;
  padding: 0 20px;
}

.author-intro .photo img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.author-intro .text {
  text-align: center;
  margin-top: 20px;
}

.author-intro .text h2 {
  font-family: "Poiret One", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 25px; /* 헤드라인 - 본문 간격 넓히기 */
}

.author-intro .text p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* pc 버전 */
@media (min-width: 768px) {
  .author-intro .container {
    flex-direction: row;
    align-items: stretch; /* 두 영역 높이 완전 동일화 */
    gap: 40px;
  }

  .author-intro .text {
    text-align: left;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 텍스트 세로 가운데 정렬 */
  }
}

/* conD 슬라이더 전체 */
.conD-slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}

/* 각 슬라이드 내부 */
.conD-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 이미지 스타일 */
.conD-slider img {
  width: 620px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 모바일에서는 1개씩 보이게 */
@media (max-width: 767px) {
  .conD-slider img {
    width: 90%;
  }
}

/* ABOUT PAGE — DARK MODE + 3COLUMN + HISTORY HOVER */
/* 전체 다크모드 적용 */
body.nohero {
    background-color: #0D0D0D;
    color: #F1F1F1;
}

/* ABOUT 타이틀 */
.about-title {
	font-family: 'Poiret One', sans-serif !important;
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 20px;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.03em;
	text-align: center;
}

/* 상단 3컬럼 레이아웃 */

.about-main {
    max-width: 1400px;
    margin: 0 auto 120px;
    display: flex;
    gap: 50px;
    padding: 0 20px;
}

.about-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-centerimg img {
    width: 100%;
    max-width: 420px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* 모바일 1열 전환 */
@media (max-width: 767px) {
    .about-main {
        flex-direction: column;
        text-align: center;
    }
    .about-centerimg img {
        margin: 0 auto;
    }
}

/* HISTORY 섹션 */
.history-dark {
    margin-top: 40px;
    padding: 80px 20px 120px;
    background-color: #111;
}

.history-dark h2 {
	font-family: 'Poiret One', sans-serif !important;
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.history-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* HISTORY 카드 */
.history-card {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0px);
    transition: 0.35s ease;
}

/* 기본 텍스트 */
.history-card h3 {
    font-size: 30px;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.history-card p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
    transition: opacity 0.3s ease;
}

/* 카드 전체 효과 */
.history-card:hover {
    transform: scale(1.05);
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.12);
}

/* 이미지 (기본: 숨김) */
.history-card img.history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(2px) brightness(0.7);
    transition: 0.7s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* hover 시 이미지 등장 + 블러 유지 */
.history-card:hover img.history-img {
    opacity: 1;
    filter: blur(6px) brightness(0.9);
}

/* 그라데이션 오버레이 */
.history-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2; /* 텍스트 아래/이미지 위 */
}

.history-card:hover::after {
    opacity: 1;
}

/* 카드별 오버레이 색상 */

/* 핫핑크 */
.card1::after {
    background: linear-gradient(
        rgba(255, 0, 122, 0.55),
        rgba(0, 0, 0, 0.85)
    );
}

/* 퍼플 */
.card2::after {
    background: linear-gradient(
        rgba(175, 82, 255, 0.55),
        rgba(88, 22, 150, 0.85)
    );
}

/* 블루 */
.card3::after {
    background: linear-gradient(
        rgba(0, 142, 255, 0.55),
        rgba(3, 18, 54, 0.85)
    );
}

/* 옐로우/오렌지 */
.card4::after {
    background: linear-gradient(
        rgba(255, 225, 0, 0.55),
        rgba(255, 94, 0, 0.85)
    );
}

/* 버튼 기본 숨김 */
.history-card a {
    position: relative;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    display: inline-block;
    padding: 8px 18px;
    background: #fc8bda;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.history-card a:hover {
    background: #832c66;
}

.history-card:hover a {
    opacity: 1;
    pointer-events: auto;
}

/* 텍스트 사라짐 */
.history-card:hover h3,
.history-card:hover p {
    opacity: 0;
}

/* 반응형 */
@media (max-width: 900px) {
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
}


/* ARTWORK PAGE  */

.artwork-wrap {
    max-width: 1300px;
    margin: 100px auto 150px;
    padding: 0 20px;
}

.artwork-title {
    text-align: center;
    font-family: 'Poiret One', sans-serif !important;
    font-size: 42px;
    letter-spacing: 0.08em;
    margin-bottom: 60px;
}

/* 3열 그리드 */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* 카드 기본 */
.art-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.art-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

/* hover 시 확대 */
.art-card:hover .art-thumb {
    transform: scale(1.08);
}

/* 오버레이 */
.art-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 25px;
    transition: 0.4s ease;
    backdrop-filter: blur(4px);
}

.art-card:hover .art-hover {
    opacity: 1;
}

.art-hover h3 {
    font-family: 'Poiret One', sans-serif !important;
    font-size: 24px;
    margin-bottom: 12px;
}

.art-hover p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* 자세히 보기 버튼 */
.art-btn {
    padding: 8px 20px;
    background: #fc8bda;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.25s;
}

.art-btn:hover {
    background: #b62584;
}

/* 반응형 */
@media (max-width: 900px) {
    .artwork-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .artwork-grid {
        grid-template-columns: 1fr;
    }

    .artwork-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

/* SHOP PAGE – DARK GRID STYLE  */

body.nohero {
    background: #0D0D0D;
    color: #fff;
    overflow-x: hidden;  
}

/* SHOP TITLE */
.shop-title-section {
    text-align: center;
    margin-top: 130px;
}

.shop-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 48px;
    letter-spacing: 0.08em;
}

/* SHOP GRID */
.shop-grid {
    padding: 60px 0 150px;
}

.shop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.shop-img {
    width: 100%;
    aspect-ratio: 1 / 1;  /* 1:1 정사각형 */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

/* SHOP ITEM */
.shop-item {
    text-align: center;
    padding: 40px 25px;
   /* border-bottom: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.15);
    border-right: 1px solid rgba(255,255,255,0.15);*/
    position: relative;
}

/* SHOP PAGE — COLLAB 방식 오버레이 적용 */

/* 이미지 박스 */
.shop-img {
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

/* 오버레이 */
.shop-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: 0.35s ease;
}

/* 호버 시 오버레이 등장 */
.shop-item:hover .shop-hover {
    opacity: 1;
}

/* 오버레이 안의 텍스트 */
.hover-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 24px;
    color: #fff;

    opacity: 0;
    transform: translateY(15px);
    transition: 0.35s ease;
}

/* 호버 시 텍스트 등장 애니메이션 */
.shop-item:hover .hover-title {
    opacity: 1;
    transform: translateY(0);
}

/* PRODUCT TEXT */
.shop-item h3 {
    margin: 20px 0 10px;
    font-family: "Poiret One", sans-serif;
    font-size: 22px;
}

.shop-price {
    opacity: 0.85;
    margin-bottom: 20px;
}

/* ADD TO CART */
.add-cart {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.add-cart:hover {
    background: #fc8bda;
    border-color: #fc8bda;
}


/* FOOTER ONE-COLUMN */
.foot-single {
    max-width: 1100px;
    margin: 0 auto;
}

/* FILTER BAR */
.shop-filter {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin: 120px auto 40px;
}

.filter-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
    font-family: 'Poiret One', sans-serif !important;
}

/* 텍스트 정렬 */
.filter-item:nth-child(1) { text-align: left; }
.filter-item:nth-child(2) { text-align: center; }
.filter-item:nth-child(3) { text-align: center; }

.filter-item {
    position: relative;
    font-size: 16px;
    cursor: pointer;
}

.filter-item:hover {
    color: #fc8bda;
}

/* 드롭다운 메뉴 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 35px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 150px;
    max-width: 90vw;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px;
    z-index: 20;
    backdrop-filter: blur(6px);
    text-align: left;
}

/* 메뉴 내부 스타일 */
.dropdown-menu p {
    font-size: 18px;
    margin: 8px 0 4px;
    opacity: 0.8;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.dropdown-menu ul li a {
    display: block;
    padding: 6px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.dropdown-menu ul li a:hover {
    color: #fc8bda;
}

/* 반응형 */
@media (max-width: 768px) {

  .shop-container {
      grid-template-columns: 1fr !important; /* 3 → 1열 */
      gap: 40px; 
      padding: 0 20px; 
  }

  .shop-item {
      padding: 20px 10px; /* 카드 간 여백 조금 축소 */
  }

  .shop-img {
      height: 320px; /* 모바일에서 비율 예쁘게 */
  }
}


/* COLLAB TITLE */
.collab-title-sec {
    max-width: 1300px;
    margin: 150px auto 60px;
    text-align: center;
}

.collab-title {
    font-size: 42px;
    font-family: "Poiret One", sans-serif;
    letter-spacing: 0.08em;
    color: #ffffff;
}


/* GRID WRAP */
.collab-wrap {
    max-width: 1300px;
    margin: 0 auto 150px;
    padding: 0 20px;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


/* 카드 */
.collab-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

/* 기본 이미지 */
.collab-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform .45s ease;
}

.collab-card:hover .collab-img {
    transform: scale(1.08);
}

/* 호버 오버레이 */
.collab-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: opacity .45s ease;
}

.collab-card:hover .collab-hover {
    opacity: 1;
}

/* 타이틀 (중앙) */
.collab-hover h3 {
    font-family: "Poiret One", sans-serif;
    font-size: 26px;
    color: #fff;
    transform: translateY(15px);
    opacity: 0;
    transition: .45s ease;
}

.collab-card:hover .collab-hover h3 {
    opacity: 1;
    transform: translateY(0); 
}


/* Responsive */
/* 모바일 — 1개씩 세로 레이아웃 */
@media (max-width: 800px) {
    .collab-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
}

/* 더 작은 화면에서도 그대로 1열 유지 */
@media (max-width: 500px) {
    .collab-grid {
        grid-template-columns: 1fr;  
    }
}


/* BRIEF PAGE (nohero + dark layout) */

body.nohero {
    background-color: #0D0D0D;
    color: #F1F1F1;
}

/* 페이지 타이틀 */
.brief-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 48px;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

/* 영상 섹션 */
.brief-video-section {
    padding: 140px 20px 120px;  
}

.brief-video-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* 영상 스타일 */
.brief-video-wrap video {
    width: 100%;
    max-height: 720px;
    border-radius: 16px;
    outline: none;
    background: #000;
}

/* 반응형 처리 */
@media (max-width: 768px) {
    .brief-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .brief-video-section {
        padding: 140px 15px 80px;
    }
}

/* about 페이지 추가 contact섹션 */ 
.card {
  overflow: visible;
  width: 190px;
  height: 254px;
}

.content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px #000000ee;
  border-radius: 5px;
}

.front, .back {
  background-color: #151515;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}

.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.back::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
  animation: rotation_481 5000ms infinite linear;
}

.back-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #151515;
  border-radius: 5px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.card:hover .content {
  transform: rotateY(180deg);
}

@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  0% {
    transform: rotateZ(360deg);
  }
}

.front {
  transform: rotateY(180deg);
  color: white;
}

.front .front-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.front-content .badge {
  background-color: #00000055;
  padding: 2px 10px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  width: fit-content;
}

.description {
  box-shadow: 0px 0px 10px 5px #00000088;
  width: 100%;
  padding: 10px;
  background-color: #00000099;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}

.title {
  font-size: 11px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

.title p {
  width: 50%;
}

.card-footer {
  color: #ffffff88;
  margin-top: 5px;
  font-size: 8px;
}

.front .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #eb4c89;
  position: relative;
  filter: blur(15px);
  animation: floating 2600ms infinite linear;
}

#bottom {
  background-color: #ff8866;
  left: 50px;
  top: 0px;
  width: 150px;
  height: 150px;
  animation-delay: -800ms;
}

#right {
  background-color: #ff2233;
  left: 160px;
  top: -80px;
  width: 30px;
  height: 30px;
  animation-delay: -1800ms;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Contact Section Layout */
.about-contact {
    max-width: 1300px;
    margin: 140px auto 120px;
    padding: 0 20px;
    text-align: center;
}

.contact-title {
    font-family: "Poiret One", sans-serif;
    font-size: 34px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.contact-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 60px;
}

.contact-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


@media (max-width: 600px) {
    .contact-flex {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .card {
        transform: scale(1.05);
    }
}


/* CONTACT SECTION — 카드 개별 색상 커스터마이즈 */


/* 카드 1 : EMAIL — 핑크/보라 계열 */
#card1 .back::before {
    background: linear-gradient(
        90deg,
        transparent,
        #ff4d9b,
        #ff4d9b,
        #ff4d9b,
        transparent
    );
}
#card1 .circle {
    background-color: #ff4d9b;
}
#card1 #right {
    background-color: #ff89d6;
}
#card1 #bottom {
    background-color: #cf2a72;
}

/* 카드 2 : PHONE — 블루/민트 계열 */
#card2 .back::before {
    background: linear-gradient(
        90deg,
        transparent,
        #44c3ff,
        #44c3ff,
        #44c3ff,
        transparent
    );
}
#card2 .circle {
    background-color: #44c3ff;
}
#card2 #right {
    background-color: #b3f0ff;
}
#card2 #bottom {
    background-color: #2a82b9;
}

/* 카드 3 : INSTAGRAM — 퍼플/옐로우 계열 */
#card3 .back::before {
    background: linear-gradient(
        90deg,
        transparent,
        #a855ff,
        #a855ff,
        #a855ff,
        transparent
    );
}
#card3 .circle {
    background-color: #a855ff;
}
#card3 #right {
    background-color: #ffcb4b;
}
#card3 #bottom {
    background-color: #f048ff;
}

/* 카드 4 : FACEBOOK — 네이비/하늘색 계열 */
#card4 .back::before {
    background: linear-gradient(
        90deg,
        transparent,
        #0f5fff,
        #0f5fff,
        #0f5fff,
        transparent
    );
}
#card4 .circle {
    background-color: #0f5fff;
}
#card4 #right {
    background-color: #7fbaff;
}
#card4 #bottom {
    background-color: #0041b3;
}

/* CONTACT 섹션 레이아웃 */
.about-contact {
    max-width: 1300px;
    margin: 140px auto 120px;
    padding: 0 20px;
    text-align: center;
}

.contact-title {
    font-family: "Poiret One", sans-serif;
    font-size: 34px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.contact-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 60px;
}

.contact-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* 모바일 (2개씩 표시) */
@media (max-width: 600px) {
    .contact-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 30px;
    }

    .card {
        transform: scale(1.05);
    }
}

/* pptx: 비디오 */

.pptx {
    background-color: #66cbe5;
    background-color: #000;
    color: #fff;
    color: var(--text-bright-color);
}

.pptx video {
    padding-top: 40px;
    width: 100%;
    position: center;
}


/* PC-pptx: 개요(image + text ) [width=768px]를 기준으로 */

@media (min-width: 768px) {
.pptx .container {
    display: block;
    width: 1500px;
    margin-left: auto;
    margin-right: auto;
    }
}


/* DETAIL PAGE TOP LAYOUT */
.detail-top {
  max-width: 1200px;
  margin: 150px auto 80px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-art-grid {
  max-width: 1300px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

/* 왼쪽 이미지 */
.detail-left img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

/* 오른쪽 텍스트 */
.detail-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-title {
  font-family: 'Poiret One', sans-serif;
  font-size: 42px;
  margin: 0;
}

.detail-desc {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* 컬러 팔레트 */
.detail-colors {
  display: flex;
  gap: 12px;
  margin: 10px 0 5px;
}

.color-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}

.detail-info-row {
  display: flex;
  align-items: center;
  gap: 25px;        /* 색상과 날짜 간 간격 */
  margin-top: 10px;
}

/* 날짜 스타일 변경 */
.detail-date {
  font-size: 18px;        /* 글자 크게 */
  font-weight: 600;       /* 더 강조 */
  opacity: 0.9;
  margin: 0;
}

/* shop 페이지에서 쓰던 얇은 선 스타일 */
.detail-divider {
  max-width: 1200px;
  height: 1px;
  opacity: 0.4;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin: 40px auto 60px;
}

/* 아래 관련 아트워크 제목 */
.related-title {
  text-align: center;
  font-family: 'Poiret One', sans-serif;
  font-size: 32px;
  margin-bottom: 40px;
}

/* PC 레이아웃 적용 */
@media (min-width: 900px) {
  .detail-top {
    flex-direction: row;
    gap: 50px;
  }

  .detail-left {
    flex: 1.2;
  }
  .detail-right {
    flex: 1;
    padding: 10px 10px;
  }
}


/* SHOP DETAIL PAGE */

.shop-detail {
  max-width: 900px;
  margin: 180px auto 120px;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.detail-product-title {
  font-family: 'Poiret One', sans-serif;
  font-size: 42px;
  margin-bottom: 40px;
}

.detail-product-img img {
  width: 100%;
  max-width: 620px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.detail-stock {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.75;
}

.detail-btn-row {
  margin: 40px auto 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-like,
.btn-add {
  padding: 12px 30px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #fff;
  font-family: 'Montserrat', sans-serif;
  transition: 0.25s;
  background: transparent;
  color: #fff;
}

.btn-like:hover {
  background: #ff6ebd;
  border-color: #ff6ebd;
}

.btn-add {
  background: #fc8bda;
  border-color: #fc8bda;
}

.btn-add:hover {
  background: #b62584;
  border-color: #b62584;
}

.btn-back {
  display: inline-block;
  margin-top: 25px;
  font-size: 15px;
  opacity: 0.8;
  text-decoration: none;
  color: #fff;
  transition: 0.25s;
}

.btn-back:hover {
  opacity: 1;
}


/* MOBILE HEADER SPACING FIX */

@media (max-width: 767px) {

  body.nohero header {
      margin-bottom: 10px !important; 
  }

  /* 대표 타이틀 섹션 간격 축소 */
  .artwork-title-sec,
  .about-title-sec,
  .collab-title-sec,
  .shop-title-section,
  .detail-top,
  .collab-detail {
      margin-top: 10px !important; 
  }
}


