@layer reset, base, components, utilities;

/* @layer reset {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, sans-serif;
    line-height: 1.6;
    color: #161b23;
    background-color: #ffffff;
  }

  iframe {
    border: none;
  }
} */

@layer components {
  .bbs_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 430px;
    background-image: url('https://media.eoding.com/media/travelagent/1136/imagecontent/sub_bg_22.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    @media (max-width: 768px) {
      height: 360px;
    }

    /* 배경 오버레이 */
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }
  }

  .bbs_wrap_area {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  /* 내용 섹션 */
  .content_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #ffffff;

    @media (max-width: 768px) {
      padding: 40px 15px;
    }
  }

  .content_area {
    width: 100%;
    max-width: 800px;
    text-align: center;
  }

  .bbs_wrap_title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;

    @media (max-width: 768px) {
      font-size: 36px;
    }
  }

  .sub_page_title_big {
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(205, 164, 97);
    padding: 16px 32px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.4;

    @media (max-width: 768px) {
      font-size: 20px;
      padding: 14px 24px;
      line-height: 1.5;
    }
  }

  .setting_bg_color_blue {
    background-color: rgb(205, 164, 97) !important;
  }

  .space10 {
    height: 16px;
  }

  .space100 {
    height: 100px;
  }

  /* 모바일에서 줄바꿈 */
  .mobile-break {
    @media (max-width: 768px) {
      display: block;
    }
  }

  .sub_page_title_small {
    font-size: 20px;
    font-weight: 500;
    color: #444b55;
    line-height: 1.6;
    margin-bottom: 40px;

    @media (max-width: 768px) {
      font-size: 18px;
      margin-bottom: 30px;
      line-height: 1.7;
    }
  }

  /* 지도 컨테이너 */
  /* body {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
  } */

  .map_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  iframe {
    width: 90%;
    max-width: 1100px;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;

    @media (max-width: 768px) {
      width: 95%;
      height: 350px;
      margin-bottom: 30px;
    }
  }
}

@layer utilities {
  .text-center {
    text-align: center;
  }

  .mb-4 {
    margin-bottom: 1rem;
  }

  .mb-6 {
    margin-bottom: 1.5rem;
  }
}
