/*
- 파일명: vendors.css
- 위치: /assets/css/vendors.css
- 기능: 업체별 안내 페이지 스타일시트
- 작성일: 2025-03-17
*/

/* 공통 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* 경로 네비게이션 */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
}

/* 업체 헤더 */
.vendor-header {
    text-align: center;
    padding: 2rem 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* 업체 이미지 */
.vendor-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 상세 정보 섹션 */
.details-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.details-section h2 {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item i {
    width: 25px;
    color: #0d6efd;
}

/* CTA 버튼 */
.cta-button {
    text-align: center;
    padding: 2rem 0;
}

.btn-register {
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 관련 페어 섹션 */
.related-fairs {
    background-color: #f0f4f8;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.related-fairs h3 {
    margin-bottom: 1rem;
    color: #495057;
}

.related-fairs ul {
    padding-left: 1.5rem;
}

.related-fairs li {
    margin-bottom: 0.5rem;
}


/* ===================================
 * 웨딩 정보 섹션 스타일
 * ===================================
 */
/* 웨딩 정보 컨테이너 */
.wedding-info {
    background-color: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* 웨딩 정보 제목 */
.wedding-info h3 {
    color: #3a5eca;
    font-size: 1.4rem;
    border-bottom: 2px solid #e1e7ff;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* 웨딩 정보 아이템 */
.wedding-content-item {
    background-color: white;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #4e73df;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

.wedding-content-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* 웨딩 정보 아이템 제목 */
.wedding-content-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.wedding-content-item h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #4e73df;
    border-radius: 50%;
}

/* 웨딩 정보 아이템 내용 */
.wedding-content-item .content {
    color: #596576;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 첫 번째, 두 번째, 세 번째 아이템에 각각 다른 색상 적용 */
.wedding-content-item:nth-child(1) {
    border-left-color: #4e73df; /* 파란색 */
}

.wedding-content-item:nth-child(2) {
    border-left-color: #e74a3b; /* 빨간색 */
}

.wedding-content-item:nth-child(3) {
    border-left-color: #1cc88a; /* 초록색 */
}

.wedding-content-item:nth-child(1) h4:before {
    background-color: #4e73df;
}

.wedding-content-item:nth-child(2) h4:before {
    background-color: #e74a3b;
}

.wedding-content-item:nth-child(3) h4:before {
    background-color: #1cc88a;
}

/* 모바일 반응형 조정 */
@media (max-width: 768px) {
    .wedding-info {
        padding: 15px;
    }
    
    .wedding-content-item {
        padding: 15px;
    }
    
    .wedding-content-item h4 {
        font-size: 1rem;
    }
}




/* 푸터 */
footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 4rem;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
}

footer a:hover {
    color: #0d6efd;
}