/* ¸ÞÀÎ»ó´Ü µ¿¿µ»ó */

    .video-section {
      position: relative;
      width: 100%;
      height: 1100px;
      overflow: hidden;
    }

    .youtube-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

.youtube-bg iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 ºñÀ² */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 400vh;
}
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 1;
    }

    .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      max-width: 1200px;
      padding: 0 20px;
      color: white;
      z-index: 2;
      text-align: left;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    }

    .title {
      font-size: 60px;
	  color:#fff;
      font-weight: bold;
      margin-bottom: 20px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .subtitle {
      font-size: 24px;
	  color:#fff;
      line-height: 1.5;
      margin-bottom: 30px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .btn1 {
      display: inline-block;
      padding: 18px 30px 15px 30px;
      background-color: #4cbed3;
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s ease;	  
      text-shadow: none; 
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .btn1:hover {
      background-color: #fff;
      color: #333;
	  text-decoration: none;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    @media (max-width: 1600px) {

    .video-section {
      position: relative;
      width: 100%;
      height: 900px;
      overflow: hidden;
    }

      .title {
        font-size: 40px;
      }

      .subtitle {
        font-size: 22px;
      }
      .content {
        padding-left: 60px;
      }
    }

    @media (max-width: 768px) {
      .video-section {
        height: 550px;
      }

      .title {
        font-size: 22px;
      }

      .subtitle {
        font-size: 17px;
      }

      .btn1 {
        font-size: 16px;
        padding: 10px 24px;
      }

      .content {
        padding-left: 30px;
      }
    }


/* ¸ÞÀÎ»ó´Ü ¼Ò°³ */

    .wrapper10 {
      display: flex;
      width: 100%;
      flex-wrap: wrap;
    }

    .left, .right {
      width: 50%;
    }

    .left {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      animation: slideUp 0s ease-out forwards;
    }

  /* PC ¿ÞÂÊ ½½¶óÀÌ´õ */
  .slider {
    position: relative;
    width: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
  }
  .slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.6s ease-in-out;
  }
  .slide.active {
    left: 0;
    opacity: 1;
  }
  .slide.prev {
    left: -100%;
    opacity: 0;
  }

  /* ÁÂ¿ì È­»ìÇ¥ ¹öÆ° */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 50px;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    user-select: none;
    transition: background 0.3s ease;
  }
  .slider-btn.prev {
    left: 10px;
  }
  .slider-btn.next {
    right: 10px;
  }
  .slider-btn:hover {
    background: rgba(0,0,0,0);
  }

  /* ÆäÀÌÁö³×ÀÌ¼Ç Á¡ */
  .pagination1 {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
  }
  .pagination1-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .pagination1-dot.active {
    background: rgba(255,255,255,1);
  }

    .right {
      display: flex;
     /* justify-content: center;
      align-items: center; */
      padding: 100px 40px 40px 40px;
    }

    .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
    }

    .logo img {
      width: 300px;
      height: auto;
      display: block;
      margin: 0 auto;
      margin-bottom: 40px;
      opacity: 0;
      animation: slideUp 0s ease-out forwards;
      animation-delay: 0s;
    }

    .text-bold {
      font-size: 30px;
      color: #111;
      font-weight: 700;
      margin-bottom: 20px;
      opacity: 0;
      animation: slideUp 0s ease-out forwards;
      animation-delay: 0s;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .text-small {
      font-size: 18px;
      color: #111;
      opacity: 0;
      animation: slideUp 0s ease-out forwards;
      animation-delay: 0 s;
      font-family:'NanumSquareNeo', sans-serif;
    }


    .btn2 {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 24px;
      background-color: #4cbed3;
      border: 2px solid #4cbed3;
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      border-radius: 35px;
      transition: all 0.3s ease;	  
      text-shadow: none; 
	  font-family:'NanumSquareNeoBold', sans-serif;
      opacity: 0;
      animation: slideUp 0s ease-out forwards;
      animation-delay: 0s;
    }

    .btn2:hover {
      background-color: #fff;
      color: #333;
	  text-decoration: none;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    @media (max-width: 1600px) {
     .logo img {
        width: 150px; /* ¿øÇÏ´Â Å©±â·Î Á¶Àý °¡´É */
      }
  
    .right {
      padding: 0px 40px 40px 40px;
    }

      .text-bold {
        font-size: 18px;
        margin-bottom: 12px;
      }

      .text-small {
        font-size: 14px;
      }
    }



    /* ¸ð¹ÙÀÏ ¹ÝÀÀÇü */
    @media (max-width: 1200px) {
      .wrapper10 {
        flex-direction: column;
      }

      .left, .right {
        width: 100%;
      }

      .image-slider {
        width: 100%;
        aspect-ratio: 1 / 1;
      }

      .right {
        display: flex;
        justify-content: flex-start;   /* ¼öÁ÷ »ó´Ü Á¤·Ä */
        align-items: center;
        padding: 10px 16px;
        height: auto !important;       /* ³ôÀÌ °­Á¦ ÇØÁ¦ */
      }

      .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        width: 100%;
      }

    .slider {
      width: 100%;
      aspect-ratio: 1 / 0.8;
      margin-bottom: 10px;
      order: 0;
    }

     .logo img {
        width: 150px; /* ¿øÇÏ´Â Å©±â·Î Á¶Àý °¡´É */
      }

      .text-bold {
        font-size: 17px;
        margin-bottom: 12px;
      }

      .text-small {
        font-size: 14px;
      }

      .btn2 {
        font-size: 16px;
        padding: 10px 24px;
      }

	.slider-btn {
    font-size: 25px;
  }
    }


/* ¸ÞÀÎÁß°£ RESERVATION */

    .wrapper3 {
      width: 100%;
      background-image: url('../images/mbg.jpg'); /* ¹è°æ ÀÌ¹ÌÁö °æ·Î */
      background-size: cover;
      background-position: center;
      background-attachment: fixed; /* °íÁ¤ ¹è°æ */
      position: relative;
      color: #fff;
      padding: 80px 20px;
    }

    .wrapper3::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.5); /* ¾îµÎ¿î ¿À¹ö·¹ÀÌ */
      z-index: 1;
    }

    .container3 {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .small-text {
      font-size: 17px;
      color: #fff;
      margin-bottom: 10px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .big-phone {
      font-size: 80px;
      font-weight: bold;
      color: #4cbed3;
      margin-bottom: 15px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .mid-text {
      font-size: 25px;
      color: #fff;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

.quote-btn1 {
  display: inline-block;
  background-color: #4cbed3;
  color: #fff;
  border: 2px solid #4cbed3;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto;
  font-weight:bold;
  font-family:'NanumSquareNeoBold', sans-serif;
  align-self: flex-start; /* ¹öÆ° ³Êºñ °íÁ¤ ¹× ¿ÞÂÊ Á¤·Ä */
}

    .quote-btn1:hover {
      background-color: #fff;
      color: #111;
      text-decoration:none;
    }

    @media (max-width: 768px) {
      .big-phone {
        font-size: 40px;
      }

      .mid-text {
        font-size: 18px;
      }

      .small-text {
        font-size: 15px;
      }
    }




/* ¸ÞÀÎÇÏ´Ü 3°³ÀÌ¹ÌÁö */
    .wrapper1 {
      width: 100%;
    }

    .container1 {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
      color: #111;
      margin-bottom: 40px;
    }

    .intro {
      text-align: center;
      margin-bottom: 60px;
      color: #111;
    }

    .intro p:nth-child(1) {
      font-size: 23px;
      margin-bottom: 10px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .intro p:nth-child(2) {
      font-size: 42px;
      font-weight: bold;
      margin-bottom: 10px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .intro p:nth-child(3) {
      font-size: 18px;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .box-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .box {
      background-color: #fff;
      border-radius: 20px;
      flex: 1 1 calc(33.333% - 20px);
      min-width: 280px;
      padding: 30px;
      box-sizing: border-box;
      text-align: center;
      color: #111;
      border: 1px solid #dbdbdb;
    }

    .circle-number {
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      background-color: #4cbed3;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: 10px;
    }

    .box-title {
      font-size: 30px;
      margin: 0px 0;
      color: #111;
	  font-weight:bold;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .box-desc {
      font-size: 18px;
      color: #111;
      line-height: 1.6;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

.box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.4s ease;
}

.box img:hover {
  transform: scale(1.05);
  transform-origin: center center;
  /* ÀÌ¹ÌÁö Å×µÎ¸®¸¦ ³Ñ¾î°¡Áö ¾Êµµ·Ï ºÎ¸ð°¡ overflow: hiddenÀÌ¾î¾ß ÇÔ */
}

.img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.quote-btn1 {
  display: inline-block;
  background-color: #4cbed3;
  color: #fff;
  border: 2px solid #4cbed3;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto;
  font-weight:bold;
  font-family:'NanumSquareNeoBold', sans-serif;
  align-self: flex-start; /* ¹öÆ° ³Êºñ °íÁ¤ ¹× ¿ÞÂÊ Á¤·Ä */
}

    .quote-btn1:hover {
      background-color: #fff;
      color: #111;
      text-decoration:none;
    }


    @media (max-width: 1024px) {
      .box-container {
        flex-direction: column;
        gap: 20px;
      }

    .box-title {
      font-size: 25px;
    }
    }



     /* ÇÏ´Ü ¶õ½ºÅ×ÀÌ °¶·¯¸® */	
    .wrapper6 {
      width: 100%;
      background-color: #f2f2f2;
      padding: 20px 20px;
      text-align: center;
    }

    .titles {
      color: #111;
      font-size: 32px;
	  font-weight: bold;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .titles-desc {
      font-size: 18px;
      color: #111;
      line-height: 1.6;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .container6 {
      max-width: 1400px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 20px;
      padding: 40px 40px;
	  text-align: left;	  
      border: 1px solid #dbdbdb;
    }

    /* ¹ÝÀÀÇü */
    @media (max-width: 768px) {
      .titles {
        font-size: 25px;
      }

      .container6 {
        padding: 20px 15px;
        border-radius: 12px;
      }
    }
