@charset "UTF-8";

.block {
  height: 0px;
}
.sub_banner {
  width: 100%;
  height: 400px;
  position: relative;
  background-image: url(../img/sub_banner.jpg);
  background-size: cover;
  background-position: center;
}

.sub_banner_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #333;
}

.sub_banner_txt .title {
  height: 100px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #555;
  border-right: 1px solid #555;
  padding: 0 4rem;
  line-height: 1.2;
  text-align: center;
}

.sub_container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
}

/**서브 타이틀 시작**/
.sub_container .sub_title {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}

.sub_container .sub_title h2 {
  font-size: 40px;
  color: #333;
}

.sub_container .sub_title p {
  font-size: 18px;
  color: #888;
  padding: 10px 0 20px 0;
}

.sub_container .sub_title span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

/**서브 타이틀 끝//**/
/* Hero Section */
:root {
  --primary-beige: #d4c4a8;
  --light-beige: #e8dcc6;
  --dark-beige: #b8a082;
  --soft-brown: #8b7355;
  --pure-white: #fff;
  --off-white: #f5f5f5;
  --light-gray: #f1f1f1;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --shadow-soft: rgba(212, 196, 168, 0.15);
  --shadow-medium: rgba(212, 196, 168, 0.25);
}
.hero {
  padding: 12rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--pure-white) 0%,
    var(--off-white) 100%
  );
  text-align: center;
}

.hero h1 {
  font-family: "MaruBuri-Regular";
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -3px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}
/* About Section */
.about {
  padding: 8rem 0;
  background: var(--pure-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-family: "MaruBuri-Regular";
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-highlight {
  color: var(--primary-beige);
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-soft);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Values Section */
.values {
  padding: 6rem 0;
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  font-family: "MaruBuri-Regular";
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 4rem;
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.value-card {
  background: var(--pure-white);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px var(--shadow-medium);
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-beige);
  margin-bottom: 2rem;
}

.value-card h3 {
  font-family: "MaruBuri-Regular";
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.value-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Team Section */
.team {
  padding: 8rem 0;
  background: var(--pure-white);
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}

.team-intro h2 {
  font-family: "MaruBuri-Regular";
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.team-intro p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: "MaruBuri-Regular";
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary-beige);
  margin-bottom: 1rem;
}

.stat-text {
  color: var(--text-medium);
  font-size: 1rem;
  font-weight: 400;
}

/* Mission Section */
.mission {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-gray) 100%
  );
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.mission p {
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.mission-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-beige);
  padding: 2rem 0;
  border-top: 1px solid var(--light-beige);
  border-bottom: 1px solid var(--light-beige);
  margin: 3rem 0;
}

/* Contact CTA */
.contact-cta {
  padding: 6rem 0;
  background: var(--pure-white);
  text-align: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary-beige);
  color: var(--pure-white);
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px var(--shadow-soft);
}

.cta-button:hover {
  background: var(--dark-beige);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--shadow-medium);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-subtitle,
  .cta-content p {
    font-size: 1rem;
  }
  .about,
  .values {
    padding: 4rem 0;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text h2,
  .section-title,
  .cta-content h2,
  .mission h2 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Smooth Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 모바일 없애기 */
.sub_m {
  display: none;
}

/** product_list 시작**/
.product_list {
  padding: 20px 40px;
  border: 4px solid #e6e2df;
  margin-top: 20px;
  background: #fbf4ee;
}

.product_list span {
  width: 20px;
  height: 4px;
  display: block;
  background: #b8beb7;
}

.product_list h2 {
  font-size: 22px;
  color: #74615a;
}

.product_list h2 b {
  color: #df2f2f;
}

.product_list p {
  font-size: 17px;
  color: #666;
  padding-top: 10px;
}

.product_list p b {
  color: #222;
}

/** product_list 끝**/

/**map_box 시작**/
.map_wrap {
  padding: 30px;
  background: #f3f3f3;
  overflow: hidden;
}

.map_wrap .map_box {
  display: flex;
  align-items: center;
}

.map_icon {
  float: left;
  padding-right: 20px;
}

.map_txt {
  float: left;
}

.map_txt h2 {
  font-size: 22px;
}

.map_txt p {
  font-size: 18px;
  padding-top: 8px;
}

/**map_box 끝**/
#maparea {
  height: 300px;
}

#maparea .root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
}

/****************************** sub 갤러리 box 시작 ******************************/
.sub_gall_list {
  margin: -10px -10px 0;
  overflow: hidden;
}

.sub_gall_list .gall_item {
  float: left;
  width: 25%;
  padding: 10px;
}

.sub_gall_list .gall_item a {
  display: block;
  overflow: hidden;
}

