/*
index.html 스타일
 */

.header-index {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 20;
    font-size: 24px;
    font-weight: 500;
}

.header-index-inner {
    width: 100%;
    height: 100%;
    max-width: 1280px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* 히어로 배너 */
.hero-section {
    position: relative;
    height: 100vh;

    /* 화면이 너무 작아졌을 때를 대비한 최소 높이 */
    min-height: 600px;

    background: #111827;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    height: 100%;
    box-sizing: border-box;
    padding: 200px 0;
}
/* css/main.css */

/* ... 기존 hero-section, hero-title 등은 유지 ... */

/* [수정] 박스 자체가 버튼이 되도록 스타일 변경 */
.hero-box {
    margin-top: 10%;

    /* 유리(Glass) 효과 유지 */
    /*background: rgba(255, 255, 255, 0.15); !* 배경을 약간 더 밝게 *!*/
    backdrop-filter: blur(10px);
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
    background: rgba(234, 88, 12, 0.85); /* 오렌지색으로 변함 */
    border-color: rgba(234, 88, 12, 1);
    /* 버튼 크기 및 모양 */
    display: inline-flex;       /* 내용물에 맞게(inline) + 중앙정렬(flex) */
    align-items: center;
    justify-content: center;
    padding: 30px 70px;       /* 버튼을 큼직하게 만듦 */
    border-radius: 9999px;      /* 둥근 알약 모양 */

    /* 텍스트 스타일 */
    color: white;
    font-size: 32px;          /* 글자 크기 */
    font-weight: 600;
    text-decoration: none;      /* 밑줄 제거 */

    /* 동작 설정 */
    cursor: pointer;
    transition: all 0.3s ease;  /* 부드러운 애니메이션 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* [추가] 마우스 올렸을 때 효과 */
.hero-box:hover {
    background: rgba(234, 88, 12, 0.85); /* 오렌지색으로 변함 */
    border-color: rgba(234, 88, 12, 1);
    transform: translateY(-5px) scale(1.05); /* 살짝 떠오르고 커짐 */
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.4); /* 그림자 강화 */
}

/* [추가] 클릭했을 때 효과 */
.hero-box:active {
    transform: translateY(0) scale(0.98); /* 눌리는 느낌 */
}
.hero-title {
    margin: 0;
    font-size: 80px;
    font-weight: 800;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    word-break: break-word;
}

/* 섹션 타이틀 */
.section-title {
    font-size: 5rem;
    font-weight: 700;
    border-left: 5px solid #1f2937;
    padding-left: 1rem;
    margin-bottom: 2.5rem;
}


/* tablet */
@media (max-width: 768px) {
    .header-index { height: 64px; font-size: 18px; font-weight: 500; }
    .header-index-inner { padding: 0 40px; }

    .section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }

    .hero-content { padding: 20% 0; }
    .hero-section { height: 100vh; min-height: 480px; }
    .hero-title {font-size: 54px;font-weight: 800;}
    .hero-subtitle {font-size: 20px;font-weight: 400;line-height: 1.6;}
    .hero-box {padding: 1.2rem 3rem; font-size: 32px;}
}
/* mobile */
@media (max-width: 480px) {
    .header-index { height: 56px; font-size: 12px; }
    .header-index-inner { padding: 0 10px; }

    .section-title { font-size: 1.875rem; border-left-width: 4px; }

    .hero-title {font-size: 1.9rem;}
    .hero-content { padding: 250px 10px 0 10px; }
    .hero-section { height: 100vh; min-height: 480px; }
    .hero-title {font-size: 28px; font-weight: 800;}
    .hero-subtitle {font-size: 14px; font-weight: 400; line-height: 1.5; margin-top: 20px}
    .hero-box { padding: 15px 20px; font-weight: 700; font-size: 26px; margin-top: 50px }
}