/* 기본 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Malgun Gothic', sans-serif;
}

body {
    background-color: #f7f9fa; /* 차분한 배경색 */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 헤더 타이틀 */
header h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #4a5568; 
}

/* 메인 컨테이너 박스 */
main {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

/* 네비게이션 바 (따뜻한 파스텔 블루) */
.nav-bar {
    background-color: #a0c4df; 
    border-radius: 8px;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.menu-item {
    color: white;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.menu-item.active {
    background-color: #fff4e0; /* 따뜻한 상아색 */
    color: #4a5568;
    font-weight: bold;
}

.menu-item:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 💡 메인 비주얼 배너 (요청하신 크레파스 그림풍 일러스트 반영) */
.main-banner {
    margin-top: 15px;
    height: 320px;
    background-image: url('https://media.craiyon.com/2025-08-25/8PqqIOAcQpi1wZ-7Dd0OBQ.webp');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.banner-box {
    position: absolute;
    bottom: 20px; /* 일러스트 시야를 가리지 않도록 하단 배치 */
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* 부드러운 반투명 흰색 상자 */
    color: #4a5568;
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.banner-box h2 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #a0c4df; /* 파스텔 블루 포인트 */
}

.banner-box p {
    font-size: 12px;
    line-height: 1.5;
}

/* 공통 게시판 상자 스타일 */
.board-box {
    flex: 1;
    background-color: #fafbfc;
    border: 1px solid #eef2f5;
    border-radius: 10px;
    padding: 15px;
}

.board-box h3 {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    border-bottom: 2px solid #ffcca3; /* 파스텔 오렌지색 밑줄 */
    padding-bottom: 3px;
    display: inline-block;
}

.board-box ul {
    list-style: none;
}

.board-box ul li {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.board-box ul li:hover {
    color: #a0c4df;
    text-decoration: underline;
}

/* 상단 3열 레이아웃 정렬 */
.card-section {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* 하단 2열 레이아웃 정렬 */
.board-section {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
