/* 오시는 길 페이지 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 페이지 헤더 */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    color: #ffffff;
}

.location-header {
    position: relative;
    overflow: hidden;
}

.location-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../../img/location.jpg') center/cover no-repeat;
    z-index: 0;
}

.location-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.location-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.page-header .subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

/* 핵심 메시지 섹션 */
.core-message {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.message-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.message-box p {
    font-size: 22px;
    line-height: 1.8;
    color: #000;
    font-weight: 500;
}

/* 지도 섹션 */
.map-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333333;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 정보 섹션 */
.info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #dc143c;
    border-bottom: 3px solid #dc143c;
    padding-bottom: 15px;
}

.info-box .address {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.info-box .contact {
    font-size: 16px;
    color: #666666;
    margin-bottom: 8px;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-item strong {
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.transport-item p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.parking-note {
    font-size: 14px;
    color: #999999;
    font-style: italic;
    margin-top: 10px;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header .subtitle {
        font-size: 16px;
    }

    .core-message {
        padding: 60px 0 40px;
    }

    .message-box {
        padding: 30px 20px;
    }

    .message-box p {
        font-size: 18px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .map-container {
        height: 350px;
    }

    .info-section {
        padding: 60px 0;
    }

    .info-box {
        padding: 30px 20px;
    }

    .info-box h3 {
        font-size: 20px;
    }

    .info-box .address {
        font-size: 16px;
    }
}
