/* 찾아오시는 길 페이지 스타일 */

/* 공통 타이틀 스타일 */
.location-title {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.location-title .point-color {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}

.location-title h3 {
    font-size: 32px;
    line-height: 1.4;
}

/* 위치 정보 섹션 */
.location-info {
    margin-bottom: 100px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.location-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.info-row {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-row:nth-child(1) { animation-delay: 0.1s; }
.info-row:nth-child(2) { animation-delay: 0.2s; }
.info-row:nth-child(3) { animation-delay: 0.3s; }
.info-row:nth-child(4) { animation-delay: 0.4s; }

.info-label {
    flex: 0 0 100px;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'NanumSquareEB';
    color: var(--point-color, #e53e3e);
}

.info-content {
    flex: 1;
    font-size: 1.1rem;
}

/* 지도 섹션 */
.location-map {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* 페이드인 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 */
@media (max-width: 768px) {
    .page-container-wrapper {
        flex-direction: column;
    }

    .location-title .point-color {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .location-title h3 {
        font-size: 26px;
        font-family: 'NanumSquareB';
    }
    
    .info-row {
        flex-direction: row;
    }
    
    .info-label {
        margin-bottom: 5px;
    }

    .info-content {
        font-size: 1rem;
    }
}

/* 지도 버튼 스타일 */
.map-buttons {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-bottom: 20px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-button i {
    margin-right: 8px;
    font-size: 18px;
}

.kakao-map-btn {
    background-color: #FEE500;
    color: #3C1E1E;
}

.kakao-map-btn:hover {
    background-color: #F6DD00;
}

.naver-map-btn {
    background-color: #03C75A;
    color: white;
}

.naver-map-btn:hover {
    background-color: #02B550;
}

/* 모바일 반응형 */
@media (max-width: 576px) {
    .map-buttons {
        flex-direction: column;
        gap: 10px;
    }
}