/**
 * About Hours & Directions Page Styles
 * 찾아오시는 길 페이지 스타일시트
 */

/* ===== Directions 섹션 ===== */
.directions-section {
    padding: 80px 0;
    background: #fff;
}

.directions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

/* ===== Location Images ===== */
.location-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.location-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== Building Info ===== */
.building-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.building-image img {
    width: 100%;
    border-radius: 8px;
}

.building-text {
    text-align: center;
}

.building-text p {
    font-size: 24px;
    line-height: 1.6;
    color: #2b2b2b;
    font-weight: 600;
}

/* ===== Map Buttons ===== */
.map-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.map-btn {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.naver-btn:hover {
    background: #02b350;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.3);
}

.kakao-btn {
    background: #FEE500;
    color: #000;
}

.kakao-btn:hover {
    background: #fdd800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.3);
}

/* ===== Transportation Info ===== */
.transportation-info {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

.transport-item {
    margin-bottom: 30px;
}

.transport-item:last-child {
    margin-bottom: 0;
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.transport-icon {
    width: 48px;
    height: 48px;
    background: #a0a3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.transport-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2b2b2b;
    margin: 0;
}

.transport-content {
    padding-left: 63px;
}

.transport-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.transport-content p:last-child {
    margin-bottom: 0;
}

.transport-label {
    font-weight: 700;
    color: #2b2b2b;
}

/* ===== 반응형 디자인 ===== */

/* Tablet */
@media (max-width: 992px) {
    .directions-section {
        padding: 60px 0;
    }

    .location-images,
    .building-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .building-text p {
        font-size: 20px;
    }

    .transport-content {
        padding-left: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .directions-section {
        padding: 40px 0;
    }

    .location-images {
        gap: 15px;
    }

    .building-info {
        gap: 20px;
    }

    .building-text p {
        font-size: 18px;
    }

    .map-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-btn {
        padding: 16px;
        font-size: 16px;
    }

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

    .transport-header {
        gap: 12px;
    }

    .transport-icon {
        width: 40px;
        height: 40px;
    }

    .transport-icon svg {
        width: 24px;
        height: 24px;
    }

    .transport-header h3 {
        font-size: 16px;
    }

    .transport-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* Extracted from inline <style> tags */


.directions-section {
    padding: 80px 0;
    background: #fff;
}

.directions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

/* Location Images */
.location-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.location-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Building Info */
.building-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.building-image img {
    width: 100%;
    border-radius: 8px;
}

.building-text {
    text-align: center;
}

.building-text p {
    font-size: 24px;
    line-height: 1.6;
    color: #2b2b2b;
    font-weight: 600;
}

/* Map Buttons */
.map-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.map-btn {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.naver-btn:hover {
    background: #02b350;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.3);
}

.kakao-btn {
    background: #FEE500;
    color: #000;
}

.kakao-btn:hover {
    background: #fdd800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.3);
}

/* Transportation Info */
.transportation-info {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

.transport-item {
    margin-bottom: 30px;
}

.transport-item:last-child {
    margin-bottom: 0;
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.transport-icon {
    width: 48px;
    height: 48px;
    background: #2b2b2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.transport-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2b2b2b;
    margin: 0;
}

.transport-content {
    padding-left: 63px;
}

.transport-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.transport-content p:last-child {
    margin-bottom: 0;
}

.transport-label {
    font-weight: 700;
    color: #2b2b2b;
}

/* Tablet */
@media (max-width: 992px) {
    .directions-section {
        padding: 60px 0;
    }

    .location-images,
    .building-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .building-text p {
        font-size: 20px;
    }

    .transport-content {
        padding-left: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .directions-section {
        padding: 40px 0;
    }

    .location-images {
        gap: 15px;
    }

    .building-info {
        gap: 20px;
    }

    .building-text p {
        font-size: 18px;
    }

    .map-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-btn {
        padding: 16px;
        font-size: 16px;
    }

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

    .transport-header {
        gap: 12px;
    }

    .transport-icon {
        width: 40px;
        height: 40px;
    }

    .transport-icon svg {
        width: 24px;
        height: 24px;
    }

    .transport-header h3 {
        font-size: 16px;
    }

    .transport-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}
