/* 
- 파일명: theme2.css
- 위치: /assets/css/theme2.css
- 기능: 웨딩박람회 일정 페이지 테마 2 (리스트형 레이아웃) 스타일시트
- 작성일: 2025-03-14
*/

/* 공통 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 헤더 스타일 */
.site-header {
    background-color: #343a40;
    color: white;
    padding: 1.5rem 0;
}

.site-header h1 {
    margin-bottom: 0;
}

/* 메인 영역 스타일 */
.main-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 지역 탭 스타일 */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    background-color: transparent;
    border-bottom: 3px solid #0d6efd;
}

/* 페어 리스트 스타일 */
.fair-list {
    list-style: none;
    padding: 0;
}

.fair-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    transition: background-color 0.3s;
}

.fair-item:hover {
    background-color: #f8f9fa;
}

.fair-item:last-child {
    border-bottom: none;
}

.fair-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

.fair-date {
    color: #0d6efd;
    font-weight: 600;
}

.fair-location {
    color: #6c757d;
}

.fair-description {
    margin-top: 0.5rem;
    color: #666;
}

/* 버튼 스타일 */
.btn-timeline {
    border-radius: 30px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

/* 푸터 스타일 */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 3rem 0;
    margin-top: 4rem;
}

/* 지역 내비게이션 스타일 */
.region-nav {
    position: sticky;
    top: 20px;
    z-index: 1000;
}

/* 타임라인 헤더 스타일 */
.timeline-header {
    background-color: #0d6efd;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* 입력 폼 스타일 */
.input-group-text {
    border-right: none;
    background-color: #fff;
}

.form-control {
    border-left: none;
    padding-left: 0;
}

/* 스크롤 탑 버튼 */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
}