@charset "utf-8";

/* =========================================
   기본 설정 (blessdmoon.css 참조)
   ========================================= */
body {
    background-color: #000;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.web-detail {
    max-width: 1700px;
    margin: 0 auto;
    background-color: #fff; /* 콘텐츠 영역 흰색 */
}

/* =========================================
   1. TOP AREA (상단 배너)
   ========================================= */
.top {
    position: relative;
    width: 100%;
    /* 이미지 비율에 따라 높이 유동적 변경 가능, 기본 viewport 기준 */
    height: 100vh; 
    max-height: 950px;
    background-color: #f4f4f4;
}

.top .detail-button {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 100;
}

.top .detail-button a {
    display: block;
}

.top .detail-button img.top-btn {
    transition: all 0.5s;
    width: 50px; /* 버튼 크기 명시 */
}

.top .detail-button a:hover img.top-btn {
    transform: rotate(180deg);
}

.top .top-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지가 찌그러지지 않게 */
}

/* =========================================
   2. BAR AREA (다운로드 바)
   ========================================= */
.bar {
    width: 100%;
    height: 60px;
    background-color: #111; /* 기존 핑크에서 블랙으로 변경 */
    font-size: 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px; /* 좌우 여백 추가 */
    box-sizing: border-box;
}

.bar img {
    transition: all 0.5s;
    width: 20px;
}

.bar a {
    padding: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bar a span {
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
    font-weight: 600;
}

.bar a:hover img.arrow {
    transform: translateX(10px);
}

.bar a:hover img.bar-close {
    transform: rotate(180deg);
}

/* =========================================
   3. OVERVIEW (프로젝트 정보)
   ========================================= */
.overview {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px 20px;
    box-sizing: border-box;
}

.overview h2 {
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
}

/* 3단 정보 리스트 */
.overview ul {
    display: flex;
    justify-content: center;
    gap: 80px; /* 간격 벌리기 */
    text-align: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto 80px;
    border-top: 2px solid #111;
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}

.overview ul li {
    font-size: 18px;
    font-weight: 700;
    color: #888; /* 라벨 색상 연하게 */
    width: 30%;
}

.overview ul li .tit {
    display: block;
    margin-bottom: 10px;
}

.overview ul li .desc {
    font-size: 22px;
    color: #111; /* 내용 진하게 */
    font-weight: 800;
    margin-bottom: 5px;
}

.overview ul li .percent {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #0000f6; /* 포인트 컬러 파랑 */
    padding: 2px 8px;
    border-radius: 10px;
}

/* 목업 이미지 영역 */
.overview-img {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.overview-img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* =========================================
   4. PDF SECTION (기존 UI-UX 부분 대체)
   ========================================= */
.pdf-section {
    background-color: #f7f8fa; /* 연한 회색 배경 */
    padding: 100px 20px;
    box-sizing: border-box;
}

.pdf-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.pdf-section h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    color: #111;
}

/* 개별 PDF 그룹 스타일 (기존 .list 스타일 응용) */
.pdf-group {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pdf-group:last-child {
    margin-bottom: 0;
}

/* 소제목 스타일 */
.pdf-tit-box {
    margin-bottom: 30px;
    border-left: 5px solid #0000f6; /* 포인트 라인 */
    padding-left: 20px;
    text-align: left;
}

.pdf-tit-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.pdf-tit-box .en {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* 뷰어 박스 */
.pdf-view-box {
    width: 100%;
    height: 900px; /* PC 기준 높이 */
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.pdf-frame {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

