/*
 Theme Name:   RealHumanBean App Landing Page
 Theme URI:    https://realhumanbean.co.kr
 Description:  GeneratePress Child Theme for App Landing Pages (최적화)
 Author:       Ruairi Lee (realhumanbean)
 Author URI:   https://realhumanbean.co.kr
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         generatepress, app, landing-page, korean
 Text Domain:  realhumanbean-child
*/

/* ----------------------------
   RealHumanBean Custom Styles
   (여기에 사이트 전역 기본 CSS를 추가)
----------------------------- */

/* 기본 폰트 */
body {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
  background-color: #fff;
}

/* 헤더 텍스트 */
h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Hero Section (메인 첫 화면 섹션) */
.hero-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fafafa, #ffffff);
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.8;
}

/* 버튼 스타일 */
.button,
a.button,
.wp-block-button__link {
  background-color: #111;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.button:hover,
a.button:hover,
.wp-block-button__link:hover {
  background-color: #333;
}

/* 반응형 */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 15px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

