/* 가이드 페이지 스타일 */

/* 헤더 */
.guide-header {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.guide-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.guide-header-content {
    position: relative;
    z-index: 1;
}

.guide-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-header p.lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 가이드 콘텐츠 */
.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box h4 {
    color: #0d6efd;
    margin-bottom: 10px;
}

/* 특징 카드 */
.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 10px;
}

/* 사이드바 */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* 팁 카드 */
.tip-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tip-card-header {
    background-color: #0d6efd;
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

.tip-card-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.tip-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.tip-card-body {
    padding: 1.5rem;
}

.tip-card-body ul {
    padding-left: 1.5rem;
}

.tip-card-body ul li {
    margin-bottom: 8px;
}

/* 갤러리 */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* 추천 명소 카드 */
.recommendation-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
}

.recommendation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recommendation-content {
    padding: 1.25rem;
}

.recommendation-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.recommendation-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.recommendation-time {
    color: #0d6efd;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.recommendation-time i {
    margin-right: 5px;
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .guide-header h1 {
        font-size: 2.5rem;
    }
    
    .guide-header p.lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .guide-header {
        padding: 80px 0;
    }
    
    .guide-header h1 {
        font-size: 2rem;
    }
    
    .guide-header p.lead {
        font-size: 1.1rem;
    }
    
    .sidebar {
        position: static;
        margin-top: 2rem;
    }
}
