/* 여기에 작업 또는 수정할 당신의 css style을 설정하세요. (customizations) */

/* 회사소개 */

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Noto Sans KR", sans-serif;
      color: #333;
      line-height: 1.8;
      background-color: #fff;
    }

    .hanwoo-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .hanwoo-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .hanwoo-title-text {
      font-size: 32px;
      font-weight: bold;
      color: #1d3e78;
      margin-bottom: 10px;
    }

    .hanwoo-header p {
      font-size: 16px;
      color: #666;
    }

    .hanwoo-banner-wrapper {
      position: relative;
      margin-bottom: 120px; /* 오버레이 공간 + 여백 */
    }

    .hanwoo-banner {
      width: 100%;
      height: 400px;
      background: url("/page/img/intro.webp") center center / cover no-repeat;
      border-radius: 8px;
      position: relative;
      z-index: 1;
    }

    .hanwoo-overlay-box {
      position: absolute;
      right: 40px;
      bottom: -50px; /* 바깥으로 튀어나오게 */
      background: linear-gradient(to right, #0054a6, #0073cf);
      color: #fff;
      padding: 25px 30px;
      width: 380px;
      border-radius: 8px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
      z-index: 2;
    }

    .hanwoo-overlay-box span {
      font-size: 13px;
      display: block;
      margin-bottom: 8px;
      letter-spacing: 1px;
      opacity: 0.8;
    }

    .hanwoo-message {
      margin-top: 80px; /* 배너와 확실히 분리 */
      font-size: 17px;
    }

    .hanwoo-message h2 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hanwoo-message p {
      margin-bottom: 14px;
    }

    .hanwoo-sign {
      margin-top: 30px;
      text-align: right;
      font-size: 14px;
    }

    .hanwoo-sign strong {
      font-size: 16px;
      display: block;
      margin-top: 5px;
      color: #000;
    }

    @media (max-width: 768px) {
      .hanwoo-title-text {
        font-size: 26px;
      }

      .hanwoo-header p {
        font-size: 15px;
      }

      .hanwoo-banner {
        height: auto;
        min-height: 280px;
      }

      .hanwoo-overlay-box {
        position: static;
        width: 100%;
        margin-top: 20px;
      }

      .hanwoo-banner-wrapper {
        margin-bottom: 40px;
      }

      .hanwoo-message {
        margin-top: 20px;
      }
    }

	/* 소개끝 */



	/* 식당 */

     * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Noto Sans KR', sans-serif;
      background: #fff;
      color: #333;
      line-height: 1.6;
    }

    .hanwoo-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .hanwoo-title-box {
      text-align: center;
      margin-bottom: 40px;
    }

    .hanwoo-title-box h2 {
      font-size: 32px;
      color: #1d3e78;
      margin-bottom: 10px;
    }

    .hanwoo-title-box p {
      font-size: 15px;
      color: #999;
    }

    .hanwoo-main-image {
      position: relative;
      margin-bottom: 60px;
    }

    .hanwoo-main-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .hanwoo-main-text {
      position: absolute;
      left: 40px;
      bottom: 40px;
      background: rgba(255,255,255,0.95);
      padding: 25px 30px;
      border-left: 6px solid #1d3e78;
      max-width: 500px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .hanwoo-main-text h3 {
      font-size: 22px;
      color: #1d3e78;
      margin-bottom: 10px;
    }

    .hanwoo-main-text p {
      font-size: 16px;
      color: #555;
    }

    .hanwoo-section {
      display: flex;
      gap: 40px;
      margin-bottom: 80px;
      align-items: center;
      flex-wrap: wrap;
    }

    .hanwoo-section.reverse { flex-direction: row-reverse; }

    .hanwoo-section .hanwoo-image {
      flex: 1 1 50%;
    }

    .hanwoo-section .hanwoo-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .hanwoo-section .hanwoo-text {
      flex: 1 1 50%;
      position: relative;
      padding-left: 20px;
    }

    .hanwoo-text .hanwoo-badge {
      position: absolute;
      top: -10px;
      left: 0;
      background: #1d3e78;
      color: #fff;
      padding: 5px 14px;
      border-radius: 30px;
      font-size: 14px;
    }

    .hanwoo-text h3 {
      font-size: 22px;
      margin: 30px 0 10px;
      color: #222;
    }

    .hanwoo-text ul {
      padding-left: 20px;
      font-size: 16px;
    }

    .hanwoo-text p {
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .hanwoo-section { flex-direction: column !important; }
      .hanwoo-main-text {
        position: static;
        margin-top: 20px;
        border-left: none;
        box-shadow: none;
      }
    }