/* 기본 설정 */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
  font-family: 'Gothic A1', sans-serif; /* 변경 */
  font-size: 15px; 
  line-height: 1.55; 
}



/* ==================== 헤더 스타일 시작 ==================== */
header {
  text-align: center;   /* 로고 중앙, 메뉴 중앙 */
  padding: 20px 10px;
  position: relative;
  background: #fff;
}

#logo img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto; /* 로고 아래 공간 */
}

/* 메뉴 */
#h_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

#h_menu li {
  display: inline-block;
  margin: 0 20px;
}

#h_menu li a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

/* 모바일 햄버거 버튼 */
.headC {
  display: none; /* PC에서는 숨김 */
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

@media (max-width: 767px) {
  header {
    position: relative;
    text-align: center;
    padding-top: 60px; /* 로고+버튼 높이만큼 여유 공간 */
    padding-bottom: 20px; /* 메뉴와 히어로 이미지 사이 간격 */
  }

  #logo {
    position: absolute;
    left: 10px;
    top: 20px;
  }

  #logo img {
    display: block;
    margin: 0;
  }

  .headC {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
  }

  #h_menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 60px; /* 로고/버튼 아래 */
  }

  #h_menu.active {
    display: flex;
  }

  #h_menu li {
    display: block;
    margin: 10px 0;
  }
}



/* ==================== 헤더 스타일 끝 ==================== */


/* 헤더 */
.header {
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #fff;
}

.nav-top {
  font-size: 12px;
  margin-bottom: 10px;
}

.nav-top a {
  margin: 0 8px;
  text-decoration: none;
  color: black;
}

.main-title {
  font-size: 64px;
  font-weight: 500;
}

/* 메인 비주얼 */

.hero {
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 1200px; 
  height: auto;
  margin: 0 auto;
  display: block;
}

.photo img {
  width: 100%;
  max-width: 400px; 
  height: auto;
  display: block;
  margin: 0 auto;
}


/* 타임라인 */
.wide-banner {
  width: 100%;
  margin: 60px 0; 
  text-align: center;
  background-color: #fff;
}

.wide-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 글자 */
.text-section {
  margin: 40px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.text-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
}


.wide-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px; /* 메인 큰거랑 사이즈 같게*/
  margin: 0 auto;
}


.banner-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* 반응형 */
@media (max-width: 768px) {
  .wide-banner {
    height: 180px;
  }

  .banner-text {
    left: 5%;
    right: 5%;
    padding: 15px;
  }

  .banner-text h2 {
    font-size: 18px;
  }

  .banner-text p {
    font-size: 12px;
  }
}


/* 중앙 글...와이어프레임-featured 항목 */
.featured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 20px;
}

.featured-image {
  width: 300px;
  height: 200px;
  background-color: #ddd;
}

.featured-text {
  max-width: 400px;
}

.featured-text h2 {
  font-size: 24px;
  font-family: 'New Rocker', cursive;
  margin-bottom: 20px;
}

/* Timeline */
.timeline {
  text-align: center;
  padding: 80px 20px;
}

.timeline h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
}

/* 4칸 */
.featured-buttons {
  text-align: center;
  padding: 80px 20px;
}

.featured-buttons h2 {
  font-size: 24px;
  font-family: 'New Rocker', cursive;
  margin-bottom: 40px;
}

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

.button-box {
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  overflow: hidden; /* 이미지 넘치지 않게 */
}

.button-box:hover {
  background-color: #ddd;
}


.button-box img {
  width: 100%;
  height: auto;
  display: block;
}


/* 무드보드? 중앙정렬 글*/

.timeline-section {
  font-family: 'New Rocker', cursive; 
  text-align: center;
  padding: 80px 20px;
}

.timeline-text h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-text p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.mood-image-section {
  text-align: center;
  margin: 20px 0; /* 위아래 여백 */
}

.mood-image img {
  max-width: 100%;
  height: auto;
  display: inline-block; 
}

.icon-image-section {
  text-align: center;
  margin: 20px 0;
}

.icon-image img {
  width: 40px;     
  height: 40px;   
  display: inline-block;
  object-fit: contain;  
}

/*큰 사진*/
.big-image img {
  width: 100%;
  max-width: 1200px; 
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 0;
}

/* 타이틀 */
.mood-title {
  font-family: 'New Rocker', cursive;
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: 3px;
}


/* 데코 라인 */
.mood-line {
  text-align: center;
  color: #ff39a6;
  font-size: 16px;
  margin-bottom: 50px;
}

/* 전체 영역 */
.mood-section {
  width: 100%;
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 블록 (기본: PC 가로배치) */
.mood-block {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}


.mood-img {
  width: 45%;
  border-radius: 10px;
  object-fit: cover;
}

/* 텍스트 */
.mood-text {
  width: 55%;
}

/* 소제목 */
.mood-sub {
  font-family: 'New Rocker', cursive;
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
}

/* 본문 */
.mood-text p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #333;
}



/* 모바일 */


/* 900px 이하 (태블릿) */
@media (max-width: 767px) {
  .mood-block {
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding: 0 20px 60px; 
  }

  .mood-text {
    width: 100%;
    padding: 0 5px; 
  }
}


/* 700px 이하 (모바일) */
@media (max-width: 767px) {

  .mood-block {
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding: 0 20px 60px; 
  }

  /* 이미지 전체폭 */
  .mood-img {
    width: 100%;
  }

  /* 텍스트 패딩 */
  .mood-text {
    width: 100%;
    padding: 0 5px;
  }

  .mood-sub {
    font-size: 22px;
  }

  .mood-text p {
    font-size: 14px;
    line-height: 1.75;
  }

  .mood-title {
    font-size: 40px;
  }

  .mood-line {
    font-size: 14px;
  }
}

