@charset "utf-8";

/* ========================== 오시는 길 페이지 ========================== */
.location_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 페이지 헤더 */
.location_header {
    text-align: center;
    padding: 60px 20px;
}

.location_header .header_badge {
    display: inline-block;
    padding: 10px 24px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.location_header .header_title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.location_header .header_desc {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* 지도 섹션 */
.map_section {
    margin-bottom: 50px;
}

.map_container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map_embed {
    width: 100%;
    height: 450px;
    background: #f5f5f5;
    position: relative;
}

.map_placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #888;
}

.map_placeholder i,
.map_placeholder svg {
    width: 48px;
    height: 48px;
    color: #ccc;
    stroke: #ccc;
    margin-bottom: 15px;
}

.map_placeholder p {
    font-size: 14px;
}

/* 정보 섹션 */
.info_section {
    margin-bottom: 60px;
}

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

.info_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info_card_icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f9b8e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info_card_icon i,
.info_card_icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
    stroke: #fff;
}

.info_card_content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

/* 주소 카드 */
.address_main {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.address_detail {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.copy_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy_btn:hover {
    background: #0f9b8e;
    color: #fff;
}

.copy_btn i,
.copy_btn svg {
    width: 16px;
    height: 16px;
}

.copy_btn:hover i,
.copy_btn:hover svg {
    color: #fff;
    stroke: #fff;
}

/* 연락처 카드 */
.contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact_label {
    font-size: 13px;
    color: #999;
    min-width: 60px;
}

.contact_value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_value:hover {
    color: #0f9b8e;
}

/* 운영시간 카드 */
.hours_item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours_item:last-of-type {
    border-bottom: none;
}

.hours_label {
    font-size: 14px;
    color: #666;
}

.hours_value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.hours_notice {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

/* 교통편 섹션 */
.transport_section {
    margin-bottom: 60px;
}

.section_title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.section_title i,
.section_title svg {
    width: 24px;
    height: 24px;
    color: #0f9b8e;
    stroke: #0f9b8e;
}

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

.transport_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.transport_icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.transport_icon.subway {
    background: #e8f5e9;
}

.transport_icon.subway svg {
    width: 26px;
    height: 26px;
    color: #2e7d32;
    stroke: #2e7d32;
}

.transport_icon.bus {
    background: #e3f2fd;
}

.transport_icon.bus i,
.transport_icon.bus svg {
    width: 24px;
    height: 24px;
    color: #1976d2;
    stroke: #1976d2;
}

.transport_icon.car {
    background: #fff3e0;
}

.transport_icon.car i,
.transport_icon.car svg {
    width: 24px;
    height: 24px;
    color: #f57c00;
    stroke: #f57c00;
}

.transport_content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.transport_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport_list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #555;
}

.transport_list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transport_list.simple li {
    padding-left: 15px;
    position: relative;
}

.transport_list.simple li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #0f9b8e;
    border-radius: 50%;
}

/* 지하철 노선 */
.line {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
}

.line.line_1 {
    background: #0052a4;
}

.line.line_2 {
    background: #00a84d;
}

.line.line_7 {
    background: #747f00;
}

.line.line_bundang {
    background: #f5a200;
}

.station {
    font-weight: 500;
    color: #333;
}

.distance {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}

/* 버스 */
.bus_type {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
}

.bus_type.blue {
    background: #0052a4;
}

.bus_type.green {
    background: #36b700;
}

.bus_numbers {
    font-weight: 500;
    color: #333;
}

.stop_name {
    font-size: 13px;
    color: #888;
    width: 100%;
}

/* CTA 섹션 */
.location_cta {
    margin-bottom: 80px;
}

.cta_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f9b8e 100%);
    border-radius: 24px;
}

.cta_text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta_text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta_btn i,
.cta_btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta_btn:hover i,
.cta_btn:hover svg {
    transform: translateX(4px);
}

/* ========================== 반응형 ========================== */
@media (max-width: 1024px) {
    .info_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transport_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta_content {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .location_header {
        padding: 40px 15px;
    }

    .location_header .header_title {
        font-size: 32px;
    }

    .location_header .header_desc {
        font-size: 15px;
    }

    .location_header .header_desc br {
        display: none;
    }

    .map_embed {
        height: 350px;
    }

    .map_container {
        border-radius: 20px;
    }

    .info_card {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .info_card_icon {
        width: 50px;
        height: 50px;
    }

    .info_card_content h3 {
        font-size: 17px;
    }

    .section_title {
        font-size: 20px;
    }

    .transport_card {
        padding: 25px;
    }

    .cta_text h3 {
        font-size: 22px;
    }

    .cta_btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .location_wrap {
        padding: 0 15px;
    }

    .location_header {
        padding: 30px 10px;
    }

    .location_header .header_badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .location_header .header_title {
        font-size: 26px;
    }

    .location_header .header_desc {
        font-size: 14px;
    }

    .map_embed {
        height: 280px;
    }

    .map_container {
        border-radius: 16px;
    }

    .info_card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .info_card_icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .info_card_icon i,
    .info_card_icon svg {
        width: 22px;
        height: 22px;
    }

    .info_card_content h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .address_main {
        font-size: 15px;
    }

    .address_detail {
        font-size: 14px;
    }

    .copy_btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .contact_value {
        font-size: 14px;
    }

    .hours_label,
    .hours_value {
        font-size: 13px;
    }

    .section_title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .section_title i,
    .section_title svg {
        width: 20px;
        height: 20px;
    }

    .transport_card {
        padding: 20px;
        border-radius: 14px;
    }

    .transport_icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .transport_content h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .transport_list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .location_cta {
        margin-bottom: 60px;
    }

    .cta_content {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .cta_text h3 {
        font-size: 20px;
    }

    .cta_text p {
        font-size: 14px;
    }

    .cta_btn {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 380px) {
    .location_header .header_title {
        font-size: 24px;
    }

    .info_card {
        padding: 20px 16px;
    }

    .transport_card {
        padding: 18px 15px;
    }

    .cta_text h3 {
        font-size: 18px;
    }
}
