/* 1. wrapper1 ¼öÁ¤: background-image Á¦°Å, relative ¼³Á¤ */
.wrapper1 {
    width: 100%;
    position: relative; /* ÀÚ½Ä ¿ä¼ÒÀÇ absolute ±âÁØ */
    /* background-image ¼Ó¼º Á¦°Å */
    /* background-size, background-position ¼Ó¼º Á¦°Å */
    overflow: hidden; /* ÀÌ¹ÌÁö°¡ È®´ëµÉ ¶§ ¿µ¿ª ¹ÛÀ¸·Î ³ª°¡´Â °ÍÀ» ¼û±è */
}

/* 2. ÀÌ¹ÌÁö ¾Ö´Ï¸ÞÀÌ¼ÇÀ» À§ÇÑ ±âº» ½ºÅ¸ÀÏ ¼³Á¤ */
.background-image-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ÀÌ¹ÌÁö°¡ wrapper1À» ²Ë Ã¤¿ìµµ·Ï ¼³Á¤ (±âÁ¸ background-size: cover ¿ªÇÒ) */
    z-index: 0; /* ´Ù¸¥ ¿ä¼Òµé(overlay, banner)º¸´Ù µÚ¿¡ À§Ä¡ */
    
    /* ¾Ö´Ï¸ÞÀÌ¼Ç Àû¿ë */
    animation: zoomOut 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; 
}


/* 3. Transform ¾Ö´Ï¸ÞÀÌ¼Ç Å°ÇÁ·¹ÀÓ Á¤ÀÇ */
@keyframes zoomOut {
    0% {
        /* ½ÃÀÛ ½ÃÁ¡: 1.05¹è È®´ëµÈ »óÅÂ */
        transform: scale(1.25); 
    }
    100% {
        /* Á¾·á ½ÃÁ¡: ¿ø·¡ Å©±â (1¹è) */
        transform: scale(1); 
    }
}
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* ¾îµÎ¿î ¹ÝÅõ¸í ¿À¹ö·¹ÀÌ */
    z-index: 1;
  }

  .banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    z-index: 2;
  }

  .banner-text h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;	  
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  .banner-text p {
    font-size: 20px;
    color: white;
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  @media (max-width: 1024px) {
    .banner {
      height: 200px;
      padding: 20px;
    }

    .banner-text h1 {
      font-size: 28px;
    }

    .banner-text p {
      font-size: 15px;
    }
  }

  /* ====== ABOUT ¹Ù ¿µ¿ª ====== */
.top-bar {
  width: 100%;
  height: 80px; /* PC¿¡¼­ ³ôÀÌ 80px */
  background-color: #4a5aa5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.top-container {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  padding-left: 10px;
}

.top-content {
  display: flex;
  flex-direction: column; /* ¼¼·Î Á¤·Ä */
  align-items: flex-start; /* ÁÂÃø Á¤·Ä */
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
}

.top-line {
  width: 40px;
  height: 1px;
  background: #fff;
  margin-bottom: 5px; /* ¼±°ú ±ÛÀÚ °£°Ý */
}

.top-text {
  font-size: 30px;
  color: #fff;
  font-family: 'NanumSquareNeoBold', sans-serif;
}

  /* ====== ¾Ö´Ï¸ÞÀÌ¼Ç ====== */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ====== ¸ð¹ÙÀÏ ´ëÀÀ ====== */
  @media (max-width: 1024px) {
    .top-bar {
      height: 50px;
    }

    .top-line {
      width: 25px;
    }

    .top-text {
      font-size: 20px;
    }

    .top-content {
      transform: translateX(50px);
      animation: slideIn 1s ease forwards;
      animation-delay: 0.2s;
    }
  }




 /* about ÀÛÇ°Ã¶ÇÐ */
        
        /* Wrapper ½ºÅ¸ÀÏ */
        .wrapper4 {
            width: 100%;
            background-color: #fff;
        }
        
        /* Container ½ºÅ¸ÀÏ */
        .container4 {
            max-width: 1400px;
            margin: 0 auto;
            background-color: #fff;
            padding: 0 20px;
        }
        
        /* Çì´õ ¼½¼Ç */
        .header-section {
            position: relative;
            height: 20vh;
            min-height: 200px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                        url('../images/d1.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .slogan {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        
        /* ¼½¼Ç °øÅë ½ºÅ¸ÀÏ */
        .section {
            padding: 30px 0;
        }
        
        .section-title {
            font-size: 3.2rem;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #4a5aa5;
        }
        
        /* Ã¼ÀÎÅé¾ÆÆ® ¼Ò°³ ¼½¼Ç */
        .chainsaw-art-section {
            background-color: #fff;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .content-text {
            font-size: 18px;
            line-height: 1.8;
        }
        
        .content-text p {
            margin-bottom: 20px;
        }
        
        .content-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        }
        
        .content-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .content-image:hover img {
            transform: scale(1.03);
        }
        
        /* ÀÓ¸ñÆó±â¹° ¼½¼Ç */
        .wood-section {
            background-color: #fff;
        }
        
        .wood-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .wood-image {
            order: 1;
        }
        
        .wood-text {
            order: 2;
        }
        
        /* ¹ÝÀÀÇü ½ºÅ¸ÀÏ */
        @media (max-width: 1200px) {
            .container4 {
                padding: 0 15px;
            }
            
            .slogan {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .content-grid,
            .wood-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .content-text {
                font-size: 16px;
            }
        }
        
@media (max-width: 768px) {
 
    .slogan {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .content-text {
        font-size: 14px;
    }
}