.sub_gall_list .gall_item a img {
  transition: all 1.2s;
  transform: scale(1);
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.sub_gall_list .gall_item a:hover img {
  transform: scale(1.085);
}

.sub_gall_list.detail_type .gall_item a {
  position: relative;
}

.sub_gall_list.detail_type .gall_desc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_gall_list.detail_type .gall_desc_wrap {
  display: block;
  text-align: center;
}

.sub_gall_list .gall_item p {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding-top: 12px;
}

/****************************** sub 갤러리 box 끝 ******************************/

/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
@media (max-width: 1024px) {
  .sub_container {
    padding: 50px 15px;
  }

  .sub_container .sub_title h2 {
    font-size: 32px;
  }

  .sub_banner {
    height: 320px;
  }

  .sub_banner2 {
    height: 420px;
  }

  .sub_banner2 img {
    width: 80px;
  }

  .sub_container .sub_title p {
    font-size: 16px;
    color: #888;
    padding: 5px 0 20px 0;
  }

  .sub_banner_txt h2 {
    font-size: 27px;
  }

  .company_box .company_txt h2 {
    font-size: 26px;
  }

  .company_box .company_txt p {
    font-size: 16px;
  }

  /* sub_com */
  .sub_com li h3 {
    font-size: 38px;
    font-weight: normal;
    line-height: 1.2;
  }

  .sub_com li p {
    font-size: 18px;
    padding-top: 3rem;
  }

  /** product_list 시작**/
  .product_list {
    padding: 20px;
    margin-top: 10px;
  }

  .product_list h2 {
    padding-bottom: 10px;
  }

  .product_list p {
    font-size: 16px;
  }

  /** product_list 끝//**/
}

/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/
@media (max-width: 768px) {
  .sub_container {
    padding: 50px 15px;
  }

  .sub_banner {
    height: 280px;
  }
  .sub_banner_txt {
    justify-content: center;
    height: 280px;
  }

  .sub_banner_txt h2 {
    padding-top: 1rem;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }

  /**서브 타이틀 시작**/
  .sub_container .sub_title {
    margin-bottom: 20px;
  }

  .sub_container .sub_title h2 {
    font-size: 20px;
  }

  .sub_container .sub_title p {
    font-size: 13px;
    padding: 5px 0 10px 0;
  }

  .sub_container .sub_title span {
    height: 1px;
    background-color: #ddd;
  }

  /**서브 타이틀 끝//**/

  /* company */
  .company_title {
    text-align: center;
    padding-bottom: 1rem;
    font-size: 19px;
  }

  .company_title br {
    display: none;
  }

  /* compnay 슬라이더 */
  .swiper {
    width: 100%;
    max-width: 90vw;
    height: 450px;
  }

  /**company_box 시작**/
  .company_box .company_txt {
    padding-top: 20px;
  }

  .company_txt h2 {
    font-size: 22px;
  }

  .company_txt h2 br {
    display: none;
  }

  .company_txt h3 {
    font-size: 16px;
    padding: 10px 0 5px 0;
  }

  .company_txt P {
    font-size: 18px;
  }

  .company_box .company_txt p span {
    font-size: 13px;
    height: 20px;
    width: 20px;
  }

  .company_txt .cimg {
    flex-direction: column;
  }

  .company_txt .cimg img {
    width: 100%;
  }

  /**company_box 끝**/

  /* company */
  .company {
    grid-template-columns: 1fr;
  }

  /** product_list 시작**/
  .product_list {
    padding: 10px 20px;
  }

  .product_list h2 {
    padding-bottom: 0;
    font-size: 16px;
  }

  .product_list p {
    font-size: 13px;
  }

  /** product_list 끝//**/

  /**map_box 시작**/
  .map_wrap {
    padding: 20px 10px;
  }

  .map_txt h2 {
    font-size: 16px;
  }

  .map_txt p {
    font-size: 13px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .map_icon img {
    height: 60px;
  }

  /**map_box 끝**/

  /**서브 갤러리 시작**/
  .sub_gall_list .gall_item {
    width: 50%;
  }

  .sub_gall_list .gall_item p {
    font-size: 14px;
    padding-top: 10px;
  }

  .sub_gall_list .gall_item a img {
    transition: all 1.2s;
    transform: scale(1);
    height: 170px;
    object-fit: cover;
    width: 100%;
  }

  /**서브 갤러리 끝//**/
}

/*******************************************************************************************************************************
 *** 모바일 max-width 480
*******************************************************************************************************************************/
@media (max-width: 480px) {
  .sub_banner {
    background-position-x: 70%;
  }

  /* company */
  .swiper {
    width: 100%;
    max-width: 90vw;
    height: 95vw;
  }

  .mySwiper.swiper {
    height: 50px;
    margin-top: 0;
  }
}