section.hero {
	background-image: url(img/main_img.jpg);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 450px;	
	background-position: center;
	background-size: cover;
}
section.hero-Philo {
	background-image: url(img/ppp-2.gif);
	display: flex;
	align-items: center;
	justify-content: center;
	/*height: 100vh;*/
	min-height: 800px;	
	background-position: top;
	background-size: cover;
}
/* 갤러리 프리뷰 */
section.hero-gall {
	background-image: url(img/coll-2.gif);
	display: flex;
	align-items: center;
	justify-content: center;
	/*height: 100vh;*/
	min-height: 600px;	
	background-position: top;
	background-size: cover;
}

.gallery-preview {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px 0;
}

.gallery-box {
  width: 250px;   
  text-align: center;  
}

.img-wrap {
  width: 250px;   
  height: 380px;  
  overflow: hidden;
  border: 1px solid #ddd;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  transition: transform 0.3s ease;
}

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

.caption {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
}

/* 반응형 */
@media (max-width: 768px) {
  .gallery-preview {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }

  .gallery-box {
    width: 80%;
    max-width: 320px;
    height: auto;
  }

  .gallery-box img {
    height: auto;
  }
}

/* 전체 링크 기본 색 + 핑크 hover */
a {
  color: #000; 
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: #ff39a6 !important; 
  text-shadow: 0 0 6px #ff39a6;
}

footer {
  background: #111;
  color: #ddd;
  text-align: center;
  padding: 30px 20px;
}

footer .footer-logo img {
  width: 120px;   
  height: auto;
  margin-bottom: 10px;
}

footer .footer-text {
  font-size: 14px;
  color: #ddd;
}

/* 링크 핑크 hover */
footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ff39a6;
  text-shadow: 0 0 6px #ff39a6;
}

/* ----------------------------------------------------------
   COLLECTION DETAIL PAGE — 스타일 추가
   기존 CSS는 절대 삭제 X, 아래만 추가하면 됨
-----------------------------------------------------------*/

/* 전체 레이아웃 */
.collection-detail {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
}

/* 페이지 제목 */
.collection-title {
  font-family: 'New Rocker', cursive;
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.collection-line {
  text-align: center;
  color: #ff39a6;
  font-size: 16px;
  margin-bottom: 60px;
}

/* 메인 이미지 */
.collection-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto 60px;
}

/* 설명 텍스트 */
.collection-text {
  font-size: 14px;
  line-height: 1.85;
  color: #222;
  max-width: 900px;
  margin: 0 auto 80px;
}

.collection-1 {
  font-family: 'New Rocker', cursive;
  font-size: 26px;
  max-width: 900px;
  margin: 0 auto 40px; /* 가운데 정렬 + 적당한 아래 여백 */
  font-weight: 600;
  text-align: left; /* 필요하면 right/center로 변경 가능 */
}

/* 서브 이미지 2단 구성 */
.collection-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.collection-gallery img {
  width: 47%;
  object-fit: cover;
}

/* "MORE" 박스 */
.collection-more {
  text-align: center;
  margin-top: 60px;
}

.collection-more a {
  padding: 12px 32px;
  border: 2px solid #000;
  display: inline-block;
  font-size: 16px;
  transition: 0.2s;
}

.collection-more a:hover {
  background: #000;
  color: #fff;
}

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

  .collection-detail {
    padding: 60px 20px;
  }

  .collection-title {
    font-size: 40px;
  }

  .collection-gallery img {
    width: 100%;
  }

  .collection-text {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* SHOWS 메인 영상 */
.shows-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.shows-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shows-hero-text {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.shows-hero-text h1 {
  font-size: 52px;
  letter-spacing: 3px;
  font-family: 'New Rocker', cursive;
}

.shows-hero-text p {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}



/* Runway highlight */
.shows-section {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.shows-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.shows-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.show-card {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 300px;
}

.show-thumb img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.show-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
}



/* Backstage */
.backstage-section {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
}

.backstage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.backstage-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}



/* 쇼 철학 */
.shows-philosophy {
  text-align: center;
  margin: 150px 0 100px;
  padding: 0 20px;
}

.shows-philosophy h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 500;
}

.shows-philosophy p {
  font-size: 14px;
  opacity: 0.7;
}

/* Hero section */
.shows-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}


.youtube-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.youtube-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none; 
}

.shows-hero-text {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.shows-hero-text h1 {
  font-size: 52px;
  letter-spacing: 3px;
  font-family: 'New Rocker', cursive;
}

.shows-hero-text p {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* mp4 영상 */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.gallery-preview:last-of-type {
  margin-bottom: 120px; 
}

/* 제목 폰트 New Rocker 적용 */
.shows-title {
  font-family: 'New Rocker', cursive;
}

/* 인용구 폰트 변경 */
.shows-philosophy h3,
.shows-philosophy p {
  font-family: 'New Rocker', cursive;
}


/* PROPOSAL 히어로 */
/* 히어로 영역 */
.proposal-hero {
  position: relative;
  width: 100%;
  height: 70vh; /* 원하는 높이, PC/모바일 조절 가능 */
  overflow: hidden;
}

.proposal-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 영상 비율 유지 */
}

/* 모바일 대응 */
@media (max-width: 767px) {
  .proposal-hero {
    height: 50vh; /* 모바일에서 높이 조정 */
  }
}

/* 페이지 콘텐츠 */
.proposal-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 푸터 */
.footer {
  background: #000;
  padding: 20px 0;
  text-align: center;
}
