/* 오시는길 페이지 스타일 - 모바일 중심 디자인 */

/* 상단 여백 보장 - 고정 헤더 대응 */
.main-content {
    padding-top: 0; /* 헤더 아래 여백 제거 */
}

/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* 지도 섹션 */
.map-section {
    padding: 100px 0;
    background: url('../images/location/location-bg.jpg') center center/cover no-repeat;
    color: white;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wealth-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.map-header p {
    font-size: 1.2rem;
    color: var(--white-text);
    font-weight: 500;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.map-wrapper iframe {
    display: block;
    border: none;
}

.map-placeholder {
    background: transparent;
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    color: var(--white-text);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 30px;
    border: 1px solid rgba(255,215,0,0.3);
    backdrop-filter: blur(10px);
}

.map-icon {
    margin-bottom: 20px;
}

.map-icon i {
    font-size: 4rem;
    color: var(--bright-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.map-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-actions .btn {
    padding: 36px 60px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.map-actions .btn-map {
    background: transparent !important;
    color: white !important;
    border: 1px solid rgba(255,215,0,0.4) !important;
    font-weight: bold;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.btn-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.5);
    background: transparent !important;
    border-color: rgba(255,215,0,0.6) !important;
}

.btn-direction {
    background: transparent;
    color: var(--wealth-gold);
    border: 2px solid var(--wealth-gold);
}

.btn-direction:hover {
    background: var(--wealth-gold);
    color: var(--navy-bg);
    transform: translateY(-2px);
}

.map-actions-secondary {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-direction-secondary {
    padding: 24px 45px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
    background: transparent;
    color: var(--wealth-gold);
    border: 1px solid rgba(255,215,0,0.3);
    cursor: pointer;
    font-family: inherit;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.btn-direction-secondary:hover {
    background: transparent;
    color: var(--wealth-gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    border-color: rgba(255,215,0,0.5);
}

/* 정보 블록 섹션 */
.info-section {
    padding: 40px 0;
    background: white;
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.info-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--wealth-gold);
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: var(--bright-gold);
}

.block-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--wealth-gold);
}

.block-header i {
    font-size: 1.8rem;
    color: var(--bright-gold);
    margin-right: 12px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.block-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wealth-gold);
    margin: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--wealth-gold);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 600;
    color: var(--bright-gold);
    font-size: 0.9rem;
    min-width: 80px;
}

.info-item .value {
    color: var(--white-text);
    font-weight: 500;
    text-align: right;
    flex: 1;
    margin-left: 15px;
}





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

/* 반응형 디자인 - 모바일 중심 */
@media (max-width: 768px) {
    .main-content {
        padding-top: 0; /* 헤더 아래 여백 제거 */
    }
    
    .page-header {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .map-section {
        padding: 80px 0;
        padding-top: 140px !important; /* 헤더 높이(60px) + 추가 여백(80px) */
    }
    
    .map-header h1 {
        font-size: 1.8rem;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
    
    .map-icon i {
        font-size: 3rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn {
        min-width: 220px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .map-actions-secondary {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-direction-secondary {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .block-header h3 {
        font-size: 1.3rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-item .label {
        min-width: auto;
    }
    
    .info-item .value {
        text-align: left;
        margin-left: 0;
    }
    

}

@media (max-width: 480px) {
    .main-content {
        padding-top: 0; /* 헤더 아래 여백 제거 */
    }
    
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-header h1 {
        font-size: 1.6rem;
    }
    
    .map-placeholder {
        padding: 30px 15px;
    }
    
    .map-icon i {
        font-size: 2.5rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
    }
    
    .info-section {
        padding: 30px 0;
    }
    
    .info-block {
        padding: 18px;
    }
    
    .block-header h3 {
        font-size: 1.2rem;
    }
    

} 