/* 상세 페이지 공통 스타일 */
.detail-header {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    position: relative;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.detail-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
}

.detail-section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
    color: #343a40;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

.kakao-icon {
    width: 20px;
    height: 20px;
}

/* 사이드바 공통 스타일 */
.sidebar .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.sidebar .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.sidebar .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: none;
    font-weight: 700;
    color: #343a40;
    padding: 15px 20px;
    font-size: 1.1rem;
}

/* 버튼 스타일 */
.card-body .btn-outline-primary, 
.card-body .btn-outline-info {
    border-radius: 8px;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.card-body .btn-outline-primary:hover, 
.card-body .btn-outline-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-body .btn-success {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-body .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* 리스트 스타일 */
.list-group-item {
    border-left: 0;
    border-right: 0;
    padding: 12px 15px;
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
} 